@rokkit/chart 1.0.0-next.16 → 1.0.0-next.160

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 (173) hide show
  1. package/README.md +150 -46
  2. package/package.json +42 -45
  3. package/src/AnimatedPlot.svelte +383 -0
  4. package/src/Chart.svelte +95 -0
  5. package/src/ChartProvider.svelte +10 -0
  6. package/src/FacetPlot/Panel.svelte +37 -0
  7. package/src/FacetPlot.svelte +114 -0
  8. package/src/Plot/Arc.svelte +29 -0
  9. package/src/Plot/Area.svelte +32 -0
  10. package/src/Plot/Axis.svelte +95 -0
  11. package/src/Plot/Bar.svelte +54 -0
  12. package/src/Plot/Grid.svelte +34 -0
  13. package/src/Plot/Legend.svelte +233 -0
  14. package/src/Plot/Line.svelte +37 -0
  15. package/src/Plot/Point.svelte +40 -0
  16. package/src/Plot/Root.svelte +62 -0
  17. package/src/Plot/Timeline.svelte +95 -0
  18. package/src/Plot/Tooltip.svelte +87 -0
  19. package/src/Plot/index.js +9 -0
  20. package/src/Plot.svelte +297 -0
  21. package/src/PlotState.svelte.js +350 -0
  22. package/src/Sparkline.svelte +108 -0
  23. package/src/Symbol.svelte +21 -0
  24. package/src/Texture.svelte +18 -0
  25. package/src/charts/AreaChart.svelte +27 -0
  26. package/src/charts/BarChart.svelte +28 -0
  27. package/src/charts/BoxPlot.svelte +21 -0
  28. package/src/charts/BubbleChart.svelte +23 -0
  29. package/src/charts/LineChart.svelte +26 -0
  30. package/src/charts/PieChart.svelte +35 -0
  31. package/src/charts/ScatterPlot.svelte +26 -0
  32. package/src/charts/ViolinPlot.svelte +21 -0
  33. package/src/crossfilter/CrossFilter.svelte +42 -0
  34. package/src/crossfilter/FilterBar.svelte +24 -0
  35. package/src/crossfilter/FilterHistogram.svelte +290 -0
  36. package/src/crossfilter/FilterSlider.svelte +83 -0
  37. package/src/crossfilter/createCrossFilter.svelte.js +124 -0
  38. package/src/elements/Bar.svelte +22 -24
  39. package/src/elements/ColorRamp.svelte +20 -22
  40. package/src/elements/ContinuousLegend.svelte +20 -17
  41. package/src/elements/DefinePatterns.svelte +24 -0
  42. package/src/elements/DiscreteLegend.svelte +15 -15
  43. package/src/elements/Label.svelte +4 -8
  44. package/src/elements/SymbolGrid.svelte +22 -0
  45. package/src/elements/index.js +6 -0
  46. package/src/examples/BarChartExample.svelte +81 -0
  47. package/src/geoms/Arc.svelte +126 -0
  48. package/src/geoms/Area.svelte +78 -0
  49. package/src/geoms/Bar.svelte +200 -0
  50. package/src/geoms/Box.svelte +113 -0
  51. package/src/geoms/LabelPill.svelte +17 -0
  52. package/src/geoms/Line.svelte +123 -0
  53. package/src/geoms/Point.svelte +145 -0
  54. package/src/geoms/Violin.svelte +56 -0
  55. package/src/geoms/lib/areas.js +154 -0
  56. package/src/geoms/lib/bars.js +223 -0
  57. package/src/index.js +74 -16
  58. package/src/lib/brewer.js +25 -0
  59. package/src/lib/brewing/BoxBrewer.svelte.js +14 -0
  60. package/src/lib/brewing/CartesianBrewer.svelte.js +21 -0
  61. package/src/lib/brewing/PieBrewer.svelte.js +14 -0
  62. package/src/lib/brewing/QuartileBrewer.svelte.js +51 -0
  63. package/src/lib/brewing/ViolinBrewer.svelte.js +14 -0
  64. package/src/lib/brewing/axes.svelte.js +270 -0
  65. package/src/lib/brewing/bars.svelte.js +201 -0
  66. package/src/lib/brewing/brewer.svelte.js +277 -0
  67. package/src/lib/brewing/colors.js +51 -0
  68. package/src/lib/brewing/dimensions.svelte.js +56 -0
  69. package/src/lib/brewing/index.svelte.js +205 -0
  70. package/src/lib/brewing/legends.svelte.js +137 -0
  71. package/src/lib/brewing/marks/arcs.js +43 -0
  72. package/src/lib/brewing/marks/areas.js +72 -0
  73. package/src/lib/brewing/marks/bars.js +49 -0
  74. package/src/lib/brewing/marks/boxes.js +75 -0
  75. package/src/lib/brewing/marks/lines.js +55 -0
  76. package/src/lib/brewing/marks/points.js +105 -0
  77. package/src/lib/brewing/marks/violins.js +90 -0
  78. package/src/lib/brewing/patterns.js +45 -0
  79. package/src/lib/brewing/scales.js +51 -0
  80. package/src/lib/brewing/scales.svelte.js +82 -0
  81. package/src/lib/brewing/stats.js +74 -0
  82. package/src/lib/brewing/symbols.js +10 -0
  83. package/src/lib/brewing/types.js +73 -0
  84. package/src/lib/chart.js +221 -0
  85. package/src/lib/context.js +131 -0
  86. package/src/lib/grid.js +85 -0
  87. package/src/lib/keyboard-nav.js +37 -0
  88. package/src/lib/plot/chartProps.js +76 -0
  89. package/src/lib/plot/crossfilter.js +16 -0
  90. package/src/lib/plot/facet.js +58 -0
  91. package/src/lib/plot/frames.js +81 -0
  92. package/src/lib/plot/helpers.js +14 -0
  93. package/src/lib/plot/preset.js +67 -0
  94. package/src/lib/plot/scales.js +81 -0
  95. package/src/lib/plot/stat.js +92 -0
  96. package/src/lib/plot/types.js +65 -0
  97. package/src/lib/preset.js +41 -0
  98. package/src/lib/scales.svelte.js +151 -0
  99. package/src/lib/swatch.js +13 -0
  100. package/src/lib/ticks.js +46 -0
  101. package/src/lib/utils.js +111 -118
  102. package/src/lib/xscale.js +31 -0
  103. package/src/patterns/DefinePatterns.svelte +32 -0
  104. package/src/patterns/PatternDef.svelte +27 -0
  105. package/src/patterns/index.js +4 -0
  106. package/src/patterns/patterns.js +360 -0
  107. package/src/patterns/scale.js +116 -0
  108. package/src/spec/chart-spec.js +72 -0
  109. package/src/symbols/RoundedSquare.svelte +33 -0
  110. package/src/symbols/Shape.svelte +37 -0
  111. package/src/symbols/constants/index.js +4 -0
  112. package/src/symbols/index.js +9 -0
  113. package/src/symbols/outline.svelte +60 -0
  114. package/src/symbols/solid.svelte +60 -0
  115. package/LICENSE +0 -21
  116. package/src/chart/FacetGrid.svelte +0 -51
  117. package/src/chart/Grid.svelte +0 -34
  118. package/src/chart/Legend.svelte +0 -16
  119. package/src/chart/PatternDefs.svelte +0 -13
  120. package/src/chart/Swatch.svelte +0 -93
  121. package/src/chart/SwatchButton.svelte +0 -29
  122. package/src/chart/SwatchGrid.svelte +0 -55
  123. package/src/chart/Symbol.svelte +0 -37
  124. package/src/chart/Texture.svelte +0 -16
  125. package/src/chart/TexturedShape.svelte +0 -27
  126. package/src/chart/TimelapseChart.svelte +0 -97
  127. package/src/chart/Timer.svelte +0 -27
  128. package/src/chart.js +0 -9
  129. package/src/components/charts/Axis.svelte +0 -66
  130. package/src/components/charts/Chart.svelte +0 -35
  131. package/src/components/index.js +0 -23
  132. package/src/components/lib/axis.js +0 -0
  133. package/src/components/lib/chart.js +0 -187
  134. package/src/components/lib/color.js +0 -327
  135. package/src/components/lib/funnel.js +0 -204
  136. package/src/components/lib/index.js +0 -19
  137. package/src/components/lib/pattern.js +0 -190
  138. package/src/components/lib/rollup.js +0 -55
  139. package/src/components/lib/shape.js +0 -199
  140. package/src/components/lib/summary.js +0 -145
  141. package/src/components/lib/theme.js +0 -23
  142. package/src/components/lib/timer.js +0 -41
  143. package/src/components/lib/utils.js +0 -165
  144. package/src/components/plots/BarPlot.svelte +0 -36
  145. package/src/components/plots/BoxPlot.svelte +0 -54
  146. package/src/components/plots/ScatterPlot.svelte +0 -30
  147. package/src/components/store.js +0 -70
  148. package/src/constants.js +0 -66
  149. package/src/elements/PatternDefs.svelte +0 -13
  150. package/src/elements/PatternMask.svelte +0 -20
  151. package/src/elements/Symbol.svelte +0 -38
  152. package/src/elements/Tooltip.svelte +0 -23
  153. package/src/funnel.svelte +0 -35
  154. package/src/geom.js +0 -105
  155. package/src/lib/axis.js +0 -75
  156. package/src/lib/colors.js +0 -32
  157. package/src/lib/geom.js +0 -4
  158. package/src/lib/shapes.js +0 -144
  159. package/src/lib/timer.js +0 -44
  160. package/src/lookup.js +0 -29
  161. package/src/plots/BarPlot.svelte +0 -55
  162. package/src/plots/BoxPlot.svelte +0 -0
  163. package/src/plots/FunnelPlot.svelte +0 -33
  164. package/src/plots/HeatMap.svelte +0 -5
  165. package/src/plots/HeatMapCalendar.svelte +0 -129
  166. package/src/plots/LinePlot.svelte +0 -55
  167. package/src/plots/Plot.svelte +0 -25
  168. package/src/plots/RankBarPlot.svelte +0 -38
  169. package/src/plots/ScatterPlot.svelte +0 -20
  170. package/src/plots/ViolinPlot.svelte +0 -11
  171. package/src/plots/heatmap.js +0 -70
  172. package/src/plots/index.js +0 -10
  173. package/src/swatch.js +0 -11
