Function
useHasTableCell
(
tableId: MaybeAccessor<Id>,
cellId: MaybeAccessor<Id>,
storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>,
)
Source from the content-addressed store, hash-verified
| 544 | ); |
| 545 | |
| 546 | export const useHasTableCell = ( |
| 547 | tableId: MaybeAccessor<Id>, |
| 548 | cellId: MaybeAccessor<Id>, |
| 549 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 550 | ): Accessor<boolean> => |
| 551 | useListenable( |
| 552 | TABLE + CELL, |
| 553 | useStoreOrStoreById(storeOrStoreId), |
| 554 | ReturnType.Boolean, |
| 555 | [tableId, cellId], |
| 556 | ); |
| 557 | |
| 558 | export const useRowCount = ( |
| 559 | tableId: MaybeAccessor<Id>, |
Used in the wild real call sites across dependent graphs
searching dependent graphs…