({
indexId,
sliceId,
indexes,
rowComponent: Row = RowView,
getRowComponentProps,
separator,
debugIds
})
| 1532 | (checkpointIds) => checkpointIds[2] |
| 1533 | ); |
| 1534 | var SliceView = ({ |
| 1535 | indexId, |
| 1536 | sliceId, |
| 1537 | indexes, |
| 1538 | rowComponent: Row = RowView, |
| 1539 | getRowComponentProps, |
| 1540 | separator, |
| 1541 | debugIds |
| 1542 | }) => { |
| 1543 | const [resolvedIndexes, store, tableId] = getIndexStoreTableId( |
| 1544 | useIndexesOrIndexesById(indexes), |
| 1545 | indexId |
| 1546 | ); |
| 1547 | const rowIds = useSliceRowIds(indexId, sliceId, resolvedIndexes); |
| 1548 | return /* @__PURE__ */ jsx(Wrap, { |
| 1549 | separator, |
| 1550 | debugIds, |
| 1551 | id: sliceId, |
| 1552 | children: arrayMap( |
| 1553 | rowIds, |
| 1554 | (rowId) => /* @__PURE__ */ jsx( |
| 1555 | Row, |
| 1556 | { |
| 1557 | ...getProps(getRowComponentProps, rowId), |
| 1558 | tableId, |
| 1559 | rowId, |
| 1560 | store, |
| 1561 | debugIds |
| 1562 | }, |
| 1563 | rowId |
| 1564 | ) |
| 1565 | ) |
| 1566 | }); |
| 1567 | }; |
| 1568 | var IndexView = ({ |
| 1569 | indexId, |
| 1570 | indexes, |
nothing calls this directly
no test coverage detected
searching dependent graphs…