( tableId: MaybeAccessor<Id | undefined>, store: MaybeAccessor<Store | undefined>, )
| 34 | } from './common/index.tsx'; |
| 35 | |
| 36 | const useDottedCellIds = ( |
| 37 | tableId: MaybeAccessor<Id | undefined>, |
| 38 | store: MaybeAccessor<Store | undefined>, |
| 39 | ) => { |
| 40 | const cellIds = useTableCellIds( |
| 41 | () => getValue(tableId) as Id, |
| 42 | () => getValue(store), |
| 43 | ); |
| 44 | const dottedCellIds = createMemo(() => |
| 45 | arrayMap(cellIds(), (cellId) => getValue(tableId) + DOT + cellId), |
| 46 | ); |
| 47 | return dottedCellIds; |
| 48 | }; |
| 49 | |
| 50 | export const RelationshipInHtmlRow = (props: { |
| 51 | readonly localRowId: Id; |
no test coverage detected
searching dependent graphs…