@svgrid/grid 2.2.0 → 2.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. package/dist/FlexRender.svelte +96 -96
  2. package/dist/GridFooter.svelte +178 -178
  3. package/dist/SvCarousel.svelte +141 -141
  4. package/dist/SvColorInput.svelte +187 -187
  5. package/dist/SvContextMenu.svelte +116 -116
  6. package/dist/SvDrawer.svelte +250 -250
  7. package/dist/SvGrid.svelte +3131 -3131
  8. package/dist/SvGridBoard.svelte +2339 -2339
  9. package/dist/SvGridChart.svelte +1724 -1724
  10. package/dist/SvGridChartPanel.svelte +485 -485
  11. package/dist/SvGridDropdown.svelte +689 -689
  12. package/dist/SvGroupCell.svelte +109 -109
  13. package/dist/SvMenu.svelte +124 -124
  14. package/dist/SvMenuList.svelte +117 -117
  15. package/dist/SvNumberInput.svelte +131 -131
  16. package/dist/SvOtpInput.svelte +158 -158
  17. package/dist/SvPopover.svelte +139 -139
  18. package/dist/SvRowGroupPanel.svelte +170 -170
  19. package/dist/SvScrollArea.svelte +61 -61
  20. package/dist/SvTooltip.svelte +127 -127
  21. package/dist/SvTour.svelte +204 -204
  22. package/dist/SvTree.svelte +377 -377
  23. package/dist/SvTreeSelect.svelte +230 -230
  24. package/dist/cdn/svgrid.js +8 -8
  25. package/dist/cdn/svgrid.svelte-external.js +8 -8
  26. package/dist/chart-export.js +8 -8
  27. package/package.json +10 -10
  28. package/src/FlexRender.svelte +96 -96
  29. package/src/GridFooter.svelte +178 -178
  30. package/src/SvCarousel.svelte +141 -141
  31. package/src/SvColorInput.svelte +187 -187
  32. package/src/SvContextMenu.svelte +116 -116
  33. package/src/SvDrawer.svelte +250 -250
  34. package/src/SvGrid.controller.svelte.ts +3158 -3158
  35. package/src/SvGrid.svelte +3131 -3131
  36. package/src/SvGrid.types.ts +1489 -1489
  37. package/src/SvGridBoard.svelte +2339 -2339
  38. package/src/SvGridChart.svelte +1724 -1724
  39. package/src/SvGridChartPanel.svelte +485 -485
  40. package/src/SvGridDropdown.svelte +689 -689
  41. package/src/SvGroupCell.svelte +109 -109
  42. package/src/SvMenu.svelte +124 -124
  43. package/src/SvMenu.test.ts +97 -97
  44. package/src/SvMenuList.svelte +117 -117
  45. package/src/SvNumberInput.svelte +131 -131
  46. package/src/SvOtpInput.svelte +158 -158
  47. package/src/SvPopover.svelte +139 -139
  48. package/src/SvRowGroupPanel.svelte +170 -170
  49. package/src/SvScrollArea.svelte +61 -61
  50. package/src/SvTooltip.svelte +127 -127
  51. package/src/SvTour.svelte +204 -204
  52. package/src/SvTree.svelte +377 -377
  53. package/src/SvTreeSelect.svelte +230 -230
  54. package/src/a11y.contract.test.ts +49 -49
  55. package/src/a11y.test.ts +59 -59
  56. package/src/a11y.ts +61 -61
  57. package/src/build-api.ts +870 -870
  58. package/src/cell-formatting.ts +169 -169
  59. package/src/cell-render.ts +469 -469
  60. package/src/chart-export.ts +201 -201
  61. package/src/chart.ts +2296 -2296
  62. package/src/collaboration.test.ts +104 -104
  63. package/src/collaboration.ts +167 -167
  64. package/src/core.performance.test.ts +30 -30
  65. package/src/core.ts +1111 -1111
  66. package/src/createAutocomplete.svelte.ts +132 -132
  67. package/src/createCombobox.svelte.ts +179 -179
  68. package/src/createCountryInput.svelte.ts +157 -157
  69. package/src/createDropdownList.svelte.ts +162 -162
  70. package/src/createGrid.svelte.ts +42 -42
  71. package/src/createGrid.test.ts +10 -10
  72. package/src/createGridState.svelte.ts +17 -17
  73. package/src/createMenu.svelte.ts +202 -202
  74. package/src/createPopoverSelect.svelte.ts +206 -206
  75. package/src/createTree.svelte.ts +319 -319
  76. package/src/editing.test.ts +859 -859
  77. package/src/editing.ts +675 -675
  78. package/src/export-data-api.test.ts +126 -126
  79. package/src/export-format.test.ts +107 -107
  80. package/src/export-format.ts +598 -598
  81. package/src/flex-render.ts +3 -3
  82. package/src/index.ts +623 -623
  83. package/src/keyboard.test.ts +59 -59
  84. package/src/keyboard.ts +97 -97
  85. package/src/list-nav.test.ts +49 -49
  86. package/src/list-nav.ts +29 -29
  87. package/src/menus.ts +639 -639
  88. package/src/merge-objects.ts +48 -48
  89. package/src/overlays.test.ts +90 -90
  90. package/src/render-component.ts +28 -28
  91. package/src/selection.test.ts +754 -754
  92. package/src/selection.ts +600 -600
  93. package/src/server-data-source.test.ts +289 -289
  94. package/src/server-data-source.ts +413 -413
  95. package/src/sparkline.test.ts +68 -68
  96. package/src/sparkline.ts +169 -169
  97. package/src/spreadsheet.test.ts +489 -489
  98. package/src/spreadsheet.ts +312 -312
  99. package/src/static-functions.ts +11 -11
  100. package/src/subscribe.ts +38 -38
  101. package/src/svgrid-wrapper.types.ts +501 -501
  102. package/src/svgrid.behavior.test.ts +706 -706
  103. package/src/svgrid.charting.test.ts +527 -527
  104. package/src/svgrid.features.test.ts +157 -157
  105. package/src/svgrid.new-features.wrapper.test.ts +251 -251
  106. package/src/svgrid.wrapper.test.ts +40 -40
  107. package/src/test-setup.ts +62 -62
  108. package/src/themes/index.ts +159 -159
  109. package/src/virtualization/column-virtualizer.test.ts +27 -27
  110. package/src/virtualization/column-virtualizer.ts +30 -30
  111. package/src/virtualization/svelte-virtualizer.svelte.ts +26 -26
  112. package/src/virtualization/types.ts +30 -30
  113. package/src/virtualization/virtualizer.test.ts +47 -47
  114. package/src/virtualization/virtualizer.ts +296 -296