@@ -0,0 +1,223 @@
1
+ import { scaleBand } from 'd3-scale'
2
+ import { stack } from 'd3-shape'
3
+ import { toPatternId } from '../../lib/brewing/patterns.js'
4
+ import { isLiteralColor } from '../../lib/brewing/colors.js'
5
+
6
+ /**
7
+ * Returns a band scale suitable for bar x-positioning.
8
+ * When xScale is already a band scale, returns it unchanged.
9
+ * When xScale is a linear scale (numeric x field like year/month),
10
+ * derives a band scale from the distinct values in the data.
11
+ */
12
+ function ensureBandX(xScale, data, xField) {
13
+ if (typeof xScale?.bandwidth === 'function') return xScale
14
+ const [r0, r1] = xScale.range()
15
+ const domain = [...new Set(data.map((d) => d[xField]))]
16
+ return scaleBand().domain(domain).range([r0, r1]).padding(0.2)
17
+ }
18
+
19
+ /**
20
+ * Returns the sub-band fields: distinct non-x fields among [color, pattern].
21
+ * These are the fields that cause multiple bars within a single x-band.
22
+ */
23
+ function subBandFields(channels) {
24
+ const { x: xf, color: cf, pattern: pf } = channels
25
+ const seen = new Set()
26
+ const out = []
27
+ for (const f of [cf, pf]) {
28
+ if (f && f !== xf && !seen.has(f) && !isLiteralColor(f)) {
29
+ seen.add(f)
30
+ out.push(f)
31
+ }
32
+ }
33
+ return out
34
+ }
35
+
36
+ export function buildGroupedBars(data, channels, xScale, yScale, colors, innerHeight, patterns) {
37
+ const { x: xf, y: yf, color: cf, pattern: pf } = channels
38
+
39
+ const bandScale = ensureBandX(xScale, data, xf)
40
+
41
+ // Sub-banding: only fields that differ from x drive grouping within a band
42
+ const subFields = subBandFields(channels)
43
+ const getSubKey = (d) => subFields.map((f) => String(d[f])).join('::')
44
+ const subDomain = subFields.length > 0 ? [...new Set(data.map(getSubKey))] : []
45
+ const subScale =
46
+ subDomain.length > 1
47
+ ? scaleBand().domain(subDomain).range([0, bandScale.bandwidth()]).padding(0.05)
48
+ : null
49
+
50
+ // Baseline for bars: at y=0 when domain spans zero (supports negative bars),
51
+ // otherwise at the bottom of the chart area.
52
+ const yDomain = typeof yScale.bandwidth !== 'function' ? yScale.domain?.() : null
53
+ const baseline =
54
+ yDomain && yDomain[0] <= 0 && yDomain[yDomain.length - 1] >= 0
55
+ ? (yScale(0) ?? innerHeight)
56
+ : innerHeight
57
+
58
+ return data.map((d, i) => {
59
+ const xVal = d[xf]
60
+ const colorKey = cf ? d[cf] : null
61
+ const patternKey = pf ? d[pf] : null
62
+ const subKey = getSubKey(d)
63
+
64
+ const colorEntry = colors?.get(colorKey) ??
65
+ colors?.values().next().value ?? { fill: '#888', stroke: '#888' }
66
+ const patternId =
67
+ patternKey !== null && patternKey !== undefined && patterns?.has(patternKey)
68
+ ? toPatternId(String(patternKey))
69
+ : null
70
+
71
+ const bandX = bandScale(xVal) ?? 0
72
+ const subX = subScale && subKey ? (subScale(subKey) ?? 0) : 0
73
+ const barX = bandX + subX
74
+ const barWidth = subScale ? subScale.bandwidth() : bandScale.bandwidth()
75
+ const barY = yScale(d[yf]) ?? baseline
76
+
77
+ return {
78
+ data: d,
79
+ key: `${String(xVal)}::${subKey}::${i}`,
80
+ x: barX,
81
+ y: Math.min(barY, baseline),
82
+ width: barWidth,
83
+ height: Math.abs(baseline - barY),
84
+ fill: colorEntry.fill,
85
+ stroke: colorEntry.stroke,
86
+ patternId
87
+ }
88
+ })
89
+ }
90
+
91
+ export function buildStackedBars(data, channels, xScale, yScale, colors, innerHeight, patterns) {
92
+ const { x: xf, y: yf, color: cf, pattern: pf } = channels
93
+
94
+ const bandScale = ensureBandX(xScale, data, xf)
95
+
96
+ // Stack dimension: first non-x grouping field (prefer pattern, then color)
97
+ const subFields = subBandFields(channels)
98
+ if (subFields.length === 0) {
99
+ return buildGroupedBars(data, channels, xScale, yScale, colors, innerHeight, patterns)
100
+ }
101
+ const stackField = subFields[0]
102
+
103
+ const xCategories = [...new Set(data.map((d) => d[xf]))]
104
+ const stackCategories = [...new Set(data.map((d) => d[stackField]))]
105
+
106
+ const lookup = new Map()
107
+ for (const d of data) {
108
+ if (!lookup.has(d[xf])) lookup.set(d[xf], {})
109
+ lookup.get(d[xf])[d[stackField]] = Number(d[yf])
110
+ }
111
+
112
+ const wide = xCategories.map((xVal) => {
113
+ const row = { [xf]: xVal }
114
+ for (const sk of stackCategories) row[sk] = lookup.get(xVal)?.[sk] ?? 0
115
+ return row
116
+ })
117
+
118
+ const stackGen = stack().keys(stackCategories)
119
+ const layers = stackGen(wide)
120
+
121
+ const bars = []
122
+ for (const layer of layers) {
123
+ const stackKey = layer.key
124
+
125
+ for (const point of layer) {
126
+ const [y0, y1] = point
127
+ const xVal = point.data[xf]
128
+
129
+ // Color lookup: cf may equal xf (= xVal) or stackField (= stackKey)
130
+ const colorKey = cf ? (cf === xf ? xVal : cf === stackField ? stackKey : null) : null
131
+ const colorEntry = colors?.get(colorKey) ?? { fill: '#888', stroke: '#888' }
132
+
133
+ // Pattern lookup: pf may equal xf (= xVal) or stackField (= stackKey)
134
+ const patternKey = pf ? (pf === xf ? xVal : pf === stackField ? stackKey : null) : null
135
+ const patternId =
136
+ patternKey !== null && patternKey !== undefined && patterns?.has(patternKey)
137
+ ? toPatternId(String(patternKey))
138
+ : null
139
+
140
+ bars.push({
141
+ data: point.data,
142
+ key: `${String(xVal)}::${String(stackKey)}`,
143
+ x: bandScale(xVal) ?? 0,
144
+ y: yScale(y1),
145
+ width: bandScale.bandwidth(),
146
+ height: yScale(y0) - yScale(y1),
147
+ fill: colorEntry.fill,
148
+ stroke: colorEntry.stroke,
149
+ patternId
150
+ })
151
+ }
152
+ }
153
+ return bars
154
+ }
155
+
156
+ export function buildHorizontalBars(data, channels, xScale, yScale, colors, _innerHeight) {
157
+ const { x: xf, y: yf, color: cf } = channels
158
+ const isBand = typeof yScale?.bandwidth === 'function'
159
+
160
+ if (!isBand) {
161
+ // Linear y-scale: rank-based bar chart race.
162
+ // Each row has a numeric _rank that tweens smoothly between frames.
163
+ // No sub-grouping — each rank position holds exactly one entity.
164
+ const [r0, r1] = yScale.range() // [innerHeight, 0]
165
+ const [d0, d1] = yScale.domain() // [0, N-1]
166
+ const step = Math.max(Math.abs(r0 - r1) / Math.max(d1 - d0, 1), 1)
167
+ const barH = step * 0.9
168
+
169
+ return data.map((d) => {
170
+ const rankVal = Number(d[yf])
171
+ const colorKey = cf ? d[cf] : null
172
+ const colorEntry =
173
+ colors?.get(colorKey) ??
174
+ colors?.values().next().value ?? { fill: '#888', stroke: '#888' }
175
+
176
+ const centerY = yScale(rankVal) ?? 0
177
+ return {
178
+ data: d,
179
+ // Key by entity name (_entity) so Svelte reuses elements as rank tweens
180
+ key: `${String(d._entity ?? d[yf])}::${String(colorKey ?? '')}`,
181
+ x: 0,
182
+ y: centerY - barH / 2,
183
+ width: xScale(d[xf]) ?? 0,
184
+ height: barH,
185
+ fill: colorEntry.fill,
186
+ stroke: colorEntry.stroke,
187
+ patternId: null
188
+ }
189
+ })
190
+ }
191
+
192
+ // Band scale: standard grouped horizontal bars.
193
+ // Only create sub-bands when multiple entities share the same y-band (true grouping).
194
+ const yVals = new Set(data.map((d) => d[yf]))
195
+ const colorKeys = cf && !isLiteralColor(cf) ? [...new Set(data.map((d) => d[cf]))] : []
196
+ const hasSubBands = colorKeys.length > 1 && data.length > yVals.size
197
+ const subScale = hasSubBands
198
+ ? scaleBand().domain(colorKeys).range([0, yScale.bandwidth()]).padding(0.05)
199
+ : null
200
+
201
+ return data.map((d) => {
202
+ const yVal = d[yf]
203
+ const colorKey = cf ? d[cf] : null
204
+ const colorEntry =
205
+ colors?.get(colorKey) ??
206
+ colors?.values().next().value ?? { fill: '#888', stroke: '#888' }
207
+
208
+ const bandY = yScale(yVal) ?? 0
209
+ const subY = subScale ? (subScale(colorKey) ?? 0) : 0
210
+
211
+ return {
212
+ data: d,
213
+ key: `${String(yVal)}::${String(colorKey ?? '')}`,
214
+ x: 0,
215
+ y: bandY + subY,
216
+ width: xScale(d[xf]) ?? 0,
217
+ height: subScale ? subScale.bandwidth() : yScale.bandwidth(),
218
+ fill: colorEntry.fill,
219
+ stroke: colorEntry.stroke,
220
+ patternId: null
221
+ }
222
+ })
223
+ }
package/src/index.js CHANGED
@@ -1,16 +1,74 @@
1
- // export { aes } from './lib/aes'
2
- // export { timelapse } from './lib/timelapse'
3
- // export { axisTicks } from './lib/axis'
4
- export { timer, elapsed } from './lib/timer'
5
- // export { default as Chart } from './chart/Chart.svelte'
6
- // export { default as Axis } from './chart/Axis.svelte'
7
- export { default as Swatch } from './chart/Swatch.svelte'
8
- // export { default as AxisTicks } from './chart/AxisTicks.svelte'
9
- // export { default as AxisGrid } from './chart/AxisGrid.svelte'
10
- // export { default as AxisLabels } from './chart/AxisLabels.svelte'
11
- export { default as BarPlot } from './plots/BarPlot.svelte'
12
- export { default as LinePlot } from './plots/LinePlot.svelte'
13
- export { default as BoxPlot } from './plots/BoxPlot.svelte'
14
- export { default as ViolinPlot } from './plots/ViolinPlot.svelte'
15
- export { default as ScatterPlot } from './plots/ScatterPlot.svelte'
16
- export * from './components/lib'
1
+ import Root from './Plot/Root.svelte'
2
+ import Axis from './Plot/Axis.svelte'
3
+ import Bar from './Plot/Bar.svelte'
4
+ import Grid from './Plot/Grid.svelte'
5
+ import Legend from './Plot/Legend.svelte'
6
+ import Line from './Plot/Line.svelte'
7
+ import Area from './Plot/Area.svelte'
8
+ import Point from './Plot/Point.svelte'
9
+ import Arc from './Plot/Arc.svelte'
10
+
11
+ // Composable Plot primitives — use as <Plot.Root>, <Plot.Axis>, <Plot.Bar>, etc.
12
+ export const Plot = {
13
+ Root,
14
+ Axis,
15
+ Bar,
16
+ Grid,
17
+ Legend,
18
+ Line,
19
+ Area,
20
+ Point,
21
+ Arc
22
+ }
23
+
24
+ /** @deprecated Use Plot instead */
25
+ export const PlotLayers = Plot
26
+
27
+ // New Plot system
28
+ export { default as PlotChart } from './Plot.svelte'
29
+ export { default as ChartProvider } from './ChartProvider.svelte'
30
+ export { createChartPreset, defaultPreset } from './lib/preset.js'
31
+
32
+ // Facets and Animation
33
+ export { default as FacetPlot } from './FacetPlot.svelte'
34
+ export { default as AnimatedPlot } from './AnimatedPlot.svelte'
35
+
36
+ // Geom components (for declarative use inside PlotChart)
37
+ export { default as GeomBar } from './geoms/Bar.svelte'
38
+ export { default as GeomLine } from './geoms/Line.svelte'
39
+ export { default as GeomArea } from './geoms/Area.svelte'
40
+ export { default as GeomPoint } from './geoms/Point.svelte'
41
+ export { default as GeomArc } from './geoms/Arc.svelte'
42
+ export { default as GeomBox } from './geoms/Box.svelte'
43
+ export { default as GeomViolin } from './geoms/Violin.svelte'
44
+
45
+ // Export standalone components
46
+ export { default as Chart } from './Chart.svelte'
47
+ export { default as Sparkline } from './Sparkline.svelte'
48
+ export { default as BarChart } from './charts/BarChart.svelte'
49
+ export { default as LineChart } from './charts/LineChart.svelte'
50
+ export { default as AreaChart } from './charts/AreaChart.svelte'
51
+ export { default as PieChart } from './charts/PieChart.svelte'
52
+ export { default as ScatterPlot } from './charts/ScatterPlot.svelte'
53
+ export { default as BoxPlot } from './charts/BoxPlot.svelte'
54
+ export { default as ViolinPlot } from './charts/ViolinPlot.svelte'
55
+ export { default as BubbleChart } from './charts/BubbleChart.svelte'
56
+
57
+ // Export state and types
58
+ export { PlotState } from './PlotState.svelte.js'
59
+
60
+ // Export utilities
61
+ export { ChartBrewer } from './lib/brewing/index.svelte.js'
62
+ export * from './lib/brewing/index.svelte.js'
63
+ export { CartesianBrewer } from './lib/brewing/CartesianBrewer.svelte.js'
64
+ export { PieBrewer } from './lib/brewing/PieBrewer.svelte.js'
65
+ export { QuartileBrewer } from './lib/brewing/QuartileBrewer.svelte.js'
66
+ export { BoxBrewer } from './lib/brewing/BoxBrewer.svelte.js'
67
+ export { ViolinBrewer } from './lib/brewing/ViolinBrewer.svelte.js'
68
+
69
+ // CrossFilter system
70
+ export { createCrossFilter } from './crossfilter/createCrossFilter.svelte.js'
71
+ export { default as CrossFilter } from './crossfilter/CrossFilter.svelte'
72
+ export { default as FilterBar } from './crossfilter/FilterBar.svelte'
73
+ export { default as FilterSlider } from './crossfilter/FilterSlider.svelte'
74
+ export { default as FilterHistogram } from './crossfilter/FilterHistogram.svelte'
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Get fill patterns for a set of values
3
+ *
4
+ * @param {Array} values - Array of values
5
+ * @param {Object} swatch - Object with keys for color, gray, and pattern
6
+ * @param {Boolean} gray - Boolean to determine if gray or color
7
+ * @returns {Object} - Object with keys for pattern and color
8
+ */
9
+ export function getFillPatterns(values, swatch, gray = false) {
10
+ const colors = gray ? swatch.keys.gray : swatch.keys.color
11
+ const max_colors = colors.length
12
+ const max_patterns = swatch.keys.pattern.length
13
+
14
+ const mix = values
15
+ .map((value, index) => ({
16
+ [value]: {
17
+ pattern: swatch.keys.pattern[index % max_patterns],
18
+ color: colors[index % max_colors]
19
+ }
20
+ }))
21
+ .reduce((acc, current) => ({ ...acc, ...current }), {})
22
+ return mix
23
+ }
24
+
25
+ // export function getStrokePatterns() {}
@@ -0,0 +1,14 @@
1
+ import { QuartileBrewer } from './QuartileBrewer.svelte.js'
2
+ import { buildBoxes } from './marks/boxes.js'
3
+
4
+ /**
5
+ * Brewer for box plots.
6
+ * fill = box interior color, color = whisker/outline stroke.
7
+ */
8
+ export class BoxBrewer extends QuartileBrewer {
9
+ boxes = $derived(
10
+ this.xScale && this.yScale
11
+ ? buildBoxes(this.processedData, this.channels, this.xScale, this.yScale, this.colorMap)
12
+ : []
13
+ )
14
+ }
@@ -0,0 +1,21 @@
1
+ import { SvelteSet } from 'svelte/reactivity'
2
+ import { ChartBrewer } from './brewer.svelte.js'
3
+ import { applyAggregate } from './stats.js'
4
+
5
+ /**
6
+ * Brewer for cartesian charts (Bar, Line, Area).
7
+ * Groups by x (and fill/color if set) and applies the given stat.
8
+ */
9
+ export class CartesianBrewer extends ChartBrewer {
10
+ transform(data, channels, stat) {
11
+ if (stat === 'identity' || !channels.x || !channels.y) return data
12
+ // Group by all mapped aesthetic dimensions so they survive aggregation.
13
+ // e.g. x=region, fill=region, pattern=quarter → by=['region','quarter']
14
+ const by = [
15
+ ...new SvelteSet(
16
+ [channels.x, channels.fill, channels.color, channels.pattern].filter(Boolean)
17
+ )
18
+ ]
19
+ return applyAggregate(data, { by, value: channels.y, stat })
20
+ }
21
+ }
@@ -0,0 +1,14 @@
1
+ import { ChartBrewer } from './brewer.svelte.js'
2
+ import { applyAggregate } from './stats.js'
3
+
4
+ /**
5
+ * Brewer for pie charts. Always aggregates by the label field.
6
+ * 'identity' is not meaningful for pie charts — falls back to 'sum'.
7
+ */
8
+ export class PieBrewer extends ChartBrewer {
9
+ transform(data, channels, stat) {
10
+ if (!channels.label || !channels.y) return data
11
+ const effectiveStat = stat === 'identity' ? 'sum' : (stat ?? 'sum')
12
+ return applyAggregate(data, { by: [channels.label], value: channels.y, stat: effectiveStat })
13
+ }
14
+ }
@@ -0,0 +1,51 @@
1
+ import { quantile, ascending } from 'd3-array'
2
+ import { dataset } from '@rokkit/data'
3
+ import { ChartBrewer } from './brewer.svelte.js'
4
+ import { buildXScale, buildYScale } from './scales.js'
5
+
6
+ function sortedQuantile(values, p) {
7
+ return quantile([...values].sort(ascending), p)
8
+ }
9
+
10
+ /**
11
+ * Shared base for box and violin plots.
12
+ * Groups by x + fill (primary) or x + color (fallback) and computes quartile statistics.
13
+ * Subclasses add their mark-specific $derived (boxes, violins, etc.).
14
+ */
15
+ export class QuartileBrewer extends ChartBrewer {
16
+ transform(data, channels) {
17
+ if (!channels.x || !channels.y) return data
18
+ const by = [channels.x, channels.fill ?? channels.color].filter(Boolean)
19
+ return dataset(data)
20
+ .groupBy(...by)
21
+ .summarize((row) => row[channels.y], {
22
+ q1: (v) => sortedQuantile(v, 0.25),
23
+ median: (v) => sortedQuantile(v, 0.5),
24
+ q3: (v) => sortedQuantile(v, 0.75),
25
+ iqr_min: (v) => {
26
+ const q1 = sortedQuantile(v, 0.25)
27
+ const q3 = sortedQuantile(v, 0.75)
28
+ return q1 - 1.5 * (q3 - q1)
29
+ },
30
+ iqr_max: (v) => {
31
+ const q1 = sortedQuantile(v, 0.25)
32
+ const q3 = sortedQuantile(v, 0.75)
33
+ return q3 + 1.5 * (q3 - q1)
34
+ }
35
+ })
36
+ .rollup()
37
+ .select()
38
+ }
39
+
40
+ xScale = $derived(
41
+ this.channels.x && this.processedData.length > 0
42
+ ? buildXScale(this.processedData, this.channels.x, this.innerWidth)
43
+ : null
44
+ )
45
+
46
+ yScale = $derived(
47
+ this.channels.y && this.processedData.length > 0
48
+ ? buildYScale(this.processedData, 'iqr_max', this.innerHeight)
49
+ : null
50
+ )
51
+ }
@@ -0,0 +1,14 @@
1
+ import { QuartileBrewer } from './QuartileBrewer.svelte.js'
2
+ import { buildViolins } from './marks/violins.js'
3
+
4
+ /**
5
+ * Brewer for violin plots.
6
+ * fill = violin body color, color = outline stroke.
7
+ */
8
+ export class ViolinBrewer extends QuartileBrewer {
9
+ violins = $derived(
10
+ this.xScale && this.yScale
11
+ ? buildViolins(this.processedData, this.channels, this.xScale, this.yScale, this.colorMap)
12
+ : []
13
+ )
14
+ }