@affino/datagrid-core
v0.3.31
Published
Headless data grid core for Affino UI primitives
Maintainers
Readme
@affino/datagrid-core
Framework-agnostic data grid core.
Canonical Feature Catalog
Single source of truth for platform capabilities:
Formula engine boundary
Base formula APIs now have a dedicated package boundary:
- community: @affino/datagrid-formula-engine
- boundary doc: datagrid-formula-engine-community-vs-enterprise.md
Keep row-model orchestration and formula integration inside @affino/datagrid-core.
Use @affino/datagrid-formula-engine for formula parsing/compile/graph APIs.
Pivot boundary
Base pivot APIs now also have a dedicated package boundary:
- community: @affino/datagrid-pivot
- boundary doc: datagrid-pivot-community-vs-enterprise.md
Keep row-model orchestration and pivot runtime integration inside @affino/datagrid-core.
Use @affino/datagrid-pivot for pivot contracts and pure pivot helper APIs.
Layer boundaries (Core vs Orchestration vs Adapter)
- Keep in
@affino/datagrid-core:- row/column/filter/sort/group runtime state and deterministic model contracts.
- snapshot APIs consumed by adapters.
- Keep in
@affino/datagrid-orchestration:- interaction policies (scroll linking, resize guards, recovery loops, selection gestures).
- reusable orchestration logic that is UI-framework agnostic.
- Keep in adapters (
@affino/datagrid-vueetc):- framework lifecycle, refs/DOM reads-writes, template wiring and presentation concerns.
API Tiers
Tier 1: Stable (@affino/datagrid-core)
Semver-safe surface for application integrations.
import {
createDataGridApi,
createDataGridCore,
createClientRowModel,
createServerBackedRowModel,
} from "@affino/datagrid-core"Tier 2: Advanced (@affino/datagrid-core/advanced)
Power-user APIs (supported, but can evolve faster):
import {
createDataGridViewportController,
createDataGridA11yStateMachine,
createDataGridTransactionService,
createDataGridAdapterRuntime,
} from "@affino/datagrid-core/advanced"Tier 3: Internal (@affino/datagrid-core/internal)
Unsafe, no semver guarantees. Use only for local tooling and migrations.
Naming
Core naming is fully canonicalized to DataGrid* across stable, advanced, and internal entrypoints.
Row Updates: setRows vs patchRows
createClientRowModel() now supports two update modes:
setRows(rows):- full source replacement.
- keeps legacy behavior: increments row revision and recomputes filter/sort/group projection.
patchRows(updates, options?):- partial updates by
rowId(cell-level/streaming updates). - defaults are Excel-like (
recomputeSort/filter/group = false) to keep current view stable during edits. - can disable projection phases for UX stability:
recomputeSort: falserecomputeFilter: falserecomputeGroup: false
- partial updates by
rowModel.patchRows(
[{ rowId: "r-42", data: { tested_at: "2026-02-21T10:15:00Z" } }],
{ recomputeSort: false, recomputeFilter: false, recomputeGroup: false },
)When all recompute flags are disabled, cell values update and snapshot revision changes, but visible row order/filter/group projection may be temporarily stale by design.
Client projection is internally modeled as a stage graph:
filter -> sort -> group -> pivot -> aggregate -> paginate -> visible
Quick filter is part of the filter model, not a separate global service. Use filterModel.quickFilter for grid-wide text filtering; it runs inside the filter stage and therefore invalidates sort/group/pivot/aggregate/pagination/visible results through the normal projection dependency chain. See DataGrid Quick Filter.
Stage dirty state is propagated through dependencies, and snapshot includes projection diagnostics (version, staleStages) for devtools/integration debugging.
patchRows uses field-aware invalidation internally: only stages whose dependency fields intersect patched fields are invalidated.
Projection recompute is dirty-stage driven (not full-pass): blocked stages (recompute* = false) run in non-recompute mode for data continuity and remain marked stale until an explicit recompute is allowed.
Projection diagnostics expose cycle vs actual recompute semantics: version/cycleVersion increase every projection cycle, while recomputeVersion increases only when at least one stage actually recomputed.
For treeData, set dependencyFields to avoid unnecessary regroup/tree projection on unrelated cell patches.
Effective Filter And Selection Values
When displayed values differ from the raw row payload, keep filters, histogram entries, and selection aggregates aligned with the effective value the user sees.
createClientRowModel(...) accepts readFilterCell(rowNode, columnKey) for value-set filters, advanced-filter predicates, and getColumnHistogram(...):
const rowModel = createClientRowModel({
rows,
readFilterCell(rowNode, columnKey) {
if (columnKey !== "status") {
return undefined
}
return rowNode.data.statusCode === "a" ? "Active" : "Blocked"
},
})
rowModel.getColumnHistogram("status", { ignoreSelfFilter: true })The same pattern is available for selection aggregates through readSelectionCell:
api.selection.summarize({ readSelectionCell })createDataGridSelectionSummary({ ..., readSelectionCell })
Use this when formula-backed or display-formatted columns should contribute their effective values to sum, min, max, avg, and distinct counts instead of the stored raw field.
Pivot Model (Engine Primitive)
Client row model supports declarative pivot projection via:
setPivotModel(pivotSpec | null)getPivotModel()
Minimal V1 pivot spec:
{
rows: ["team"],
columns: ["year"],
values: [{ field: "revenue", agg: "sum" }],
rowSubtotals: true, // optional
grandTotal: true, // optional
}Pivot is executed as a pure projection stage and exposes deterministic runtime pivot columns in snapshot:
snapshot.pivotModelsnapshot.pivotColumns
Current V1 scope/limitations:
- Pivot is flat (projected rows are leaf-like; no pivot expand/collapse yet).
- Optional totals are available:
rowSubtotals(for multi-level row axis) andgrandTotal. - Pivot values are taken from
pivotModel.valuesand aggregated inside pivot stage.aggregationModelgroup-aggregate stage is bypassed while pivot is active. - Pivot aggregation uses an incremental state path for
sum/count/countNonNull/avgand falls back to leaf-bucket recompute for other ops (min/max/first/last/custom). - Pivot invalidation is field-aware, but recompute is full-stage (no incremental pivot recompute yet).
Deterministic Integration Snapshot
Viewport integration should read deterministic state from controller snapshot API instead of peeking into internal signals or DOM transforms:
import { createDataGridViewportController } from "@affino/datagrid-core/advanced"
const viewport = createDataGridViewportController({ resolvePinMode })
const snapshot = viewport.getIntegrationSnapshot()
// stable integration fields:
snapshot.virtualWindow
snapshot.visibleRowRange
snapshot.visibleColumnRange
snapshot.pinnedWidth
snapshot.overlaySyncvisibleRowRange / visibleColumnRange are legacy mirrors of virtualWindow for compatibility.
For imperative adapters, DataGridViewportImperativeCallbacks also exposes onWindow(payload) with the same virtualWindow snapshot.
getViewportSyncState() is also available when only sync transform state is needed.
Pinning Contract (Canonical)
Runtime now treats only one pin state as canonical:
column.pin = "left" | "right" | "none"column.isSystem = trueis always resolved as left-pinned.
Legacy pin fields are not part of the supported contract.
Migration Guide
Replace legacy fields in column definitions:
sticky: "left"->pin: "left"sticky: "right"->pin: "right"stickyLeft: true|number->pin: "left"stickyRight: true|number->pin: "right"pinned: true|"left"->pin: "left"pinned: "right"->pin: "right"lock: "left"|"right"/locked: true->pin: "left"|"right"
Selection Geometry Spaces
Selection runtime uses one coordinate contract:
table/worldspace: content coordinates before scroll transform.viewportspace: visible coordinates after applying scroll.clientspace: DOM client coordinates (requires viewport origin for conversion).
Core helpers in src/selection/coordinateSpace.ts are the canonical conversion path used by overlay/fill/selection adapters.
Horizontal Virtualization Contract
Horizontal virtualization now uses a deterministic clamp/update path:
- clamp calculation is centralized in
src/viewport/dataGridViewportHorizontalClamp.ts - prepare phase is pure (no mutation of input meta)
- stress coverage includes
100krows and500+columns with pinned left/right mix
Build/Type Check
npm run build- compile public contract todistnpm run type-check- check only public contract surface
Roadmap
Execution and quality hardening are tracked in: datagrid-ag-architecture-acceptance-checklist.md.