package/src/selection.ts CHANGED
@@ -1,600 +1,600 @@
1
- // selection handlers extracted from the controller. Imperative event handlers
2
- // reading/writing controller state via the `ctx` handle; the reactive core
3
- // ($state/$derived/$effect) stays in the controller.
4
- import {
5
- applyExcelFilter,
6
- normalizeForFilter,
7
- createColumnVirtualizer,
8
- createCoreRowModel,
9
- createExpandedRowModel,
10
- createFilteredRowModel,
11
- createGroupedRowModel,
12
- createPaginatedRowModel,
13
- createSvelteVirtualizer,
14
- createSortedRowModel,
15
- createSvGrid,
16
- filterFns,
17
- getGridCellA11yProps,
18
- getGridCellDomId,
19
- getGridHeaderA11yProps,
20
- getGridRootA11yProps,
21
- getGridRowA11yProps,
22
- parseEditorValue,
23
- normalizeEditorOptions,
24
- sortFns,
25
- tableFeatures,
26
- rowSortingFeature,
27
- columnFilteringFeature,
28
- columnGroupingFeature,
29
- type CellContext,
30
- type EditorContext,
31
- type CellEditorOption,
32
- type CellEditorType,
33
- type CellFormatter,
34
- type CellFormatConfig,
35
- type Column,
36
- type ColumnDef,
37
- type Row,
38
- type RowData,
39
- type SvGridApi,
40
- type TableFeatures,
41
- } from "./index";
42
- import "./sv-grid-scrollbar";
43
- import type { Snippet } from "svelte";
44
- import { getKeyboardIntent, getNextActiveCell } from "./keyboard";
45
- import {
46
- formatNumericWithConfig,
47
- getDateFormatter,
48
- resolveDatePattern,
49
- } from "./cell-formatting";
50
- import {
51
- RenderSnippetConfig,
52
- RenderComponentConfig,
53
- } from "./render-component";
54
- import { buildFillPattern } from "./fill-patterns";
55
- import { buildSparkline, toSparklineValues } from "./sparkline";
56
- import {
57
- resolveCellFormat,
58
- computeColumnStat,
59
- formatsNeedingStats,
60
- type ColumnStat,
61
- type ResolvedCellFormat,
62
- } from "./conditional-formatting";
63
- import SvGridDropdown from "./SvGridDropdown.svelte";
64
- import type {
65
- Props,
66
- SelectionPoint,
67
- SelectionRange,
68
- CellEditState,
69
- FilterOperator,
70
- FilterOption,
71
- MenuPosition,
72
- } from "./SvGrid.types";
73
- import {
74
- cfTextStyle,
75
- fmtStat,
76
- getCellKey,
77
- resolveClassList,
78
- toDateInputValue,
79
- toDateTimeLocalInputValue,
80
- getEditableInputValue,
81
- getEditorInputType,
82
- toValueArray,
83
- getOptionLabel,
84
- getOptionColor,
85
- colorfulChipStyle,
86
- getEditorClass,
87
- asDate,
88
- clampMenuX,
89
- cssEscape,
90
- rawToNumber,
91
- formatFacetNumber,
92
- formatFacetDate,
93
- } from "./SvGrid.helpers";
94
- import { createColumns } from "./columns";
95
- import { createGridApi } from "./build-api";
96
- import { createClipboard } from "./clipboard";
97
- import {
98
- filterOperatorOptions,
99
- fallbackOperatorOption,
100
- TEXT_OPERATORS,
101
- NUMBER_OPERATORS,
102
- DATE_OPERATORS,
103
- CHECKBOX_OPERATORS,
104
- operatorOption,
105
- operatorsForColumn,
106
- defaultOperatorFor,
107
- operatorLabelFor,
108
- } from "./filter-operators";
109
- import {
110
- type FacetBucket,
111
- isBucketableColumn,
112
- buildBuckets,
113
- isInBucket,
114
- } from "./facet-buckets";
115
- import {
116
- getColumnBaseValue,
117
- isGroupRow,
118
- toolPanelHeaderLabel,
119
- formatSummaryNumeric,
120
- getColumnAlign,
121
- getPinnedCellValue,
122
- getColumnAccessorValue,
123
- columnDefMatchesId,
124
- } from "./cell-values";
125
-
126
- export function createSelection<
127
- TFeatures extends TableFeatures = TableFeatures,
128
- TData extends RowData = RowData,
129
- >(ctx: any) {
130
- function isRowSelected(rowId: string) {
131
- return Boolean(ctx.rowSelectionState[rowId]);
132
- }
133
-
134
- function toggleRowSelectionById(rowId: string) {
135
- ctx.grid.setRowSelection((prev: any) => ({ ...prev, [rowId]: !prev[rowId] }));
136
- }
137
-
138
- function toggleSelectAllRows() {
139
- const selectable = ctx.allRows.filter((row: any) => !isGroupRow(row));
140
- const select = ctx.headerSelectionState !== "all";
141
- ctx.grid.setRowSelection((prev: any) => {
142
- const next = { ...prev };
143
- for (const row of selectable) {
144
- if (select) next[row.id] = true;
145
- else delete next[row.id];
146
- }
147
- return next;
148
- });
149
- }
150
-
151
- function setActiveCell(rowIndex: number, colIndex: number) {
152
- ctx.userHasActivatedCell = true;
153
- ctx.grid.setActiveCell({
154
- rowIndex,
155
- colIndex,
156
- cellId: getGridCellDomId("svgrid", rowIndex, colIndex),
157
- });
158
- // Notify consumers (toolbars, ribbons) so they stay synced without
159
- // having to listen on the DOM. Fired on EVERY active-cell move -
160
- // click, arrow key, Tab, Enter, page-up/down, fill release.
161
- if (ctx.props.onActiveCellChange) {
162
- const column = ctx.allColumns[colIndex];
163
- ctx.props.onActiveCellChange({
164
- rowIndex,
165
- colIndex,
166
- columnId: column?.id ?? "",
167
- });
168
- }
169
- }
170
-
171
- function scrollActiveCellIntoView(rowIndex: number, colIndex: number) {
172
- if (!ctx.scrollContainer) return;
173
- if (rowIndex < 0 || rowIndex >= ctx.allRows.length) return;
174
- if (colIndex < 0 || colIndex >= ctx.allColumns.length) return;
175
-
176
- if (ctx.rowVirtualizationEnabled) {
177
- // Prefer the browser's native `scrollIntoView({ block: 'nearest' })`
178
- // when the target row is already mounted. It does Excel-style
179
- // minimum-scroll, respects the sticky thead via the
180
- // `scroll-padding-top` we set on the scroll container, and runs
181
- // on the compositor so it doesn't jump.
182
- const root = ctx.scrollContainer as HTMLElement
183
- const trEl = root.querySelector<HTMLElement>(
184
- `tr.sv-grid-row [data-svgrid-row="${rowIndex}"]`,
185
- )?.closest('tr.sv-grid-row') as HTMLElement | null
186
- if (trEl) {
187
- // `behavior: 'instant'` skips any user-agent smooth-scroll
188
- // animation. Without it, fast key-repeat queues multiple
189
- // overlapping animated scrolls and the viewport visibly
190
- // overshoots / jumps as they collide.
191
- trEl.scrollIntoView({
192
- block: 'nearest',
193
- inline: 'nearest',
194
- behavior: 'instant' as ScrollBehavior,
195
- })
196
- } else if (ctx.rowScrollScalingActive) {
197
- // Huge-list scroll scaling: the logical row offset does NOT map 1:1
198
- // to a DOM scrollTop (the DOM scroll range is capped), so the plain
199
- // offset math below would clamp and never reach the target. Map the
200
- // logical offset into DOM space and align the row just under the
201
- // sticky header. Rows are sub-pixel tall in DOM space here, so exact
202
- // minimum-scroll is meaningless; once the row mounts the native
203
- // `scrollIntoView` path above fine-tunes on the next navigation.
204
- const headerHeight = (ctx.theadEl as HTMLElement | null)?.offsetHeight
205
- ?? ctx.headerHeight ?? 0
206
- const rowLogicalTop = ctx.virtualizer.getOffsetForIndex(rowIndex)
207
- const nextTop = Math.max(
208
- ctx.logicalToDomRowOffset(rowLogicalTop) - headerHeight,
209
- 0,
210
- )
211
- if (Math.abs(nextTop - root.scrollTop) > 0.5) {
212
- root.scrollTop = nextTop
213
- }
214
- } else {
215
- // Row outside the rendered virtualizer window. Compute the
216
- // scroll-coordinate target manually and set scrollTop. On the
217
- // next render the row will mount and subsequent navigations
218
- // use the native path above.
219
- const currentTop = root.scrollTop
220
- const clientHeight = root.clientHeight
221
- const headerHeight = (ctx.theadEl as HTMLElement | null)?.offsetHeight
222
- ?? ctx.headerHeight ?? 0
223
- const rowTopScroll = headerHeight + ctx.virtualizer.getOffsetForIndex(rowIndex)
224
- const rowHeight = ctx.virtualizer.getSizeForIndex(rowIndex)
225
- const rowBottom = rowTopScroll + rowHeight
226
- let nextTop = currentTop
227
- if (rowTopScroll < currentTop + headerHeight) {
228
- nextTop = rowTopScroll - headerHeight
229
- } else if (rowBottom > currentTop + clientHeight) {
230
- nextTop = rowBottom - clientHeight
231
- }
232
- nextTop = Math.max(nextTop, 0)
233
- if (nextTop !== currentTop) {
234
- root.scrollTop = nextTop
235
- }
236
- }
237
- } else {
238
- // Non-virtualized mode: the cell's <td> is already in the DOM.
239
- // Read its actual rect and bring it into view when it overlaps
240
- // with the sticky header or is past the visible bottom. Without
241
- // this branch, arrow keys move the active cell off-screen and
242
- // the scrollbar never follows.
243
- const cellEl = (ctx.scrollContainer as HTMLElement).querySelector<HTMLElement>(
244
- `td[data-svgrid-row="${rowIndex}"][data-svgrid-col="${colIndex}"]`,
245
- );
246
- if (cellEl) {
247
- const headerHeight = ctx.theadEl?.offsetHeight ?? 0;
248
- const containerRect = ctx.scrollContainer.getBoundingClientRect();
249
- const cellRect = cellEl.getBoundingClientRect();
250
- const cellTopInView = cellRect.top - containerRect.top;
251
- const cellBotInView = cellRect.bottom - containerRect.top;
252
- const clientHeight = ctx.scrollContainer.clientHeight;
253
- let nextTop = ctx.scrollContainer.scrollTop;
254
- if (cellTopInView < ctx.headerHeight) {
255
- nextTop = ctx.scrollContainer.scrollTop + cellTopInView - ctx.headerHeight;
256
- } else if (cellBotInView > clientHeight) {
257
- nextTop = ctx.scrollContainer.scrollTop + cellBotInView - clientHeight;
258
- }
259
- nextTop = Math.max(nextTop, 0);
260
- if (nextTop !== ctx.scrollContainer.scrollTop) {
261
- ctx.scrollContainer.scrollTop = nextTop;
262
- }
263
- }
264
- }
265
-
266
- // Prefer the rendered item (cached size from the layout pass).
267
- // Fall back to the column virtualizer's offset helper - that
268
- // handles per-column variable widths correctly, unlike the
269
- // previous flat `colIndex * fallbackWidth` estimate.
270
- const item = ctx.renderedColumnItems.find((entry: any) => entry.index === colIndex);
271
- const fallbackWidth = ctx.props.columnWidth ?? 140;
272
- const cellStart = item?.start ?? ctx.columnVirtualizer?.getOffsetForIndex?.(colIndex) ?? (colIndex * fallbackWidth);
273
- const cellSize = item?.size ?? ctx.columnVirtualizer?.getSizeForIndex?.(colIndex) ?? fallbackWidth;
274
- const cellEnd = cellStart + cellSize;
275
- const viewStart = ctx.scrollContainer.scrollLeft;
276
- const viewEnd = viewStart + ctx.scrollContainer.clientWidth;
277
- if (cellStart < viewStart) {
278
- ctx.scrollContainer.scrollLeft = cellStart;
279
- } else if (cellEnd > viewEnd) {
280
- ctx.scrollContainer.scrollLeft = cellEnd - ctx.scrollContainer.clientWidth;
281
- }
282
- // No inline scrollVersion bump - the `scroll` event triggers
283
- // onBodyScroll which flushes via rAF, doing one batched update.
284
- }
285
-
286
- // Normalize a range to a rectangle, or null when incomplete.
287
- function rangeRect(range: SelectionRange | null) {
288
- const a = range?.anchor;
289
- const f = range?.focus;
290
- if (!a || !f) return null;
291
- return {
292
- minRow: Math.min(a.rowIndex, f.rowIndex),
293
- maxRow: Math.max(a.rowIndex, f.rowIndex),
294
- minCol: Math.min(a.colIndex, f.colIndex),
295
- maxCol: Math.max(a.colIndex, f.colIndex),
296
- };
297
- }
298
-
299
- // Every selected rectangle: the committed extra ranges plus the active one.
300
- // Order matters for copy (added-order); the active range comes last.
301
- function getSelectionRects() {
302
- const rects = [] as Array<{ minRow: number; maxRow: number; minCol: number; maxCol: number }>;
303
- for (const r of (ctx.selectionRanges as SelectionRange[]) ?? []) {
304
- const rect = rangeRect(r);
305
- if (rect) rects.push(rect);
306
- }
307
- const active = rangeRect(ctx.selectionRange);
308
- if (active) rects.push(active);
309
- return rects;
310
- }
311
-
312
- function setSelection(rowIndex: number, colIndex: number, additive = false) {
313
- if (!ctx.enableCellSelectionEffective) return;
314
- if (additive) {
315
- // Commit the current active range (if any) and start a fresh one, so the
316
- // previous rectangle stays highlighted alongside the new Ctrl+drag.
317
- const active = ctx.selectionRange as SelectionRange;
318
- if (active.anchor && active.focus) {
319
- ctx.selectionRanges = [...(ctx.selectionRanges as SelectionRange[]), active];
320
- }
321
- } else {
322
- ctx.selectionRanges = [];
323
- }
324
- const point = { rowIndex, colIndex };
325
- ctx.selectionRange = { anchor: point, focus: point };
326
- }
327
-
328
- function extendSelection(rowIndex: number, colIndex: number) {
329
- if (!ctx.enableCellSelectionEffective) return;
330
- const anchor = ctx.selectionRange.anchor ?? { rowIndex, colIndex };
331
- ctx.selectionRange = { anchor, focus: { rowIndex, colIndex } };
332
- }
333
-
334
- function isCellInSelectedRange(rowIndex: number, colIndex: number) {
335
- for (const rect of getSelectionRects()) {
336
- if (
337
- rowIndex >= rect.minRow &&
338
- rowIndex <= rect.maxRow &&
339
- colIndex >= rect.minCol &&
340
- colIndex <= rect.maxCol
341
- ) {
342
- return true;
343
- }
344
- }
345
- return false;
346
- }
347
-
348
- /**
349
- * Returns which sides of a selection rectangle a cell sits on, for the
350
- * Excel-style outline. With multiple ranges, the edges of the FIRST range
351
- * that contains the cell are returned (active range checked last so its
352
- * outline wins on overlap). Returns null when the cell is in no range.
353
- */
354
- function getCellRangeEdges(rowIndex: number, colIndex: number) {
355
- for (const rect of getSelectionRects()) {
356
- if (
357
- rowIndex < rect.minRow ||
358
- rowIndex > rect.maxRow ||
359
- colIndex < rect.minCol ||
360
- colIndex > rect.maxCol
361
- ) {
362
- continue;
363
- }
364
- return {
365
- top: rowIndex === rect.minRow,
366
- bottom: rowIndex === rect.maxRow,
367
- left: colIndex === rect.minCol,
368
- right: colIndex === rect.maxCol,
369
- };
370
- }
371
- return null;
372
- }
373
-
374
- /** Returns true when the given cell is inside the fill-drag preview
375
- * range BUT outside the original source range. Used to paint a
376
- * dashed-outline preview while the user is dragging the handle. */
377
- function isInFillPreview(rowIndex: number, colIndex: number) {
378
- const d = ctx.fillDrag;
379
- if (!d) return false;
380
- const minR = Math.min(d.sourceMinRow, d.targetRow);
381
- const maxR = Math.max(d.sourceMaxRow, d.targetRow);
382
- const minC = Math.min(d.sourceMinCol, d.targetCol);
383
- const maxC = Math.max(d.sourceMaxCol, d.targetCol);
384
- if (
385
- rowIndex < minR ||
386
- rowIndex > maxR ||
387
- colIndex < minC ||
388
- colIndex > maxC
389
- )
390
- return false;
391
- const inSource =
392
- rowIndex >= d.sourceMinRow &&
393
- rowIndex <= d.sourceMaxRow &&
394
- colIndex >= d.sourceMinCol &&
395
- colIndex <= d.sourceMaxCol;
396
- return !inSource;
397
- }
398
-
399
- /**
400
- * Which edges of the fill-drag rectangle a cell sits on, so the render can
401
- * paint a single dashed marquee around the WHOLE target range (source +
402
- * extension) - the Excel fill-handle look - instead of a thick per-cell
403
- * border. Returns null when the cell isn't on the rectangle's boundary.
404
- */
405
- function fillMarqueeEdges(rowIndex: number, colIndex: number) {
406
- const d = ctx.fillDrag;
407
- if (!d) return null;
408
- const minR = Math.min(d.sourceMinRow, d.targetRow);
409
- const maxR = Math.max(d.sourceMaxRow, d.targetRow);
410
- const minC = Math.min(d.sourceMinCol, d.targetCol);
411
- const maxC = Math.max(d.sourceMaxCol, d.targetCol);
412
- if (rowIndex < minR || rowIndex > maxR || colIndex < minC || colIndex > maxC) {
413
- return null;
414
- }
415
- const top = rowIndex === minR;
416
- const bottom = rowIndex === maxR;
417
- const left = colIndex === minC;
418
- const right = colIndex === maxC;
419
- if (!top && !bottom && !left && !right) return null;
420
- return { top, bottom, left, right };
421
- }
422
-
423
- /** Look up a column by id without depending on `buildApi`'s private
424
- * closure (those helpers don't exist at this scope). */
425
- function findColumnById(columnId: string) {
426
- return ctx.allColumns.find((c: any) => c.id === columnId);
427
- }
428
-
429
- function onCellPointerDown(
430
- rowIndex: number,
431
- colIndex: number,
432
- event: PointerEvent,
433
- ) {
434
- if (event.button !== 0) return;
435
- const row = ctx.allRows[rowIndex];
436
- const column = ctx.allColumns[colIndex];
437
- if (!row || !column || isGroupRow(row)) return;
438
- // NOTE: we no longer bail for checkbox columns. Bailing here meant a
439
- // range drag could never START on a checkbox cell. A plain click still
440
- // toggles the checkbox via onCellClick (a same-cell click), while a
441
- // cross-cell drag fires its `click` on a common ancestor - not the cell -
442
- // so it selects a range without toggling.
443
-
444
- const active = ctx.grid.getState().activeCell;
445
- ctx.activeAtPointerDown = active
446
- ? { rowIndex: active.rowIndex, colIndex: active.colIndex }
447
- : null;
448
- if (event.shiftKey) {
449
- extendSelection(rowIndex, colIndex);
450
- setActiveCell(rowIndex, colIndex);
451
- } else {
452
- setActiveCell(rowIndex, colIndex);
453
- // Ctrl/Cmd starts an ADDITIONAL range, keeping prior ranges highlighted.
454
- setSelection(rowIndex, colIndex, event.ctrlKey || event.metaKey);
455
- // Range drag-select is a mouse/pen affordance. On touch, starting a drag
456
- // here would rubber-band a selection AND fight the browser's native
457
- // scroll (we never preventDefault), so a finger-drag to scroll the grid
458
- // instead selected cells. Tap still selects the single cell above; we
459
- // just don't enter drag-select mode for touch. (issue #23)
460
- if (event.pointerType !== "touch") ctx.isDraggingSelection = true;
461
- }
462
- }
463
-
464
- function onCellPointerEnter(rowIndex: number, colIndex: number) {
465
- if (!ctx.isDraggingSelection) return;
466
- const row = ctx.allRows[rowIndex];
467
- if (!row || isGroupRow(row)) return;
468
- extendSelection(rowIndex, colIndex);
469
- setActiveCell(rowIndex, colIndex);
470
- }
471
-
472
- function endDragSelection() {
473
- ctx.isDraggingSelection = false;
474
- // Also commit a fill-handle drag if one was in progress - the user
475
- // released the mouse, time to apply the pattern.
476
- if (ctx.fillDrag) ctx.onFillPointerUp();
477
- }
478
-
479
- function onWindowPointerMove(event: PointerEvent) {
480
- if (ctx.fillDrag) {
481
- ctx.onFillPointerMove(event);
482
- return;
483
- }
484
- if (!ctx.isDraggingSelection) return;
485
- // Safety: if no mouse button is held the drag is over (we may have
486
- // missed pointerup because the user lifted outside the window).
487
- if (event.buttons === 0) {
488
- endDragSelection();
489
- }
490
- }
491
-
492
- function onCellClick(rowIndex: number, colIndex: number) {
493
- const row = ctx.allRows[rowIndex];
494
- const column = ctx.allColumns[colIndex];
495
- if (!row || !column) return;
496
-
497
- ctx.gridRootEl?.focus({ preventScroll: true });
498
-
499
- if (isGroupRow(row)) {
500
- setActiveCell(rowIndex, colIndex);
501
- row.toggleExpanded?.();
502
- return;
503
- }
504
-
505
- const baseValue = getColumnBaseValue(row, column);
506
- const cellValue = ctx.getCellDisplayValue(row.id, column.id, baseValue);
507
-
508
- // Emit the public click events for data cells/rows (before any
509
- // checkbox-toggle / edit-entry side effects below).
510
- ctx.props.onCellClick?.({
511
- rowIndex,
512
- colIndex,
513
- columnId: column.id,
514
- value: cellValue,
515
- row: row.original as TData,
516
- });
517
- ctx.props.onRowClick?.({
518
- rowIndex,
519
- columnId: column.id,
520
- row: row.original as TData,
521
- });
522
-
523
- const isCheckboxColumn =
524
- column.columnDef.editorType === "checkbox" ||
525
- typeof cellValue === "boolean";
526
-
527
- if (isCheckboxColumn) {
528
- ctx.toggleBooleanCell(rowIndex, colIndex);
529
- setActiveCell(rowIndex, colIndex);
530
- setSelection(rowIndex, colIndex);
531
- ctx.editingCell = null;
532
- return;
533
- }
534
-
535
- // onCellPointerDown already set active+selection for data cells. Only
536
- // decide whether to enter edit mode (click on the previously-active cell).
537
- const wasActive =
538
- ctx.activeAtPointerDown !== null &&
539
- ctx.activeAtPointerDown.rowIndex === rowIndex &&
540
- ctx.activeAtPointerDown.colIndex === colIndex;
541
- if (wasActive && ctx.editingEnabled) {
542
- ctx.onCellDoubleClick(rowIndex, colIndex);
543
- return;
544
- }
545
- ctx.editingCell = null;
546
- }
547
-
548
- /**
549
- * Real double-click handler wired to the cell `ondblclick`. Emits the
550
- * public double-click events (independent of editability) and then runs
551
- * the edit-entry logic. Kept separate from `onCellDoubleClick` so the
552
- * single-click-to-edit path in `onCellClick` does NOT emit a dblclick.
553
- */
554
- function emitCellDoubleClick(rowIndex: number, colIndex: number) {
555
- const row = ctx.allRows[rowIndex];
556
- const column = ctx.allColumns[colIndex];
557
- if (row && column && !isGroupRow(row)) {
558
- const value = ctx.getCellDisplayValue(
559
- row.id,
560
- column.id,
561
- getColumnBaseValue(row, column),
562
- );
563
- ctx.props.onCellDoubleClick?.({
564
- rowIndex,
565
- colIndex,
566
- columnId: column.id,
567
- value,
568
- row: row.original as TData,
569
- });
570
- ctx.props.onRowDoubleClick?.({
571
- rowIndex,
572
- columnId: column.id,
573
- row: row.original as TData,
574
- });
575
- }
576
- ctx.onCellDoubleClick(rowIndex, colIndex);
577
- }
578
-
579
- return {
580
- isRowSelected,
581
- toggleRowSelectionById,
582
- toggleSelectAllRows,
583
- setActiveCell,
584
- scrollActiveCellIntoView,
585
- setSelection,
586
- extendSelection,
587
- isCellInSelectedRange,
588
- getCellRangeEdges,
589
- fillMarqueeEdges,
590
- getSelectionRects,
591
- isInFillPreview,
592
- findColumnById,
593
- onCellPointerDown,
594
- onCellPointerEnter,
595
- endDragSelection,
596
- onWindowPointerMove,
597
- onCellClick,
598
- emitCellDoubleClick,
599
- };
600
- }
1
+ // selection handlers extracted from the controller. Imperative event handlers
2
+ // reading/writing controller state via the `ctx` handle; the reactive core
3
+ // ($state/$derived/$effect) stays in the controller.
4
+ import {
5
+ applyExcelFilter,
6
+ normalizeForFilter,
7
+ createColumnVirtualizer,
8
+ createCoreRowModel,
9
+ createExpandedRowModel,
10
+ createFilteredRowModel,
11
+ createGroupedRowModel,
12
+ createPaginatedRowModel,
13
+ createSvelteVirtualizer,
14
+ createSortedRowModel,
15
+ createSvGrid,
16
+ filterFns,
17
+ getGridCellA11yProps,
18
+ getGridCellDomId,
19
+ getGridHeaderA11yProps,
20
+ getGridRootA11yProps,
21
+ getGridRowA11yProps,
22
+ parseEditorValue,
23
+ normalizeEditorOptions,
24
+ sortFns,
25
+ tableFeatures,
26
+ rowSortingFeature,
27
+ columnFilteringFeature,
28
+ columnGroupingFeature,
29
+ type CellContext,
30
+ type EditorContext,
31
+ type CellEditorOption,
32
+ type CellEditorType,
33
+ type CellFormatter,
34
+ type CellFormatConfig,
35
+ type Column,
36
+ type ColumnDef,
37
+ type Row,
38
+ type RowData,
39
+ type SvGridApi,
40
+ type TableFeatures,
41
+ } from "./index";
42
+ import "./sv-grid-scrollbar";
43
+ import type { Snippet } from "svelte";
44
+ import { getKeyboardIntent, getNextActiveCell } from "./keyboard";
45
+ import {
46
+ formatNumericWithConfig,
47
+ getDateFormatter,
48
+ resolveDatePattern,
49
+ } from "./cell-formatting";
50
+ import {
51
+ RenderSnippetConfig,
52
+ RenderComponentConfig,
53
+ } from "./render-component";
54
+ import { buildFillPattern } from "./fill-patterns";
55
+ import { buildSparkline, toSparklineValues } from "./sparkline";
56
+ import {
57
+ resolveCellFormat,
58
+ computeColumnStat,
59
+ formatsNeedingStats,
60
+ type ColumnStat,
61
+ type ResolvedCellFormat,
62
+ } from "./conditional-formatting";
63
+ import SvGridDropdown from "./SvGridDropdown.svelte";
64
+ import type {
65
+ Props,
66
+ SelectionPoint,
67
+ SelectionRange,
68
+ CellEditState,
69
+ FilterOperator,
70
+ FilterOption,
71
+ MenuPosition,
72
+ } from "./SvGrid.types";
73
+ import {
74
+ cfTextStyle,
75
+ fmtStat,
76
+ getCellKey,
77
+ resolveClassList,
78
+ toDateInputValue,
79
+ toDateTimeLocalInputValue,
80
+ getEditableInputValue,
81
+ getEditorInputType,
82
+ toValueArray,
83
+ getOptionLabel,
84
+ getOptionColor,
85
+ colorfulChipStyle,
86
+ getEditorClass,
87
+ asDate,
88
+ clampMenuX,
89
+ cssEscape,
90
+ rawToNumber,
91
+ formatFacetNumber,
92
+ formatFacetDate,
93
+ } from "./SvGrid.helpers";
94
+ import { createColumns } from "./columns";
95
+ import { createGridApi } from "./build-api";
96
+ import { createClipboard } from "./clipboard";
97
+ import {
98
+ filterOperatorOptions,
99
+ fallbackOperatorOption,
100
+ TEXT_OPERATORS,
101
+ NUMBER_OPERATORS,
102
+ DATE_OPERATORS,
103
+ CHECKBOX_OPERATORS,
104
+ operatorOption,
105
+ operatorsForColumn,
106
+ defaultOperatorFor,
107
+ operatorLabelFor,
108
+ } from "./filter-operators";
109
+ import {
110
+ type FacetBucket,
111
+ isBucketableColumn,
112
+ buildBuckets,
113
+ isInBucket,
114
+ } from "./facet-buckets";
115
+ import {
116
+ getColumnBaseValue,
117
+ isGroupRow,
118
+ toolPanelHeaderLabel,
119
+ formatSummaryNumeric,
120
+ getColumnAlign,
121
+ getPinnedCellValue,
122
+ getColumnAccessorValue,
123
+ columnDefMatchesId,
124
+ } from "./cell-values";
125
+
126
+ export function createSelection<
127
+ TFeatures extends TableFeatures = TableFeatures,
128
+ TData extends RowData = RowData,
129
+ >(ctx: any) {
130
+ function isRowSelected(rowId: string) {
131
+ return Boolean(ctx.rowSelectionState[rowId]);
132
+ }
133
+
134
+ function toggleRowSelectionById(rowId: string) {
135
+ ctx.grid.setRowSelection((prev: any) => ({ ...prev, [rowId]: !prev[rowId] }));
136
+ }
137
+
138
+ function toggleSelectAllRows() {
139
+ const selectable = ctx.allRows.filter((row: any) => !isGroupRow(row));
140
+ const select = ctx.headerSelectionState !== "all";
141
+ ctx.grid.setRowSelection((prev: any) => {
142
+ const next = { ...prev };
143
+ for (const row of selectable) {
144
+ if (select) next[row.id] = true;
145
+ else delete next[row.id];
146
+ }
147
+ return next;
148
+ });
149
+ }
150
+
151
+ function setActiveCell(rowIndex: number, colIndex: number) {
152
+ ctx.userHasActivatedCell = true;
153
+ ctx.grid.setActiveCell({
154
+ rowIndex,
155
+ colIndex,
156
+ cellId: getGridCellDomId("svgrid", rowIndex, colIndex),
157
+ });
158
+ // Notify consumers (toolbars, ribbons) so they stay synced without
159
+ // having to listen on the DOM. Fired on EVERY active-cell move -
160
+ // click, arrow key, Tab, Enter, page-up/down, fill release.
161
+ if (ctx.props.onActiveCellChange) {
162
+ const column = ctx.allColumns[colIndex];
163
+ ctx.props.onActiveCellChange({
164
+ rowIndex,
165
+ colIndex,
166
+ columnId: column?.id ?? "",
167
+ });
168
+ }
169
+ }
170
+
171
+ function scrollActiveCellIntoView(rowIndex: number, colIndex: number) {
172
+ if (!ctx.scrollContainer) return;
173
+ if (rowIndex < 0 || rowIndex >= ctx.allRows.length) return;
174
+ if (colIndex < 0 || colIndex >= ctx.allColumns.length) return;
175
+
176
+ if (ctx.rowVirtualizationEnabled) {
177
+ // Prefer the browser's native `scrollIntoView({ block: 'nearest' })`
178
+ // when the target row is already mounted. It does Excel-style
179
+ // minimum-scroll, respects the sticky thead via the
180
+ // `scroll-padding-top` we set on the scroll container, and runs
181
+ // on the compositor so it doesn't jump.
182
+ const root = ctx.scrollContainer as HTMLElement
183
+ const trEl = root.querySelector<HTMLElement>(
184
+ `tr.sv-grid-row [data-svgrid-row="${rowIndex}"]`,
185
+ )?.closest('tr.sv-grid-row') as HTMLElement | null
186
+ if (trEl) {
187
+ // `behavior: 'instant'` skips any user-agent smooth-scroll
188
+ // animation. Without it, fast key-repeat queues multiple
189
+ // overlapping animated scrolls and the viewport visibly
190
+ // overshoots / jumps as they collide.
191
+ trEl.scrollIntoView({
192
+ block: 'nearest',
193
+ inline: 'nearest',
194
+ behavior: 'instant' as ScrollBehavior,
195
+ })
196
+ } else if (ctx.rowScrollScalingActive) {
197
+ // Huge-list scroll scaling: the logical row offset does NOT map 1:1
198
+ // to a DOM scrollTop (the DOM scroll range is capped), so the plain
199
+ // offset math below would clamp and never reach the target. Map the
200
+ // logical offset into DOM space and align the row just under the
201
+ // sticky header. Rows are sub-pixel tall in DOM space here, so exact
202
+ // minimum-scroll is meaningless; once the row mounts the native
203
+ // `scrollIntoView` path above fine-tunes on the next navigation.
204
+ const headerHeight = (ctx.theadEl as HTMLElement | null)?.offsetHeight
205
+ ?? ctx.headerHeight ?? 0
206
+ const rowLogicalTop = ctx.virtualizer.getOffsetForIndex(rowIndex)
207
+ const nextTop = Math.max(
208
+ ctx.logicalToDomRowOffset(rowLogicalTop) - headerHeight,
209
+ 0,
210
+ )
211
+ if (Math.abs(nextTop - root.scrollTop) > 0.5) {
212
+ root.scrollTop = nextTop
213
+ }
214
+ } else {
215
+ // Row outside the rendered virtualizer window. Compute the
216
+ // scroll-coordinate target manually and set scrollTop. On the
217
+ // next render the row will mount and subsequent navigations
218
+ // use the native path above.
219
+ const currentTop = root.scrollTop
220
+ const clientHeight = root.clientHeight
221
+ const headerHeight = (ctx.theadEl as HTMLElement | null)?.offsetHeight
222
+ ?? ctx.headerHeight ?? 0
223
+ const rowTopScroll = headerHeight + ctx.virtualizer.getOffsetForIndex(rowIndex)
224
+ const rowHeight = ctx.virtualizer.getSizeForIndex(rowIndex)
225
+ const rowBottom = rowTopScroll + rowHeight
226
+ let nextTop = currentTop
227
+ if (rowTopScroll < currentTop + headerHeight) {
228
+ nextTop = rowTopScroll - headerHeight
229
+ } else if (rowBottom > currentTop + clientHeight) {
230
+ nextTop = rowBottom - clientHeight
231
+ }
232
+ nextTop = Math.max(nextTop, 0)
233
+ if (nextTop !== currentTop) {
234
+ root.scrollTop = nextTop
235
+ }
236
+ }
237
+ } else {
238
+ // Non-virtualized mode: the cell's <td> is already in the DOM.
239
+ // Read its actual rect and bring it into view when it overlaps
240
+ // with the sticky header or is past the visible bottom. Without
241
+ // this branch, arrow keys move the active cell off-screen and
242
+ // the scrollbar never follows.
243
+ const cellEl = (ctx.scrollContainer as HTMLElement).querySelector<HTMLElement>(
244
+ `td[data-svgrid-row="${rowIndex}"][data-svgrid-col="${colIndex}"]`,
245
+ );
246
+ if (cellEl) {
247
+ const headerHeight = ctx.theadEl?.offsetHeight ?? 0;
248
+ const containerRect = ctx.scrollContainer.getBoundingClientRect();
249
+ const cellRect = cellEl.getBoundingClientRect();
250
+ const cellTopInView = cellRect.top - containerRect.top;
251
+ const cellBotInView = cellRect.bottom - containerRect.top;
252
+ const clientHeight = ctx.scrollContainer.clientHeight;
253
+ let nextTop = ctx.scrollContainer.scrollTop;
254
+ if (cellTopInView < ctx.headerHeight) {
255
+ nextTop = ctx.scrollContainer.scrollTop + cellTopInView - ctx.headerHeight;
256
+ } else if (cellBotInView > clientHeight) {
257
+ nextTop = ctx.scrollContainer.scrollTop + cellBotInView - clientHeight;
258
+ }
259
+ nextTop = Math.max(nextTop, 0);
260
+ if (nextTop !== ctx.scrollContainer.scrollTop) {
261
+ ctx.scrollContainer.scrollTop = nextTop;
262
+ }
263
+ }
264
+ }
265
+
266
+ // Prefer the rendered item (cached size from the layout pass).
267
+ // Fall back to the column virtualizer's offset helper - that
268
+ // handles per-column variable widths correctly, unlike the
269
+ // previous flat `colIndex * fallbackWidth` estimate.
270
+ const item = ctx.renderedColumnItems.find((entry: any) => entry.index === colIndex);
271
+ const fallbackWidth = ctx.props.columnWidth ?? 140;
272
+ const cellStart = item?.start ?? ctx.columnVirtualizer?.getOffsetForIndex?.(colIndex) ?? (colIndex * fallbackWidth);
273
+ const cellSize = item?.size ?? ctx.columnVirtualizer?.getSizeForIndex?.(colIndex) ?? fallbackWidth;
274
+ const cellEnd = cellStart + cellSize;
275
+ const viewStart = ctx.scrollContainer.scrollLeft;
276
+ const viewEnd = viewStart + ctx.scrollContainer.clientWidth;
277
+ if (cellStart < viewStart) {
278
+ ctx.scrollContainer.scrollLeft = cellStart;
279
+ } else if (cellEnd > viewEnd) {
280
+ ctx.scrollContainer.scrollLeft = cellEnd - ctx.scrollContainer.clientWidth;
281
+ }
282
+ // No inline scrollVersion bump - the `scroll` event triggers
283
+ // onBodyScroll which flushes via rAF, doing one batched update.
284
+ }
285
+
286
+ // Normalize a range to a rectangle, or null when incomplete.
287
+ function rangeRect(range: SelectionRange | null) {
288
+ const a = range?.anchor;
289
+ const f = range?.focus;
290
+ if (!a || !f) return null;
291
+ return {
292
+ minRow: Math.min(a.rowIndex, f.rowIndex),
293
+ maxRow: Math.max(a.rowIndex, f.rowIndex),
294
+ minCol: Math.min(a.colIndex, f.colIndex),
295
+ maxCol: Math.max(a.colIndex, f.colIndex),
296
+ };
297
+ }
298
+
299
+ // Every selected rectangle: the committed extra ranges plus the active one.
300
+ // Order matters for copy (added-order); the active range comes last.
301
+ function getSelectionRects() {
302
+ const rects = [] as Array<{ minRow: number; maxRow: number; minCol: number; maxCol: number }>;
303
+ for (const r of (ctx.selectionRanges as SelectionRange[]) ?? []) {
304
+ const rect = rangeRect(r);
305
+ if (rect) rects.push(rect);
306
+ }
307
+ const active = rangeRect(ctx.selectionRange);
308
+ if (active) rects.push(active);
309
+ return rects;
310
+ }
311
+
312
+ function setSelection(rowIndex: number, colIndex: number, additive = false) {
313
+ if (!ctx.enableCellSelectionEffective) return;
314
+ if (additive) {
315
+ // Commit the current active range (if any) and start a fresh one, so the
316
+ // previous rectangle stays highlighted alongside the new Ctrl+drag.
317
+ const active = ctx.selectionRange as SelectionRange;
318
+ if (active.anchor && active.focus) {
319
+ ctx.selectionRanges = [...(ctx.selectionRanges as SelectionRange[]), active];
320
+ }
321
+ } else {
322
+ ctx.selectionRanges = [];
323
+ }
324
+ const point = { rowIndex, colIndex };
325
+ ctx.selectionRange = { anchor: point, focus: point };
326
+ }
327
+
328
+ function extendSelection(rowIndex: number, colIndex: number) {
329
+ if (!ctx.enableCellSelectionEffective) return;
330
+ const anchor = ctx.selectionRange.anchor ?? { rowIndex, colIndex };
331
+ ctx.selectionRange = { anchor, focus: { rowIndex, colIndex } };
332
+ }
333
+
334
+ function isCellInSelectedRange(rowIndex: number, colIndex: number) {
335
+ for (const rect of getSelectionRects()) {
336
+ if (
337
+ rowIndex >= rect.minRow &&
338
+ rowIndex <= rect.maxRow &&
339
+ colIndex >= rect.minCol &&
340
+ colIndex <= rect.maxCol
341
+ ) {
342
+ return true;
343
+ }
344
+ }
345
+ return false;
346
+ }
347
+
348
+ /**
349
+ * Returns which sides of a selection rectangle a cell sits on, for the
350
+ * Excel-style outline. With multiple ranges, the edges of the FIRST range
351
+ * that contains the cell are returned (active range checked last so its
352
+ * outline wins on overlap). Returns null when the cell is in no range.
353
+ */
354
+ function getCellRangeEdges(rowIndex: number, colIndex: number) {
355
+ for (const rect of getSelectionRects()) {
356
+ if (
357
+ rowIndex < rect.minRow ||
358
+ rowIndex > rect.maxRow ||
359
+ colIndex < rect.minCol ||
360
+ colIndex > rect.maxCol
361
+ ) {
362
+ continue;
363
+ }
364
+ return {
365
+ top: rowIndex === rect.minRow,
366
+ bottom: rowIndex === rect.maxRow,
367
+ left: colIndex === rect.minCol,
368
+ right: colIndex === rect.maxCol,
369
+ };
370
+ }
371
+ return null;
372
+ }
373
+
374
+ /** Returns true when the given cell is inside the fill-drag preview
375
+ * range BUT outside the original source range. Used to paint a
376
+ * dashed-outline preview while the user is dragging the handle. */
377
+ function isInFillPreview(rowIndex: number, colIndex: number) {
378
+ const d = ctx.fillDrag;
379
+ if (!d) return false;
380
+ const minR = Math.min(d.sourceMinRow, d.targetRow);
381
+ const maxR = Math.max(d.sourceMaxRow, d.targetRow);
382
+ const minC = Math.min(d.sourceMinCol, d.targetCol);
383
+ const maxC = Math.max(d.sourceMaxCol, d.targetCol);
384
+ if (
385
+ rowIndex < minR ||
386
+ rowIndex > maxR ||
387
+ colIndex < minC ||
388
+ colIndex > maxC
389
+ )
390
+ return false;
391
+ const inSource =
392
+ rowIndex >= d.sourceMinRow &&
393
+ rowIndex <= d.sourceMaxRow &&
394
+ colIndex >= d.sourceMinCol &&
395
+ colIndex <= d.sourceMaxCol;
396
+ return !inSource;
397
+ }
398
+
399
+ /**
400
+ * Which edges of the fill-drag rectangle a cell sits on, so the render can
401
+ * paint a single dashed marquee around the WHOLE target range (source +
402
+ * extension) - the Excel fill-handle look - instead of a thick per-cell
403
+ * border. Returns null when the cell isn't on the rectangle's boundary.
404
+ */
405
+ function fillMarqueeEdges(rowIndex: number, colIndex: number) {
406
+ const d = ctx.fillDrag;
407
+ if (!d) return null;
408
+ const minR = Math.min(d.sourceMinRow, d.targetRow);
409
+ const maxR = Math.max(d.sourceMaxRow, d.targetRow);
410
+ const minC = Math.min(d.sourceMinCol, d.targetCol);
411
+ const maxC = Math.max(d.sourceMaxCol, d.targetCol);
412
+ if (rowIndex < minR || rowIndex > maxR || colIndex < minC || colIndex > maxC) {
413
+ return null;
414
+ }
415
+ const top = rowIndex === minR;
416
+ const bottom = rowIndex === maxR;
417
+ const left = colIndex === minC;
418
+ const right = colIndex === maxC;
419
+ if (!top && !bottom && !left && !right) return null;
420
+ return { top, bottom, left, right };
421
+ }
422
+
423
+ /** Look up a column by id without depending on `buildApi`'s private
424
+ * closure (those helpers don't exist at this scope). */
425
+ function findColumnById(columnId: string) {
426
+ return ctx.allColumns.find((c: any) => c.id === columnId);
427
+ }
428
+
429
+ function onCellPointerDown(
430
+ rowIndex: number,
431
+ colIndex: number,
432
+ event: PointerEvent,
433
+ ) {
434
+ if (event.button !== 0) return;
435
+ const row = ctx.allRows[rowIndex];
436
+ const column = ctx.allColumns[colIndex];
437
+ if (!row || !column || isGroupRow(row)) return;
438
+ // NOTE: we no longer bail for checkbox columns. Bailing here meant a
439
+ // range drag could never START on a checkbox cell. A plain click still
440
+ // toggles the checkbox via onCellClick (a same-cell click), while a
441
+ // cross-cell drag fires its `click` on a common ancestor - not the cell -
442
+ // so it selects a range without toggling.
443
+
444
+ const active = ctx.grid.getState().activeCell;
445
+ ctx.activeAtPointerDown = active
446
+ ? { rowIndex: active.rowIndex, colIndex: active.colIndex }
447
+ : null;
448
+ if (event.shiftKey) {
449
+ extendSelection(rowIndex, colIndex);
450
+ setActiveCell(rowIndex, colIndex);
451
+ } else {
452
+ setActiveCell(rowIndex, colIndex);
453
+ // Ctrl/Cmd starts an ADDITIONAL range, keeping prior ranges highlighted.
454
+ setSelection(rowIndex, colIndex, event.ctrlKey || event.metaKey);
455
+ // Range drag-select is a mouse/pen affordance. On touch, starting a drag
456
+ // here would rubber-band a selection AND fight the browser's native
457
+ // scroll (we never preventDefault), so a finger-drag to scroll the grid
458
+ // instead selected cells. Tap still selects the single cell above; we
459
+ // just don't enter drag-select mode for touch. (issue #23)
460
+ if (event.pointerType !== "touch") ctx.isDraggingSelection = true;
461
+ }
462
+ }
463
+
464
+ function onCellPointerEnter(rowIndex: number, colIndex: number) {
465
+ if (!ctx.isDraggingSelection) return;
466
+ const row = ctx.allRows[rowIndex];
467
+ if (!row || isGroupRow(row)) return;
468
+ extendSelection(rowIndex, colIndex);
469
+ setActiveCell(rowIndex, colIndex);
470
+ }
471
+
472
+ function endDragSelection() {
473
+ ctx.isDraggingSelection = false;
474
+ // Also commit a fill-handle drag if one was in progress - the user
475
+ // released the mouse, time to apply the pattern.
476
+ if (ctx.fillDrag) ctx.onFillPointerUp();
477
+ }
478
+
479
+ function onWindowPointerMove(event: PointerEvent) {
480
+ if (ctx.fillDrag) {
481
+ ctx.onFillPointerMove(event);
482
+ return;
483
+ }
484
+ if (!ctx.isDraggingSelection) return;
485
+ // Safety: if no mouse button is held the drag is over (we may have
486
+ // missed pointerup because the user lifted outside the window).
487
+ if (event.buttons === 0) {
488
+ endDragSelection();
489
+ }
490
+ }
491
+
492
+ function onCellClick(rowIndex: number, colIndex: number) {
493
+ const row = ctx.allRows[rowIndex];
494
+ const column = ctx.allColumns[colIndex];
495
+ if (!row || !column) return;
496
+
497
+ ctx.gridRootEl?.focus({ preventScroll: true });
498
+
499
+ if (isGroupRow(row)) {
500
+ setActiveCell(rowIndex, colIndex);
501
+ row.toggleExpanded?.();
502
+ return;
503
+ }
504
+
505
+ const baseValue = getColumnBaseValue(row, column);
506
+ const cellValue = ctx.getCellDisplayValue(row.id, column.id, baseValue);
507
+
508
+ // Emit the public click events for data cells/rows (before any
509
+ // checkbox-toggle / edit-entry side effects below).
510
+ ctx.props.onCellClick?.({
511
+ rowIndex,
512
+ colIndex,
513
+ columnId: column.id,
514
+ value: cellValue,
515
+ row: row.original as TData,
516
+ });
517
+ ctx.props.onRowClick?.({
518
+ rowIndex,
519
+ columnId: column.id,
520
+ row: row.original as TData,
521
+ });
522
+
523
+ const isCheckboxColumn =
524
+ column.columnDef.editorType === "checkbox" ||
525
+ typeof cellValue === "boolean";
526
+
527
+ if (isCheckboxColumn) {
528
+ ctx.toggleBooleanCell(rowIndex, colIndex);
529
+ setActiveCell(rowIndex, colIndex);
530
+ setSelection(rowIndex, colIndex);
531
+ ctx.editingCell = null;
532
+ return;
533
+ }
534
+
535
+ // onCellPointerDown already set active+selection for data cells. Only
536
+ // decide whether to enter edit mode (click on the previously-active cell).
537
+ const wasActive =
538
+ ctx.activeAtPointerDown !== null &&
539
+ ctx.activeAtPointerDown.rowIndex === rowIndex &&
540
+ ctx.activeAtPointerDown.colIndex === colIndex;
541
+ if (wasActive && ctx.editingEnabled) {
542
+ ctx.onCellDoubleClick(rowIndex, colIndex);
543
+ return;
544
+ }
545
+ ctx.editingCell = null;
546
+ }
547
+
548
+ /**
549
+ * Real double-click handler wired to the cell `ondblclick`. Emits the
550
+ * public double-click events (independent of editability) and then runs
551
+ * the edit-entry logic. Kept separate from `onCellDoubleClick` so the
552
+ * single-click-to-edit path in `onCellClick` does NOT emit a dblclick.
553
+ */
554
+ function emitCellDoubleClick(rowIndex: number, colIndex: number) {
555
+ const row = ctx.allRows[rowIndex];
556
+ const column = ctx.allColumns[colIndex];
557
+ if (row && column && !isGroupRow(row)) {
558
+ const value = ctx.getCellDisplayValue(
559
+ row.id,
560
+ column.id,
561
+ getColumnBaseValue(row, column),
562
+ );
563
+ ctx.props.onCellDoubleClick?.({
564
+ rowIndex,
565
+ colIndex,
566
+ columnId: column.id,
567
+ value,
568
+ row: row.original as TData,
569
+ });
570
+ ctx.props.onRowDoubleClick?.({
571
+ rowIndex,
572
+ columnId: column.id,
573
+ row: row.original as TData,
574
+ });
575
+ }
576
+ ctx.onCellDoubleClick(rowIndex, colIndex);
577
+ }
578
+
579
+ return {
580
+ isRowSelected,
581
+ toggleRowSelectionById,
582
+ toggleSelectAllRows,
583
+ setActiveCell,
584
+ scrollActiveCellIntoView,
585
+ setSelection,
586
+ extendSelection,
587
+ isCellInSelectedRange,
588
+ getCellRangeEdges,
589
+ fillMarqueeEdges,
590
+ getSelectionRects,
591
+ isInFillPreview,
592
+ findColumnById,
593
+ onCellPointerDown,
594
+ onCellPointerEnter,
595
+ endDragSelection,
596
+ onWindowPointerMove,
597
+ onCellClick,
598
+ emitCellDoubleClick,
599
+ };
600
+ }