@svgrid/grid 2.2.26 → 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
@@ -1,534 +1,534 @@
1
- /**
2
- * Built-in integrated charting (`charting` prop on <SvGrid>): the docked chart
3
- * panel, its live derivation from displayed rows + selection, and the
4
- * chart-click -> grid cross-filter loop.
5
- */
6
- import { describe, expect, it } from 'vitest'
7
- import { mount, unmount } from 'svelte'
8
- import SvGrid from './SvGrid.svelte'
9
- import {
10
- columnFilteringFeature,
11
- createCoreRowModel,
12
- createFilteredRowModel,
13
- createSortedRowModel,
14
- rowSelectionFeature,
15
- rowSortingFeature,
16
- sortFns,
17
- tableFeatures,
18
- chartSpecToCsv,
19
- formatChartValue,
20
- buildChart,
21
- } from './index'
22
- import type { ColumnDef, SvGridApi } from './index'
23
-
24
- type Person = { id: number; name: string; team: string; age: number; salary: number }
25
-
26
- const features = tableFeatures({ columnFilteringFeature, rowSelectionFeature, rowSortingFeature })
27
-
28
- const people: Person[] = [
29
- { id: 1, name: 'Ada', team: 'Research', age: 38, salary: 120 },
30
- { id: 2, name: 'Grace', team: 'Compilers', age: 42, salary: 150 },
31
- { id: 3, name: 'Alan', team: 'Research', age: 41, salary: 130 },
32
- { id: 4, name: 'Margaret', team: 'Apollo', age: 35, salary: 160 },
33
- { id: 5, name: 'Linus', team: 'Kernel', age: 54, salary: 175 },
34
- { id: 6, name: 'Donald', team: 'Research', age: 86, salary: 110 },
35
- ]
36
-
37
- const columns: ColumnDef<typeof features, Person>[] = [
38
- { field: 'name', header: 'Name', width: 160 },
39
- { field: 'team', header: 'Team', width: 160 },
40
- { field: 'age', header: 'Age', width: 100, cellDataType: 'number' },
41
- { field: 'salary', header: 'Salary', width: 100, cellDataType: 'number' },
42
- ]
43
-
44
- type MountResult = { api: SvGridApi<typeof features, Person>; target: HTMLElement; destroy: () => void }
45
-
46
- function mountGrid(overrides: Record<string, unknown> = {}): Promise<MountResult> {
47
- return new Promise((resolve, reject) => {
48
- const target = document.createElement('div')
49
- target.style.width = '1000px'
50
- target.style.height = '600px'
51
- document.body.appendChild(target)
52
- const app = mount(SvGrid, {
53
- target,
54
- props: {
55
- data: people,
56
- columns,
57
- features,
58
- _rowModels: {
59
- coreRowModel: createCoreRowModel(),
60
- filteredRowModel: createFilteredRowModel(),
61
- sortedRowModel: createSortedRowModel(sortFns),
62
- },
63
- rowHeight: 36,
64
- containerHeight: 480,
65
- virtualization: false,
66
- onApiReady(api: SvGridApi<typeof features, Person>) {
67
- resolve({ api, target, destroy: () => { unmount(app); target.remove() } })
68
- },
69
- ...overrides,
70
- } as any,
71
- })
72
- queueMicrotask(() => reject(new Error('onApiReady never fired')))
73
- })
74
- }
75
-
76
- // A macrotask boundary: drains all pending microtasks (Svelte effects, the chart
77
- // panel's lazy import() + its .then, and the follow-up flush) so the docked panel
78
- // is mounted before assertions. The panel is loaded lazily as its own chunk.
79
- const tick = () => new Promise((r) => setTimeout(r))
80
-
81
- describe('SvGrid built-in charting', () => {
82
- it('derives a chart spec from all displayed rows (default dimension + measure)', async () => {
83
- const { api, destroy } = await mountGrid({ charting: true })
84
- await tick() // the chart engine loads lazily; ready a tick after mount
85
- try {
86
- const spec = api.getChartSpec()
87
- expect(spec).not.toBeNull()
88
- expect(spec!.type).toBe('bar')
89
- // Default dimension is the first text column (name), one category per row.
90
- expect(spec!.categories.length).toBe(people.length)
91
- } finally {
92
- destroy()
93
- }
94
- })
95
-
96
- it('re-derives the chart when the grid is filtered (auto-refresh)', async () => {
97
- const { api, destroy } = await mountGrid({ charting: true })
98
- try {
99
- // Filter to the Research team (3 people) via the same facet-filter state
100
- // the chart's own cross-filter writes.
101
- api.setFacetFilter('team', ['Research'])
102
- await tick()
103
- const spec = api.getChartSpec()
104
- expect(spec!.categories.length).toBe(3)
105
- } finally {
106
- destroy()
107
- }
108
- })
109
-
110
- it('scopes the chart to the selected cell range', async () => {
111
- const { api, destroy } = await mountGrid({ charting: true })
112
- try {
113
- // Select the first two rows across all columns.
114
- api.selectCells([[0, 0, 1, 2]])
115
- await tick()
116
- const spec = api.getChartSpec()
117
- expect(spec!.categories.length).toBe(2)
118
- } finally {
119
- destroy()
120
- }
121
- })
122
-
123
- it('renders the docked panel with an <svg> when open', async () => {
124
- const { target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
125
- try {
126
- await tick()
127
- const panel = target.querySelector('.sv-grid-chart-panel')
128
- expect(panel).toBeTruthy()
129
- expect(panel!.querySelector('svg')).toBeTruthy()
130
- } finally {
131
- destroy()
132
- }
133
- })
134
-
135
- it('pops the docked panel out into a floating window, maximizes, and docks back', async () => {
136
- const { target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
137
- try {
138
- await tick()
139
- const panel = () => target.querySelector('.sv-grid-chart-panel')!
140
- const click = (label: string) => {
141
- const btn = target.querySelector<HTMLButtonElement>(`[aria-label="${label}"]`)
142
- expect(btn).toBeTruthy()
143
- btn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
144
- }
145
- // Starts docked.
146
- expect(panel().classList.contains('is-floating')).toBe(false)
147
- // Pop out -> floating window.
148
- click('Pop out chart')
149
- await tick()
150
- expect(panel().classList.contains('is-floating')).toBe(true)
151
- // Maximize -> fills the grid.
152
- click('Maximize')
153
- await tick()
154
- expect(panel().classList.contains('is-maximized')).toBe(true)
155
- // Dock back -> re-docked, not floating, not maximized.
156
- click('Dock chart')
157
- await tick()
158
- expect(panel().classList.contains('is-floating')).toBe(false)
159
- expect(panel().classList.contains('is-maximized')).toBe(false)
160
- } finally {
161
- destroy()
162
- }
163
- })
164
-
165
- it('adds a second chart, shows a tab strip, and persists both charts in view state', async () => {
166
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
167
- try {
168
- await tick()
169
- // One chart, no tab strip yet.
170
- expect(target.querySelectorAll('.sv-grid-chart-tab').length).toBe(0)
171
- // Add a chart.
172
- const add = target.querySelector<HTMLButtonElement>('[aria-label="Add chart"]')
173
- expect(add).toBeTruthy()
174
- add!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
175
- await tick()
176
- // Now two tabs; the second is active.
177
- const tabs = target.querySelectorAll('.sv-grid-chart-tab')
178
- expect(tabs.length).toBe(2)
179
- expect(tabs[1]!.classList.contains('is-active')).toBe(true)
180
- // View state carries both charts + the active index.
181
- const state = api.getState() as any
182
- expect(state.charts.length).toBe(2)
183
- expect(state.chartActive).toBe(1)
184
- // Removing a chart drops back to a single chart (tab strip disappears).
185
- target.querySelector<HTMLButtonElement>('.sv-grid-chart-tab.is-active .sv-grid-chart-tab-x')!
186
- .dispatchEvent(new MouseEvent('click', { bubbles: true }))
187
- await tick()
188
- expect(target.querySelectorAll('.sv-grid-chart-tab').length).toBe(0)
189
- expect((api.getState() as any).charts.length).toBe(1)
190
- } finally {
191
- destroy()
192
- }
193
- })
194
-
195
- it('keeps each chart\'s own type when switching tabs', async () => {
196
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
197
- try {
198
- await tick()
199
- // Chart 1 -> line.
200
- const typeSel = () => target.querySelector<HTMLSelectElement>('.sv-grid-chart-controls select')!
201
- typeSel().value = 'line'
202
- typeSel().dispatchEvent(new Event('change', { bubbles: true }))
203
- await tick()
204
- expect(api.getChartSpec()!.type).toBe('line')
205
- // Add Chart 2 (defaults to bar).
206
- target.querySelector<HTMLButtonElement>('[aria-label="Add chart"]')!
207
- .dispatchEvent(new MouseEvent('click', { bubbles: true }))
208
- await tick()
209
- expect(api.getChartSpec()!.type).toBe('bar')
210
- // Switch back to Chart 1 -> still line.
211
- target.querySelectorAll<HTMLButtonElement>('.sv-grid-chart-tab-label')[0]!
212
- .dispatchEvent(new MouseEvent('click', { bubbles: true }))
213
- await tick()
214
- expect(api.getChartSpec()!.type).toBe('line')
215
- } finally {
216
- destroy()
217
- }
218
- })
219
-
220
- it('configureChart applies a config to the active chart (resolving field names)', async () => {
221
- const { api, destroy } = await mountGrid({ charting: { defaultOpen: true } })
222
- try {
223
- api.configureChart({ type: 'line', dimension: 'team', measure: 'salary', reduce: 'avg' })
224
- await tick()
225
- const spec = api.getChartSpec()
226
- expect(spec!.type).toBe('line')
227
- // salary aggregated by team -> one category per distinct team.
228
- expect(spec!.categories.length).toBeGreaterThan(0)
229
- } finally {
230
- destroy()
231
- }
232
- })
233
-
234
- it('shows an AI button only when a chart-AI handler is registered, and applies its result', async () => {
235
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
236
- try {
237
- await tick()
238
- // No handler -> no AI button.
239
- expect(target.querySelector('[aria-label="Chart with AI"]')).toBeFalsy()
240
- // Register a deterministic handler (stands in for enterprise's aiChart).
241
- api.setChartAiHandler(async () => ({
242
- type: 'line',
243
- dimension: 'team',
244
- series: null,
245
- measure: 'salary',
246
- reduce: 'avg',
247
- stacked: false,
248
- rationale: 'line of avg salary by team',
249
- }))
250
- await tick()
251
- const aiBtn = target.querySelector<HTMLButtonElement>('[aria-label="Chart with AI"]')
252
- expect(aiBtn).toBeTruthy()
253
- // Open the prompt row, type a query, submit.
254
- aiBtn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
255
- await tick()
256
- const input = target.querySelector<HTMLInputElement>('.sv-grid-chart-ai-input')!
257
- input.value = 'average salary by team as a line'
258
- input.dispatchEvent(new Event('input', { bubbles: true }))
259
- const form = target.querySelector<HTMLFormElement>('.sv-grid-chart-ai-row')!
260
- form.dispatchEvent(new Event('submit', { bubbles: true, cancelable: true }))
261
- // Let the async handler resolve.
262
- await new Promise((r) => setTimeout(r, 0))
263
- await tick()
264
- expect(api.getChartSpec()!.type).toBe('line')
265
- } finally {
266
- destroy()
267
- }
268
- })
269
-
270
- it('toggles a logarithmic value axis (configureChart + panel toggle present)', async () => {
271
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
272
- try {
273
- api.configureChart({ dimension: 'team', measure: 'salary' })
274
- await tick()
275
- expect(api.getChartSpec()!.yScale).not.toBe('log')
276
- api.configureChart({ logScale: true })
277
- await tick()
278
- expect(api.getChartSpec()!.yScale).toBe('log')
279
- const labels = [...target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
280
- expect(labels).toContain('Log scale')
281
- } finally {
282
- destroy()
283
- }
284
- })
285
-
286
- it('offers a date axis only when the group-by column is date-like', async () => {
287
- // Non-date dimension -> no Date axis toggle.
288
- const a = await mountGrid({ charting: { defaultOpen: true } })
289
- try {
290
- await tick()
291
- const labels = [...a.target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
292
- expect(labels).not.toContain('Date axis')
293
- } finally {
294
- a.destroy()
295
- }
296
- // Date dimension -> Date axis toggle appears and drives xType: 'time'.
297
- const dateColumns = [
298
- { field: 'day', header: 'Day', width: 120, cellDataType: 'date' },
299
- { field: 'channel', header: 'Channel', width: 120 },
300
- { field: 'signups', header: 'Signups', width: 100, cellDataType: 'number' },
301
- ]
302
- const dateData = [
303
- { id: 1, day: '2026-01-01', channel: 'Organic', signups: 10 },
304
- { id: 2, day: '2026-01-02', channel: 'Organic', signups: 20 },
305
- { id: 3, day: '2026-01-03', channel: 'Paid', signups: 30 },
306
- ]
307
- const b = await mountGrid({
308
- data: dateData,
309
- columns: dateColumns,
310
- charting: { defaultOpen: true, dimension: 'day', measures: 'signups' },
311
- })
312
- try {
313
- await tick()
314
- const labels = [...b.target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
315
- expect(labels).toContain('Date axis')
316
- b.api.configureChart({ timeAxis: true })
317
- await tick()
318
- expect(b.api.getChartSpec()!.xType).toBe('time')
319
- } finally {
320
- b.destroy()
321
- }
322
- })
323
-
324
- it('serializes chart data to CSV and shows an Export menu (PNG/SVG/CSV/Copy)', async () => {
325
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
326
- try {
327
- api.configureChart({ dimension: 'team', series: 'name', measure: 'salary' })
328
- await tick()
329
- const csv = chartSpecToCsv(api.getChartSpec()!)
330
- const [header, ...rows] = csv.split('\n')
331
- expect(header.startsWith('Category,')).toBe(true)
332
- expect(rows.length).toBeGreaterThan(0)
333
- // Export button + menu.
334
- const btn = target.querySelector<HTMLButtonElement>('[aria-label="Export chart"]')
335
- expect(btn).toBeTruthy()
336
- btn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
337
- await tick()
338
- const items = [...target.querySelectorAll('.sv-grid-chart-export-menu button')].map((b) => b.textContent)
339
- expect(items).toEqual(['PNG image', 'SVG vector', 'CSV data', 'Copy to clipboard'])
340
- } finally {
341
- destroy()
342
- }
343
- })
344
-
345
- it('buildChart emits a grouped category-axis tier from categoryGroups', () => {
346
- const geo = buildChart({
347
- type: 'bar',
348
- categories: ['USA', 'Canada', 'Japan', 'India'],
349
- series: [{ label: 'Rev', values: [10, 20, 30, 40] }],
350
- categoryGroups: [{ label: 'Americas', span: 2 }, { label: 'APAC', span: 2 }],
351
- })
352
- expect(geo.categoryGroupTicks.map((g) => g.label)).toEqual(['Americas', 'APAC'])
353
- // Groups tile the axis edge-to-edge (first group's right = second's left).
354
- expect(geo.categoryGroupTicks[0]!.x1).toBe(geo.categoryGroupTicks[1]!.x0)
355
- // Ignored when the spans don't cover every leaf.
356
- const bad = buildChart({
357
- type: 'bar',
358
- categories: ['A', 'B', 'C'],
359
- series: [{ label: 'x', values: [1, 2, 3] }],
360
- categoryGroups: [{ label: 'G', span: 2 }],
361
- })
362
- expect(bad.categoryGroupTicks.length).toBe(0)
363
- })
364
-
365
- it('formatChartValue renders currency / percent / compact', () => {
366
- expect(formatChartValue(1500, 'currency')).toBe('$1.5k')
367
- expect(formatChartValue(-2_000_000, 'currency')).toBe('-$2M')
368
- expect(formatChartValue(0.25, 'percent')).toBe('25%')
369
- expect(formatChartValue(1500)).toBe('1.5k')
370
- expect(formatChartValue(1500, 'number')).toBe('1.5k')
371
- })
372
-
373
- it('applies a value format and an auto y-axis title to the spec', async () => {
374
- const { api, destroy } = await mountGrid({ charting: { defaultOpen: true } })
375
- try {
376
- api.configureChart({ dimension: 'team', measure: 'salary', reduce: 'sum', valueFormat: 'currency' })
377
- await tick()
378
- const spec = api.getChartSpec()!
379
- expect(spec.valueFormat).toBe('currency')
380
- expect(spec.yAxisTitle).toBe('Sum of Salary')
381
- } finally {
382
- destroy()
383
- }
384
- })
385
-
386
- it('defaults the value format from the measure column format', async () => {
387
- const cols = [
388
- { field: 'team', header: 'Team', width: 120 },
389
- { field: 'salary', header: 'Salary', width: 120, cellDataType: 'number', format: { type: 'currency', currency: 'USD' } },
390
- ]
391
- const { api, destroy } = await mountGrid({
392
- columns: cols,
393
- charting: { defaultOpen: true, dimension: 'team', measures: 'salary' },
394
- })
395
- try {
396
- await tick()
397
- expect(api.getChartSpec()!.valueFormat).toBe('currency')
398
- } finally {
399
- destroy()
400
- }
401
- })
402
-
403
- it('splits into one series per distinct value of the `series` field', async () => {
404
- const { api, destroy } = await mountGrid({ charting: { dimension: 'team', series: 'name', measures: 'age' } })
405
- await tick() // the chart engine loads lazily; ready a tick after mount
406
- try {
407
- const spec = api.getChartSpec()
408
- // categories = distinct teams (4); one series per distinct name (6).
409
- expect(spec!.series.length).toBe(6)
410
- } finally {
411
- destroy()
412
- }
413
- })
414
-
415
- it('plots one series per measure with `measures[]`', async () => {
416
- const { api, destroy } = await mountGrid({ charting: { dimension: 'team', measures: ['age', 'salary'] } })
417
- await tick() // the chart engine loads lazily; ready a tick after mount
418
- try {
419
- const spec = api.getChartSpec()
420
- expect(spec!.series.length).toBe(2)
421
- } finally {
422
- destroy()
423
- }
424
- })
425
-
426
- it('marks the spec stacked when config.stacked is set', async () => {
427
- const { api, destroy } = await mountGrid({ charting: { dimension: 'team', series: 'name', measures: 'age', stacked: true } })
428
- await tick() // the chart engine loads lazily; ready a tick after mount
429
- try {
430
- expect(api.getChartSpec()!.stacked).toBe(true)
431
- } finally {
432
- destroy()
433
- }
434
- })
435
-
436
- it('renders a custom `buildSpec` chart that stays live with the grid', async () => {
437
- const { api, destroy } = await mountGrid({
438
- charting: { defaultOpen: true, buildSpec: (rows) => ({ type: 'bar', categories: ['All'], series: [{ label: 'Count', values: [rows.length] }] }) },
439
- })
440
- try {
441
- await tick()
442
- // The custom spec reflects all displayed rows...
443
- expect(api.getChartSpec()!.series[0]!.values[0]).toBe(people.length)
444
- // ...and re-derives when the grid is filtered (auto-refresh through buildSpec).
445
- api.setFacetFilter('team', ['Research'])
446
- await tick()
447
- expect(api.getChartSpec()!.series[0]!.values[0]).toBe(3)
448
- } finally {
449
- destroy()
450
- }
451
- })
452
-
453
- it('maps a multi-column cell selection to dimension + split-by + measures (column-exact)', async () => {
454
- const { api, destroy } = await mountGrid({ charting: true })
455
- try {
456
- // Select columns 1..3 (team, age, salary) across the first two rows:
457
- // team -> dimension, no 2nd text col, age+salary -> measures.
458
- api.selectCells([[0, 1, 1, 3]])
459
- await tick()
460
- const spec = api.getChartSpec()
461
- // Two numeric columns in the span -> two series.
462
- expect(spec!.series.length).toBe(2)
463
- } finally {
464
- destroy()
465
- }
466
- })
467
-
468
- it('round-trips the chart config through getState / setState', async () => {
469
- const a = await mountGrid({ charting: true })
470
- try {
471
- a.api.openChart()
472
- a.api.setState({ ...a.api.getState(), chart: { open: true, type: 'line', dimension: 'team', series: null, measure: 'salary', reduce: 'avg', stacked: false } } as any)
473
- await tick()
474
- const state = a.api.getState() as any
475
- expect(state.chart).toBeTruthy()
476
- expect(state.chart.type).toBe('line')
477
- expect(state.chart.reduce).toBe('avg')
478
- const spec = a.api.getChartSpec()
479
- expect(spec!.type).toBe('line')
480
- } finally {
481
- a.destroy()
482
- }
483
- })
484
-
485
- it('charts server-side buckets from getAggregate and refetches on filter change', async () => {
486
- let calls = 0
487
- let lastFilter: any = null
488
- const { api, destroy } = await mountGrid({
489
- charting: {
490
- getAggregate: async (req) => {
491
- calls += 1
492
- lastFilter = req.filterModel
493
- return [
494
- { category: 'A', value: 10 },
495
- { category: 'B', value: 20 },
496
- ]
497
- },
498
- },
499
- })
500
- try {
501
- await new Promise((r) => setTimeout(r, 15))
502
- const spec = api.getChartSpec()
503
- expect(spec).not.toBeNull()
504
- expect(spec!.categories).toEqual(['A', 'B'])
505
- expect(spec!.series[0]!.values).toEqual([10, 20])
506
- expect(calls).toBeGreaterThan(0)
507
- // A filter change re-runs the server aggregation with the new filter.
508
- const before = calls
509
- api.setFacetFilter('team', ['Research'])
510
- await new Promise((r) => setTimeout(r, 15))
511
- expect(calls).toBeGreaterThan(before)
512
- expect(lastFilter.facets.team).toEqual(['Research'])
513
- } finally {
514
- destroy()
515
- }
516
- })
517
-
518
- it('cross-filters the grid when a chart category is clicked', async () => {
519
- const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
520
- try {
521
- await tick()
522
- expect(api.getDisplayedRows().length).toBe(people.length)
523
- // The full-height hit rect for the first category carries data-cat-index=0.
524
- const hit = target.querySelector<SVGElement>('.sv-grid-chart-panel svg [data-cat-index="0"]')
525
- expect(hit).toBeTruthy()
526
- hit!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
527
- await tick()
528
- // Clicking one category (a distinct name) filters the grid to that row.
529
- expect(api.getDisplayedRows().length).toBe(1)
530
- } finally {
531
- destroy()
532
- }
533
- })
534
- })
1
+ /**
2
+ * Built-in integrated charting (`charting` prop on <SvGrid>): the docked chart
3
+ * panel, its live derivation from displayed rows + selection, and the
4
+ * chart-click -> grid cross-filter loop.
5
+ */
6
+ import { describe, expect, it } from 'vitest'
7
+ import { mount, unmount } from 'svelte'
8
+ import SvGrid from './SvGrid.svelte'
9
+ import {
10
+ columnFilteringFeature,
11
+ createCoreRowModel,
12
+ createFilteredRowModel,
13
+ createSortedRowModel,
14
+ rowSelectionFeature,
15
+ rowSortingFeature,
16
+ sortFns,
17
+ tableFeatures,
18
+ chartSpecToCsv,
19
+ formatChartValue,
20
+ buildChart,
21
+ } from './index'
22
+ import type { ColumnDef, SvGridApi } from './index'
23
+
24
+ type Person = { id: number; name: string; team: string; age: number; salary: number }
25
+
26
+ const features = tableFeatures({ columnFilteringFeature, rowSelectionFeature, rowSortingFeature })
27
+
28
+ const people: Person[] = [
29
+ { id: 1, name: 'Ada', team: 'Research', age: 38, salary: 120 },
30
+ { id: 2, name: 'Grace', team: 'Compilers', age: 42, salary: 150 },
31
+ { id: 3, name: 'Alan', team: 'Research', age: 41, salary: 130 },
32
+ { id: 4, name: 'Margaret', team: 'Apollo', age: 35, salary: 160 },
33
+ { id: 5, name: 'Linus', team: 'Kernel', age: 54, salary: 175 },
34
+ { id: 6, name: 'Donald', team: 'Research', age: 86, salary: 110 },
35
+ ]
36
+
37
+ const columns: ColumnDef<typeof features, Person>[] = [
38
+ { field: 'name', header: 'Name', width: 160 },
39
+ { field: 'team', header: 'Team', width: 160 },
40
+ { field: 'age', header: 'Age', width: 100, cellDataType: 'number' },
41
+ { field: 'salary', header: 'Salary', width: 100, cellDataType: 'number' },
42
+ ]
43
+
44
+ type MountResult = { api: SvGridApi<typeof features, Person>; target: HTMLElement; destroy: () => void }
45
+
46
+ function mountGrid(overrides: Record<string, unknown> = {}): Promise<MountResult> {
47
+ return new Promise((resolve, reject) => {
48
+ const target = document.createElement('div')
49
+ target.style.width = '1000px'
50
+ target.style.height = '600px'
51
+ document.body.appendChild(target)
52
+ const app = mount(SvGrid, {
53
+ target,
54
+ props: {
55
+ data: people,
56
+ columns,
57
+ features,
58
+ _rowModels: {
59
+ coreRowModel: createCoreRowModel(),
60
+ filteredRowModel: createFilteredRowModel(),
61
+ sortedRowModel: createSortedRowModel(sortFns),
62
+ },
63
+ rowHeight: 36,
64
+ containerHeight: 480,
65
+ virtualization: false,
66
+ onApiReady(api: SvGridApi<typeof features, Person>) {
67
+ resolve({ api, target, destroy: () => { unmount(app); target.remove() } })
68
+ },
69
+ ...overrides,
70
+ } as any,
71
+ })
72
+ queueMicrotask(() => reject(new Error('onApiReady never fired')))
73
+ })
74
+ }
75
+
76
+ // A macrotask boundary: drains all pending microtasks (Svelte effects, the chart
77
+ // panel's lazy import() + its .then, and the follow-up flush) so the docked panel
78
+ // is mounted before assertions. The panel is loaded lazily as its own chunk.
79
+ const tick = () => new Promise((r) => setTimeout(r))
80
+
81
+ describe('SvGrid built-in charting', () => {
82
+ it('derives a chart spec from all displayed rows (default dimension + measure)', async () => {
83
+ const { api, destroy } = await mountGrid({ charting: true })
84
+ await tick() // the chart engine loads lazily; ready a tick after mount
85
+ try {
86
+ const spec = api.getChartSpec()
87
+ expect(spec).not.toBeNull()
88
+ expect(spec!.type).toBe('bar')
89
+ // Default dimension is the first text column (name), one category per row.
90
+ expect(spec!.categories.length).toBe(people.length)
91
+ } finally {
92
+ destroy()
93
+ }
94
+ })
95
+
96
+ it('re-derives the chart when the grid is filtered (auto-refresh)', async () => {
97
+ const { api, destroy } = await mountGrid({ charting: true })
98
+ try {
99
+ // Filter to the Research team (3 people) via the same facet-filter state
100
+ // the chart's own cross-filter writes.
101
+ api.setFacetFilter('team', ['Research'])
102
+ await tick()
103
+ const spec = api.getChartSpec()
104
+ expect(spec!.categories.length).toBe(3)
105
+ } finally {
106
+ destroy()
107
+ }
108
+ })
109
+
110
+ it('scopes the chart to the selected cell range', async () => {
111
+ const { api, destroy } = await mountGrid({ charting: true })
112
+ try {
113
+ // Select the first two rows across all columns.
114
+ api.selectCells([[0, 0, 1, 2]])
115
+ await tick()
116
+ const spec = api.getChartSpec()
117
+ expect(spec!.categories.length).toBe(2)
118
+ } finally {
119
+ destroy()
120
+ }
121
+ })
122
+
123
+ it('renders the docked panel with an <svg> when open', async () => {
124
+ const { target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
125
+ try {
126
+ await tick()
127
+ const panel = target.querySelector('.sv-grid-chart-panel')
128
+ expect(panel).toBeTruthy()
129
+ expect(panel!.querySelector('svg')).toBeTruthy()
130
+ } finally {
131
+ destroy()
132
+ }
133
+ })
134
+
135
+ it('pops the docked panel out into a floating window, maximizes, and docks back', async () => {
136
+ const { target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
137
+ try {
138
+ await tick()
139
+ const panel = () => target.querySelector('.sv-grid-chart-panel')!
140
+ const click = (label: string) => {
141
+ const btn = target.querySelector<HTMLButtonElement>(`[aria-label="${label}"]`)
142
+ expect(btn).toBeTruthy()
143
+ btn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
144
+ }
145
+ // Starts docked.
146
+ expect(panel().classList.contains('is-floating')).toBe(false)
147
+ // Pop out -> floating window.
148
+ click('Pop out chart')
149
+ await tick()
150
+ expect(panel().classList.contains('is-floating')).toBe(true)
151
+ // Maximize -> fills the grid.
152
+ click('Maximize')
153
+ await tick()
154
+ expect(panel().classList.contains('is-maximized')).toBe(true)
155
+ // Dock back -> re-docked, not floating, not maximized.
156
+ click('Dock chart')
157
+ await tick()
158
+ expect(panel().classList.contains('is-floating')).toBe(false)
159
+ expect(panel().classList.contains('is-maximized')).toBe(false)
160
+ } finally {
161
+ destroy()
162
+ }
163
+ })
164
+
165
+ it('adds a second chart, shows a tab strip, and persists both charts in view state', async () => {
166
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
167
+ try {
168
+ await tick()
169
+ // One chart, no tab strip yet.
170
+ expect(target.querySelectorAll('.sv-grid-chart-tab').length).toBe(0)
171
+ // Add a chart.
172
+ const add = target.querySelector<HTMLButtonElement>('[aria-label="Add chart"]')
173
+ expect(add).toBeTruthy()
174
+ add!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
175
+ await tick()
176
+ // Now two tabs; the second is active.
177
+ const tabs = target.querySelectorAll('.sv-grid-chart-tab')
178
+ expect(tabs.length).toBe(2)
179
+ expect(tabs[1]!.classList.contains('is-active')).toBe(true)
180
+ // View state carries both charts + the active index.
181
+ const state = api.getState() as any
182
+ expect(state.charts.length).toBe(2)
183
+ expect(state.chartActive).toBe(1)
184
+ // Removing a chart drops back to a single chart (tab strip disappears).
185
+ target.querySelector<HTMLButtonElement>('.sv-grid-chart-tab.is-active .sv-grid-chart-tab-x')!
186
+ .dispatchEvent(new MouseEvent('click', { bubbles: true }))
187
+ await tick()
188
+ expect(target.querySelectorAll('.sv-grid-chart-tab').length).toBe(0)
189
+ expect((api.getState() as any).charts.length).toBe(1)
190
+ } finally {
191
+ destroy()
192
+ }
193
+ })
194
+
195
+ it('keeps each chart\'s own type when switching tabs', async () => {
196
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
197
+ try {
198
+ await tick()
199
+ // Chart 1 -> line.
200
+ const typeSel = () => target.querySelector<HTMLSelectElement>('.sv-grid-chart-controls select')!
201
+ typeSel().value = 'line'
202
+ typeSel().dispatchEvent(new Event('change', { bubbles: true }))
203
+ await tick()
204
+ expect(api.getChartSpec()!.type).toBe('line')
205
+ // Add Chart 2 (defaults to bar).
206
+ target.querySelector<HTMLButtonElement>('[aria-label="Add chart"]')!
207
+ .dispatchEvent(new MouseEvent('click', { bubbles: true }))
208
+ await tick()
209
+ expect(api.getChartSpec()!.type).toBe('bar')
210
+ // Switch back to Chart 1 -> still line.
211
+ target.querySelectorAll<HTMLButtonElement>('.sv-grid-chart-tab-label')[0]!
212
+ .dispatchEvent(new MouseEvent('click', { bubbles: true }))
213
+ await tick()
214
+ expect(api.getChartSpec()!.type).toBe('line')
215
+ } finally {
216
+ destroy()
217
+ }
218
+ })
219
+
220
+ it('configureChart applies a config to the active chart (resolving field names)', async () => {
221
+ const { api, destroy } = await mountGrid({ charting: { defaultOpen: true } })
222
+ try {
223
+ api.configureChart({ type: 'line', dimension: 'team', measure: 'salary', reduce: 'avg' })
224
+ await tick()
225
+ const spec = api.getChartSpec()
226
+ expect(spec!.type).toBe('line')
227
+ // salary aggregated by team -> one category per distinct team.
228
+ expect(spec!.categories.length).toBeGreaterThan(0)
229
+ } finally {
230
+ destroy()
231
+ }
232
+ })
233
+
234
+ it('shows an AI button only when a chart-AI handler is registered, and applies its result', async () => {
235
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
236
+ try {
237
+ await tick()
238
+ // No handler -> no AI button.
239
+ expect(target.querySelector('[aria-label="Chart with AI"]')).toBeFalsy()
240
+ // Register a deterministic handler (stands in for enterprise's aiChart).
241
+ api.setChartAiHandler(async () => ({
242
+ type: 'line',
243
+ dimension: 'team',
244
+ series: null,
245
+ measure: 'salary',
246
+ reduce: 'avg',
247
+ stacked: false,
248
+ rationale: 'line of avg salary by team',
249
+ }))
250
+ await tick()
251
+ const aiBtn = target.querySelector<HTMLButtonElement>('[aria-label="Chart with AI"]')
252
+ expect(aiBtn).toBeTruthy()
253
+ // Open the prompt row, type a query, submit.
254
+ aiBtn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
255
+ await tick()
256
+ const input = target.querySelector<HTMLInputElement>('.sv-grid-chart-ai-input')!
257
+ input.value = 'average salary by team as a line'
258
+ input.dispatchEvent(new Event('input', { bubbles: true }))
259
+ const form = target.querySelector<HTMLFormElement>('.sv-grid-chart-ai-row')!
260
+ form.dispatchEvent(new Event('submit', { bubbles: true, cancelable: true }))
261
+ // Let the async handler resolve.
262
+ await new Promise((r) => setTimeout(r, 0))
263
+ await tick()
264
+ expect(api.getChartSpec()!.type).toBe('line')
265
+ } finally {
266
+ destroy()
267
+ }
268
+ })
269
+
270
+ it('toggles a logarithmic value axis (configureChart + panel toggle present)', async () => {
271
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
272
+ try {
273
+ api.configureChart({ dimension: 'team', measure: 'salary' })
274
+ await tick()
275
+ expect(api.getChartSpec()!.yScale).not.toBe('log')
276
+ api.configureChart({ logScale: true })
277
+ await tick()
278
+ expect(api.getChartSpec()!.yScale).toBe('log')
279
+ const labels = [...target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
280
+ expect(labels).toContain('Log scale')
281
+ } finally {
282
+ destroy()
283
+ }
284
+ })
285
+
286
+ it('offers a date axis only when the group-by column is date-like', async () => {
287
+ // Non-date dimension -> no Date axis toggle.
288
+ const a = await mountGrid({ charting: { defaultOpen: true } })
289
+ try {
290
+ await tick()
291
+ const labels = [...a.target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
292
+ expect(labels).not.toContain('Date axis')
293
+ } finally {
294
+ a.destroy()
295
+ }
296
+ // Date dimension -> Date axis toggle appears and drives xType: 'time'.
297
+ const dateColumns = [
298
+ { field: 'day', header: 'Day', width: 120, cellDataType: 'date' },
299
+ { field: 'channel', header: 'Channel', width: 120 },
300
+ { field: 'signups', header: 'Signups', width: 100, cellDataType: 'number' },
301
+ ]
302
+ const dateData = [
303
+ { id: 1, day: '2026-01-01', channel: 'Organic', signups: 10 },
304
+ { id: 2, day: '2026-01-02', channel: 'Organic', signups: 20 },
305
+ { id: 3, day: '2026-01-03', channel: 'Paid', signups: 30 },
306
+ ]
307
+ const b = await mountGrid({
308
+ data: dateData,
309
+ columns: dateColumns,
310
+ charting: { defaultOpen: true, dimension: 'day', measures: 'signups' },
311
+ })
312
+ try {
313
+ await tick()
314
+ const labels = [...b.target.querySelectorAll('.sv-grid-chart-toggle')].map((l) => l.textContent?.trim())
315
+ expect(labels).toContain('Date axis')
316
+ b.api.configureChart({ timeAxis: true })
317
+ await tick()
318
+ expect(b.api.getChartSpec()!.xType).toBe('time')
319
+ } finally {
320
+ b.destroy()
321
+ }
322
+ })
323
+
324
+ it('serializes chart data to CSV and shows an Export menu (PNG/SVG/CSV/Copy)', async () => {
325
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
326
+ try {
327
+ api.configureChart({ dimension: 'team', series: 'name', measure: 'salary' })
328
+ await tick()
329
+ const csv = chartSpecToCsv(api.getChartSpec()!)
330
+ const [header, ...rows] = csv.split('\n')
331
+ expect(header.startsWith('Category,')).toBe(true)
332
+ expect(rows.length).toBeGreaterThan(0)
333
+ // Export button + menu.
334
+ const btn = target.querySelector<HTMLButtonElement>('[aria-label="Export chart"]')
335
+ expect(btn).toBeTruthy()
336
+ btn!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
337
+ await tick()
338
+ const items = [...target.querySelectorAll('.sv-grid-chart-export-menu button')].map((b) => b.textContent)
339
+ expect(items).toEqual(['PNG image', 'SVG vector', 'CSV data', 'Copy to clipboard'])
340
+ } finally {
341
+ destroy()
342
+ }
343
+ })
344
+
345
+ it('buildChart emits a grouped category-axis tier from categoryGroups', () => {
346
+ const geo = buildChart({
347
+ type: 'bar',
348
+ categories: ['USA', 'Canada', 'Japan', 'India'],
349
+ series: [{ label: 'Rev', values: [10, 20, 30, 40] }],
350
+ categoryGroups: [{ label: 'Americas', span: 2 }, { label: 'APAC', span: 2 }],
351
+ })
352
+ expect(geo.categoryGroupTicks.map((g) => g.label)).toEqual(['Americas', 'APAC'])
353
+ // Groups tile the axis edge-to-edge (first group's right = second's left).
354
+ expect(geo.categoryGroupTicks[0]!.x1).toBe(geo.categoryGroupTicks[1]!.x0)
355
+ // Ignored when the spans don't cover every leaf.
356
+ const bad = buildChart({
357
+ type: 'bar',
358
+ categories: ['A', 'B', 'C'],
359
+ series: [{ label: 'x', values: [1, 2, 3] }],
360
+ categoryGroups: [{ label: 'G', span: 2 }],
361
+ })
362
+ expect(bad.categoryGroupTicks.length).toBe(0)
363
+ })
364
+
365
+ it('formatChartValue renders currency / percent / compact', () => {
366
+ expect(formatChartValue(1500, 'currency')).toBe('$1.5k')
367
+ expect(formatChartValue(-2_000_000, 'currency')).toBe('-$2M')
368
+ expect(formatChartValue(0.25, 'percent')).toBe('25%')
369
+ expect(formatChartValue(1500)).toBe('1.5k')
370
+ expect(formatChartValue(1500, 'number')).toBe('1.5k')
371
+ })
372
+
373
+ it('applies a value format and an auto y-axis title to the spec', async () => {
374
+ const { api, destroy } = await mountGrid({ charting: { defaultOpen: true } })
375
+ try {
376
+ api.configureChart({ dimension: 'team', measure: 'salary', reduce: 'sum', valueFormat: 'currency' })
377
+ await tick()
378
+ const spec = api.getChartSpec()!
379
+ expect(spec.valueFormat).toBe('currency')
380
+ expect(spec.yAxisTitle).toBe('Sum of Salary')
381
+ } finally {
382
+ destroy()
383
+ }
384
+ })
385
+
386
+ it('defaults the value format from the measure column format', async () => {
387
+ const cols = [
388
+ { field: 'team', header: 'Team', width: 120 },
389
+ { field: 'salary', header: 'Salary', width: 120, cellDataType: 'number', format: { type: 'currency', currency: 'USD' } },
390
+ ]
391
+ const { api, destroy } = await mountGrid({
392
+ columns: cols,
393
+ charting: { defaultOpen: true, dimension: 'team', measures: 'salary' },
394
+ })
395
+ try {
396
+ await tick()
397
+ expect(api.getChartSpec()!.valueFormat).toBe('currency')
398
+ } finally {
399
+ destroy()
400
+ }
401
+ })
402
+
403
+ it('splits into one series per distinct value of the `series` field', async () => {
404
+ const { api, destroy } = await mountGrid({ charting: { dimension: 'team', series: 'name', measures: 'age' } })
405
+ await tick() // the chart engine loads lazily; ready a tick after mount
406
+ try {
407
+ const spec = api.getChartSpec()
408
+ // categories = distinct teams (4); one series per distinct name (6).
409
+ expect(spec!.series.length).toBe(6)
410
+ } finally {
411
+ destroy()
412
+ }
413
+ })
414
+
415
+ it('plots one series per measure with `measures[]`', async () => {
416
+ const { api, destroy } = await mountGrid({ charting: { dimension: 'team', measures: ['age', 'salary'] } })
417
+ await tick() // the chart engine loads lazily; ready a tick after mount
418
+ try {
419
+ const spec = api.getChartSpec()
420
+ expect(spec!.series.length).toBe(2)
421
+ } finally {
422
+ destroy()
423
+ }
424
+ })
425
+
426
+ it('marks the spec stacked when config.stacked is set', async () => {
427
+ const { api, destroy } = await mountGrid({ charting: { dimension: 'team', series: 'name', measures: 'age', stacked: true } })
428
+ await tick() // the chart engine loads lazily; ready a tick after mount
429
+ try {
430
+ expect(api.getChartSpec()!.stacked).toBe(true)
431
+ } finally {
432
+ destroy()
433
+ }
434
+ })
435
+
436
+ it('renders a custom `buildSpec` chart that stays live with the grid', async () => {
437
+ const { api, destroy } = await mountGrid({
438
+ charting: { defaultOpen: true, buildSpec: (rows) => ({ type: 'bar', categories: ['All'], series: [{ label: 'Count', values: [rows.length] }] }) },
439
+ })
440
+ try {
441
+ await tick()
442
+ // The custom spec reflects all displayed rows...
443
+ expect(api.getChartSpec()!.series[0]!.values[0]).toBe(people.length)
444
+ // ...and re-derives when the grid is filtered (auto-refresh through buildSpec).
445
+ api.setFacetFilter('team', ['Research'])
446
+ await tick()
447
+ expect(api.getChartSpec()!.series[0]!.values[0]).toBe(3)
448
+ } finally {
449
+ destroy()
450
+ }
451
+ })
452
+
453
+ it('maps a multi-column cell selection to dimension + split-by + measures (column-exact)', async () => {
454
+ const { api, destroy } = await mountGrid({ charting: true })
455
+ try {
456
+ // Select columns 1..3 (team, age, salary) across the first two rows:
457
+ // team -> dimension, no 2nd text col, age+salary -> measures.
458
+ api.selectCells([[0, 1, 1, 3]])
459
+ await tick()
460
+ const spec = api.getChartSpec()
461
+ // Two numeric columns in the span -> two series.
462
+ expect(spec!.series.length).toBe(2)
463
+ } finally {
464
+ destroy()
465
+ }
466
+ })
467
+
468
+ it('round-trips the chart config through getState / setState', async () => {
469
+ const a = await mountGrid({ charting: true })
470
+ try {
471
+ a.api.openChart()
472
+ a.api.setState({ ...a.api.getState(), chart: { open: true, type: 'line', dimension: 'team', series: null, measure: 'salary', reduce: 'avg', stacked: false } } as any)
473
+ await tick()
474
+ const state = a.api.getState() as any
475
+ expect(state.chart).toBeTruthy()
476
+ expect(state.chart.type).toBe('line')
477
+ expect(state.chart.reduce).toBe('avg')
478
+ const spec = a.api.getChartSpec()
479
+ expect(spec!.type).toBe('line')
480
+ } finally {
481
+ a.destroy()
482
+ }
483
+ })
484
+
485
+ it('charts server-side buckets from getAggregate and refetches on filter change', async () => {
486
+ let calls = 0
487
+ let lastFilter: any = null
488
+ const { api, destroy } = await mountGrid({
489
+ charting: {
490
+ getAggregate: async (req) => {
491
+ calls += 1
492
+ lastFilter = req.filterModel
493
+ return [
494
+ { category: 'A', value: 10 },
495
+ { category: 'B', value: 20 },
496
+ ]
497
+ },
498
+ },
499
+ })
500
+ try {
501
+ await new Promise((r) => setTimeout(r, 15))
502
+ const spec = api.getChartSpec()
503
+ expect(spec).not.toBeNull()
504
+ expect(spec!.categories).toEqual(['A', 'B'])
505
+ expect(spec!.series[0]!.values).toEqual([10, 20])
506
+ expect(calls).toBeGreaterThan(0)
507
+ // A filter change re-runs the server aggregation with the new filter.
508
+ const before = calls
509
+ api.setFacetFilter('team', ['Research'])
510
+ await new Promise((r) => setTimeout(r, 15))
511
+ expect(calls).toBeGreaterThan(before)
512
+ expect(lastFilter.facets.team).toEqual(['Research'])
513
+ } finally {
514
+ destroy()
515
+ }
516
+ })
517
+
518
+ it('cross-filters the grid when a chart category is clicked', async () => {
519
+ const { api, target, destroy } = await mountGrid({ charting: { defaultOpen: true } })
520
+ try {
521
+ await tick()
522
+ expect(api.getDisplayedRows().length).toBe(people.length)
523
+ // The full-height hit rect for the first category carries data-cat-index=0.
524
+ const hit = target.querySelector<SVGElement>('.sv-grid-chart-panel svg [data-cat-index="0"]')
525
+ expect(hit).toBeTruthy()
526
+ hit!.dispatchEvent(new MouseEvent('click', { bubbles: true }))
527
+ await tick()
528
+ // Clicking one category (a distinct name) filters the grid to that row.
529
+ expect(api.getDisplayedRows().length).toBe(1)
530
+ } finally {
531
+ destroy()
532
+ }
533
+ })
534
+ })