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

Function ResultTableInHtmlTable

src/ui-solid-dom/ResultTableInHtmlTable.tsx:21–43  ·  view source on GitHub ↗
(
  props: ResultTableInHtmlTableProps & HtmlTableProps,
)

Source from the content-addressed store, hash-verified

19} from './common/hooks.tsx';
20
21export const ResultTableInHtmlTable: typeof ResultTableInHtmlTableDecl = (
22 props: ResultTableInHtmlTableProps & HtmlTableProps,
23): JSXElement =>
24 HtmlTable({
25 ...props,
26 params: getParams(
27 useCells(
28 useResultTableCellIds(
29 () => props.queryId,
30 () => props.queries,
31 ),
32 () => props.customCells,
33 () => ResultCellView,
34 ),
35 getQueriesCellComponentProps(props.queries, props.queryId),
36 useResultRowIds(
37 () => props.queryId,
38 () => props.queries,
39 ),
40 props.extraCellsBefore,
41 props.extraCellsAfter,
42 ),
43 });

Callers

nothing calls this directly

Calls 6

HtmlTableFunction · 0.90
getParamsFunction · 0.90
useCellsFunction · 0.90
useResultTableCellIdsFunction · 0.90
useResultRowIdsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…