MCPcopy Index your code
hub / github.com/tinyplex/tinybase / RowView

Function RowView

docs/pseudo.esm.sh/tinybase@9.0.0/ui-react/index.js:1384–1412  ·  view source on GitHub ↗
({
  tableId,
  rowId,
  store,
  cellComponent: Cell = CellView,
  getCellComponentProps,
  customCellIds,
  separator,
  debugIds
})

Source from the content-addressed store, hash-verified

1382 return customCellIds ?? defaultCellIds;
1383};
1384var RowView = ({
1385 tableId,
1386 rowId,
1387 store,
1388 cellComponent: Cell = CellView,
1389 getCellComponentProps,
1390 customCellIds,
1391 separator,
1392 debugIds
1393}) => /* @__PURE__ */ jsx(Wrap, {
1394 separator,
1395 debugIds,
1396 id: rowId,
1397 children: arrayMap(
1398 useCustomOrDefaultCellIds(customCellIds, tableId, rowId, store),
1399 (cellId) => /* @__PURE__ */ jsx(
1400 Cell,
1401 {
1402 ...getProps(getCellComponentProps, cellId),
1403 tableId,
1404 rowId,
1405 cellId,
1406 store,
1407 debugIds
1408 },
1409 cellId
1410 )
1411 )
1412});
1413var tableView = ({
1414 tableId,
1415 store,

Callers

nothing calls this directly

Calls 3

arrayMapFunction · 0.70
getPropsFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…