({
relationshipId,
relationships,
rowComponent: Row = RowView,
getRowComponentProps,
separator,
debugIds
}, getRowIdsHook, rowId)
| 1465 | ) |
| 1466 | }); |
| 1467 | var useComponentPerRow = ({ |
| 1468 | relationshipId, |
| 1469 | relationships, |
| 1470 | rowComponent: Row = RowView, |
| 1471 | getRowComponentProps, |
| 1472 | separator, |
| 1473 | debugIds |
| 1474 | }, getRowIdsHook, rowId) => { |
| 1475 | const [resolvedRelationships, store, localTableId] = getRelationshipsStoreTableIds( |
| 1476 | useRelationshipsOrRelationshipsById(relationships), |
| 1477 | relationshipId |
| 1478 | ); |
| 1479 | const rowIds = getRowIdsHook(relationshipId, rowId, resolvedRelationships); |
| 1480 | return /* @__PURE__ */ jsx(Wrap, { |
| 1481 | separator, |
| 1482 | debugIds, |
| 1483 | id: rowId, |
| 1484 | children: arrayMap( |
| 1485 | rowIds, |
| 1486 | (rowId2) => /* @__PURE__ */ jsx( |
| 1487 | Row, |
| 1488 | { |
| 1489 | ...getProps(getRowComponentProps, rowId2), |
| 1490 | tableId: localTableId, |
| 1491 | rowId: rowId2, |
| 1492 | store, |
| 1493 | debugIds |
| 1494 | }, |
| 1495 | rowId2 |
| 1496 | ) |
| 1497 | ) |
| 1498 | }); |
| 1499 | }; |
| 1500 | var getUseCheckpointView = (getCheckpoints) => ({ |
| 1501 | checkpoints, |
| 1502 | checkpointComponent: Checkpoint = CheckpointView, |
no test coverage detected
searching dependent graphs…