@svgrid/grid 2.2.25 → 2.2.27

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 (218) hide show
  1. package/README.md +199 -145
  2. package/dist/FlexRender.svelte +96 -96
  3. package/dist/GridFooter.svelte +179 -179
  4. package/dist/GridMenus.svelte +734 -728
  5. package/dist/SvAutoComplete.svelte +165 -165
  6. package/dist/SvCalendar.svelte +503 -503
  7. package/dist/SvCarousel.svelte +141 -141
  8. package/dist/SvCheckBox.svelte +101 -101
  9. package/dist/SvColorInput.svelte +181 -181
  10. package/dist/SvComboBox.svelte +275 -275
  11. package/dist/SvContextMenu.svelte +116 -116
  12. package/dist/SvCountryInput.svelte +160 -160
  13. package/dist/SvDrawer.svelte +250 -250
  14. package/dist/SvDropDownList.svelte +374 -374
  15. package/dist/SvDurationInput.svelte +126 -126
  16. package/dist/SvField.svelte +293 -293
  17. package/dist/SvForm.svelte +437 -437
  18. package/dist/SvGrid.css +2723 -2719
  19. package/dist/SvGrid.svelte +3333 -3333
  20. package/dist/SvGridChart.svelte +1724 -1724
  21. package/dist/SvGridChartPanel.svelte +485 -485
  22. package/dist/SvGridChartView.svelte +70 -70
  23. package/dist/SvGridDropdown.svelte +696 -696
  24. package/dist/SvGridSelect.svelte +259 -259
  25. package/dist/SvGroupCell.svelte +109 -109
  26. package/dist/SvListBox.svelte +287 -287
  27. package/dist/SvMaskedInput.svelte +122 -122
  28. package/dist/SvMenu.svelte +124 -124
  29. package/dist/SvMenuList.svelte +146 -146
  30. package/dist/SvMultiSelect.svelte +281 -281
  31. package/dist/SvNumberInput.svelte +168 -168
  32. package/dist/SvOtpInput.svelte +158 -158
  33. package/dist/SvPasswordInput.svelte +151 -151
  34. package/dist/SvPhoneInput.svelte +131 -131
  35. package/dist/SvPopover.svelte +197 -197
  36. package/dist/SvRadioGroup.svelte +107 -107
  37. package/dist/SvRowGroupPanel.svelte +170 -170
  38. package/dist/SvScrollArea.svelte +61 -61
  39. package/dist/SvSlider.svelte +200 -200
  40. package/dist/SvSwitchButton.svelte +107 -107
  41. package/dist/SvTagsInput.svelte +112 -112
  42. package/dist/SvTextInput.svelte +147 -147
  43. package/dist/SvTimePicker.svelte +245 -245
  44. package/dist/SvToaster.svelte +159 -159
  45. package/dist/SvToggleButton.svelte +85 -85
  46. package/dist/SvTooltip.svelte +161 -161
  47. package/dist/SvTour.svelte +204 -204
  48. package/dist/SvTree.svelte +437 -437
  49. package/dist/SvTreeSelect.svelte +233 -233
  50. package/dist/a11y/dismissable.d.ts +11 -0
  51. package/dist/a11y/dismissable.js +21 -0
  52. package/dist/ai.js +3 -3
  53. package/dist/cdn/GridMenus-BzxEYNtW.js +421 -0
  54. package/dist/cdn/GridMenus-Dr-nGEXn.js +417 -0
  55. package/dist/cdn/{SvDateTimePicker-CYC7gRER.js → SvDateTimePicker-B1sDc9Pz.js} +451 -444
  56. package/dist/cdn/{SvDateTimePicker-DtQKd4Ns.js → SvDateTimePicker-Bh0FTs1E.js} +114 -107
  57. package/dist/cdn/{SvGridChart-BhnFdLd0.js → SvGridChart-BKQsO5fZ.js} +1 -1
  58. package/dist/cdn/{SvGridChart-BcLCYvw9.js → SvGridChart-Bgk4hDs8.js} +1 -1
  59. package/dist/cdn/{SvGridChartPanel-DvjwxLvK.js → SvGridChartPanel-DSkHIQDd.js} +1 -1
  60. package/dist/cdn/{SvGridChartPanel-Cmx9DHAS.js → SvGridChartPanel-DkCc2Z7b.js} +1 -1
  61. package/dist/cdn/{SvGridChartView-B40DTJSX.js → SvGridChartView-BrbVaELm.js} +1 -1
  62. package/dist/cdn/{SvGridChartView-PwqI4s02.js → SvGridChartView-i9rWvSKg.js} +1 -1
  63. package/dist/cdn/{SvGridDropdown-hpnHvOGt.js → SvGridDropdown-CGxxopQ4.js} +1 -1
  64. package/dist/cdn/{SvGridDropdown-DjALc_4f.js → SvGridDropdown-D08sVmAy.js} +1 -1
  65. package/dist/cdn/{src-DysW9qbk.js → src-Cw8d9U8j.js} +5753 -5753
  66. package/dist/cdn/{src-bYfr_7aR.js → src-cgs1wcUS.js} +8102 -8102
  67. package/dist/cdn/svgrid.js +9 -9
  68. package/dist/cdn/svgrid.svelte-external.js +9 -9
  69. package/dist/chart-export.js +8 -8
  70. package/dist/index.d.ts +1 -1
  71. package/dist/index.js +1 -1
  72. package/package.json +30 -13
  73. package/src/FlexRender.svelte +96 -96
  74. package/src/GridFooter.svelte +179 -179
  75. package/src/GridMenus.svelte +734 -728
  76. package/src/SvAutoComplete.svelte +165 -165
  77. package/src/SvCalendar.svelte +503 -503
  78. package/src/SvCalendar.test.ts +226 -226
  79. package/src/SvCarousel.svelte +141 -141
  80. package/src/SvCheckBox.svelte +101 -101
  81. package/src/SvColorInput.svelte +181 -181
  82. package/src/SvComboBox.svelte +275 -275
  83. package/src/SvContextMenu.svelte +116 -116
  84. package/src/SvCountryInput.svelte +160 -160
  85. package/src/SvDrawer.svelte +250 -250
  86. package/src/SvDropDownList.svelte +374 -374
  87. package/src/SvDurationInput.svelte +126 -126
  88. package/src/SvField.svelte +293 -293
  89. package/src/SvForm.svelte +437 -437
  90. package/src/SvForm.test.ts +411 -411
  91. package/src/SvGrid.controller.svelte.ts +3239 -3239
  92. package/src/SvGrid.css +2723 -2719
  93. package/src/SvGrid.svelte +3333 -3333
  94. package/src/SvGrid.types.ts +1613 -1613
  95. package/src/SvGridChart.svelte +1724 -1724
  96. package/src/SvGridChartPanel.svelte +485 -485
  97. package/src/SvGridChartView.svelte +70 -70
  98. package/src/SvGridDropdown.svelte +696 -696
  99. package/src/SvGridSelect.svelte +259 -259
  100. package/src/SvGroupCell.svelte +109 -109
  101. package/src/SvListBox.svelte +287 -287
  102. package/src/SvMaskedInput.svelte +122 -122
  103. package/src/SvMenu.svelte +124 -124
  104. package/src/SvMenu.test.ts +97 -97
  105. package/src/SvMenuList.svelte +146 -146
  106. package/src/SvMultiSelect.svelte +281 -281
  107. package/src/SvNumberInput.svelte +168 -168
  108. package/src/SvOtpInput.svelte +158 -158
  109. package/src/SvPasswordInput.svelte +151 -151
  110. package/src/SvPhoneInput.svelte +131 -131
  111. package/src/SvPopover.svelte +197 -197
  112. package/src/SvRadioGroup.svelte +107 -107
  113. package/src/SvRowGroupPanel.svelte +170 -170
  114. package/src/SvScrollArea.svelte +61 -61
  115. package/src/SvSlider.svelte +200 -200
  116. package/src/SvSwitchButton.svelte +107 -107
  117. package/src/SvTagsInput.svelte +112 -112
  118. package/src/SvTextInput.svelte +147 -147
  119. package/src/SvTimePicker.svelte +245 -245
  120. package/src/SvToaster.svelte +159 -159
  121. package/src/SvToaster.test.ts +95 -95
  122. package/src/SvToggleButton.svelte +85 -85
  123. package/src/SvTooltip.svelte +161 -161
  124. package/src/SvTour.svelte +204 -204
  125. package/src/SvTree.svelte +437 -437
  126. package/src/SvTreeSelect.svelte +233 -233
  127. package/src/a11y/dismissable.test.ts +119 -95
  128. package/src/a11y/dismissable.ts +114 -94
  129. package/src/a11y.contract.test.ts +49 -49
  130. package/src/a11y.test.ts +59 -59
  131. package/src/a11y.ts +61 -61
  132. package/src/ai.test.ts +502 -502
  133. package/src/ai.ts +1391 -1391
  134. package/src/build-api.coverage.test.ts +633 -633
  135. package/src/build-api.ts +895 -895
  136. package/src/builtin-editors.grid.test.ts +85 -85
  137. package/src/cell-formatting.ts +169 -169
  138. package/src/cell-render.ts +469 -469
  139. package/src/chart-export.ts +201 -201
  140. package/src/chart-view.svelte.ts +36 -36
  141. package/src/chart.ts +2296 -2296
  142. package/src/collaboration.test.ts +104 -104
  143. package/src/collaboration.ts +167 -167
  144. package/src/core.performance.test.ts +30 -30
  145. package/src/core.ts +1111 -1111
  146. package/src/createAutocomplete.svelte.ts +132 -132
  147. package/src/createCombobox.svelte.ts +191 -191
  148. package/src/createCountryInput.svelte.ts +157 -157
  149. package/src/createDropdownList.svelte.ts +168 -168
  150. package/src/createForm.svelte.ts +386 -386
  151. package/src/createGrid.svelte.ts +42 -42
  152. package/src/createGrid.test.ts +10 -10
  153. package/src/createGridState.svelte.ts +17 -17
  154. package/src/createMenu.svelte.ts +225 -225
  155. package/src/createPopoverSelect.svelte.ts +213 -213
  156. package/src/createSlider.svelte.ts +191 -191
  157. package/src/createTooltip.svelte.ts +144 -144
  158. package/src/createTree.svelte.ts +319 -319
  159. package/src/editing.test.ts +859 -859
  160. package/src/editing.ts +675 -675
  161. package/src/editor-contract.ts +157 -157
  162. package/src/export-data-api.test.ts +126 -126
  163. package/src/export-format.test.ts +107 -107
  164. package/src/export-format.ts +598 -598
  165. package/src/filter-operators.ts +157 -157
  166. package/src/flex-render.ts +3 -3
  167. package/src/form-field.ts +127 -127
  168. package/src/index.ts +713 -712
  169. package/src/js-scroller.svelte.ts +173 -173
  170. package/src/keyboard.test.ts +59 -59
  171. package/src/keyboard.ts +97 -97
  172. package/src/list-nav.test.ts +49 -49
  173. package/src/list-nav.ts +29 -29
  174. package/src/list-option.test.ts +56 -56
  175. package/src/list-option.ts +172 -172
  176. package/src/menus.test.ts +700 -700
  177. package/src/menus.ts +652 -652
  178. package/src/merge-objects.ts +48 -48
  179. package/src/overlays.test.ts +90 -90
  180. package/src/render-component.ts +28 -28
  181. package/src/scheduler-model.test.ts +562 -562
  182. package/src/scheduler-model.ts +872 -872
  183. package/src/selection.test.ts +754 -754
  184. package/src/selection.ts +600 -600
  185. package/src/server-data-source.test.ts +289 -289
  186. package/src/server-data-source.ts +413 -413
  187. package/src/sparkline.test.ts +68 -68
  188. package/src/sparkline.ts +169 -169
  189. package/src/spreadsheet.test.ts +489 -489
  190. package/src/spreadsheet.ts +312 -312
  191. package/src/static-functions.ts +11 -11
  192. package/src/subscribe.ts +38 -38
  193. package/src/svgrid-wrapper.types.ts +524 -524
  194. package/src/svgrid.behavior.test.ts +706 -706
  195. package/src/svgrid.charting.test.ts +534 -534
  196. package/src/svgrid.features.test.ts +157 -157
  197. package/src/svgrid.filter-menu-scroll.test.ts +102 -0
  198. package/src/svgrid.new-features.wrapper.test.ts +251 -251
  199. package/src/svgrid.wrapper.test.ts +40 -40
  200. package/src/test-setup.ts +62 -62
  201. package/src/themes/index.ts +215 -215
  202. package/src/toast-store.svelte.ts +246 -246
  203. package/src/toast-store.test.ts +147 -147
  204. package/src/ui-buttons.test.ts +144 -144
  205. package/src/ui-inputs.test.ts +118 -118
  206. package/src/ui-range.test.ts +70 -70
  207. package/src/ui-selection.test.ts +155 -155
  208. package/src/ui-tier1.test.ts +142 -142
  209. package/src/virtual.test.ts +88 -88
  210. package/src/virtualization/column-virtualizer.test.ts +27 -27
  211. package/src/virtualization/column-virtualizer.ts +30 -30
  212. package/src/virtualization/svelte-virtualizer.svelte.ts +26 -26
  213. package/src/virtualization/types.ts +30 -30
  214. package/src/virtualization/virtualizer.test.ts +47 -47
  215. package/src/virtualization/virtualizer.ts +296 -296
  216. package/themes/ember.css +71 -71
  217. package/dist/cdn/GridMenus-GfCAHgkZ.js +0 -420
  218. package/dist/cdn/GridMenus-GiVNSeDU.js +0 -416
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
+ }