MCPcopy Create free account
hub / github.com/tinyplex/tinybase / useDelCellCallback

Function useDelCellCallback

docs/pseudo.esm.sh/tinybase@9.0.0/ui-react/index.js:680–689  ·  view source on GitHub ↗
(tableId, rowId, cellId, forceDel, storeOrStoreId, then, thenDeps)

Source from the content-addressed store, hash-verified

678var useDelTableCallback = (tableId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, TABLE, then, thenDeps, tableId);
679var useDelRowCallback = (tableId, rowId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, ROW, then, thenDeps, tableId, rowId);
680var useDelCellCallback = (tableId, rowId, cellId, forceDel, storeOrStoreId, then, thenDeps) => useDel(
681 storeOrStoreId,
682 CELL,
683 then,
684 thenDeps,
685 tableId,
686 rowId,
687 cellId,
688 forceDel
689);
690var useDelValuesCallback = (storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, VALUES, then, thenDeps);
691var useDelValueCallback = (valueId, storeOrStoreId, then, thenDeps) => useDel(storeOrStoreId, VALUE, then, thenDeps, valueId);
692var useHasTablesListener = (listener, listenerDeps, mutator, storeOrStoreId) => useListener(

Callers

nothing calls this directly

Calls 1

useDelFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…