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

Function TableInHtmlTable

src/ui-solid-dom/TableInHtmlTable.tsx:19–41  ·  view source on GitHub ↗
(
  props: TableInHtmlTableProps & HtmlTableProps,
)

Source from the content-addressed store, hash-verified

17import {EditableCellView} from './EditableCellView.tsx';
18
19export const TableInHtmlTable: typeof TableInHtmlTableDecl = (
20 props: TableInHtmlTableProps & HtmlTableProps,
21): JSXElement =>
22 HtmlTable({
23 ...props,
24 params: getParams(
25 useCells(
26 useTableCellIds(
27 () => props.tableId,
28 () => props.store,
29 ),
30 () => props.customCells,
31 () => (props.editable ? EditableCellView : CellView),
32 ),
33 getStoreCellComponentProps(props.store, props.tableId),
34 useRowIds(
35 () => props.tableId,
36 () => props.store,
37 ),
38 props.extraCellsBefore,
39 props.extraCellsAfter,
40 ),
41 });

Callers

nothing calls this directly

Calls 6

HtmlTableFunction · 0.90
getParamsFunction · 0.90
useCellsFunction · 0.90
useTableCellIdsFunction · 0.90
useRowIdsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…