ggaction 0.0.13 → 0.0.15

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 (270) hide show
  1. package/CHANGELOG.md +78 -0
  2. package/README.md +20 -11
  3. package/knowledge/action-cards.json +1 -1
  4. package/knowledge/intent-taxonomy.json +1 -1
  5. package/knowledge/mcp-resources.json +1 -1
  6. package/package.json +8 -3
  7. package/src/actions/basic.js +2 -2
  8. package/src/actions/boxPlots/components.js +14 -4
  9. package/src/actions/boxPlots/edit.js +31 -5
  10. package/src/actions/boxPlots/materialize.js +11 -3
  11. package/src/actions/boxPlots/options.js +48 -16
  12. package/src/actions/categoryOrder/index.js +15 -4
  13. package/src/actions/charts/area.js +5 -1
  14. package/src/actions/charts/bar.js +2 -1
  15. package/src/actions/charts/density.js +6 -2
  16. package/src/actions/charts/ecdf.js +4 -1
  17. package/src/actions/charts/endpoints.js +25 -3
  18. package/src/actions/charts/heatmap.js +2 -1
  19. package/src/actions/charts/histogram.js +4 -3
  20. package/src/actions/charts/horizon.js +3 -1
  21. package/src/actions/charts/interval-regression.js +5 -2
  22. package/src/actions/charts/line.js +3 -1
  23. package/src/actions/charts/parallel.js +8 -2
  24. package/src/actions/charts/pie.js +10 -2
  25. package/src/actions/charts/polar.js +15 -4
  26. package/src/actions/charts/radar.js +8 -2
  27. package/src/actions/charts/radial.js +10 -2
  28. package/src/actions/charts/rug-strip.js +6 -2
  29. package/src/actions/charts/scatter.js +3 -1
  30. package/src/actions/composition/actions.js +13 -4
  31. package/src/actions/coordinates/actions.js +1 -1
  32. package/src/actions/coordinates/edit.js +76 -0
  33. package/src/actions/data/bin.js +1 -1
  34. package/src/actions/data/bin2d.js +57 -185
  35. package/src/actions/data/complete.js +26 -0
  36. package/src/actions/data/computed.js +2 -2
  37. package/src/actions/data/create.js +2 -2
  38. package/src/actions/data/density.js +12 -20
  39. package/src/actions/data/derived.js +47 -17
  40. package/src/actions/data/edit.js +539 -0
  41. package/src/actions/data/filter.js +14 -2
  42. package/src/actions/data/impute.js +26 -0
  43. package/src/actions/data/index.js +14 -0
  44. package/src/actions/data/normalize.js +27 -0
  45. package/src/actions/data/regression.js +16 -21
  46. package/src/actions/data/revisionBindings.js +145 -0
  47. package/src/actions/data/shared.js +20 -4
  48. package/src/actions/data/summary.js +1 -1
  49. package/src/actions/data/timeUnit.js +4 -1
  50. package/src/actions/data/window.js +1 -1
  51. package/src/actions/encodings/channels.js +415 -0
  52. package/src/actions/encodings/color/index.js +2 -1
  53. package/src/actions/encodings/density.js +5 -2
  54. package/src/actions/encodings/histogram.js +3 -2
  55. package/src/actions/encodings/index.js +4 -0
  56. package/src/actions/encodings/offset.js +20 -13
  57. package/src/actions/encodings/position/apply.js +53 -7
  58. package/src/actions/encodings/position/index.js +10 -2
  59. package/src/actions/encodings/position/policies/bar.js +9 -0
  60. package/src/actions/encodings/position/resolve.js +24 -7
  61. package/src/actions/encodings/remove.js +9 -4
  62. package/src/actions/encodings/ruleAppearance.js +1 -23
  63. package/src/actions/encodings/seriesLayout.js +1 -0
  64. package/src/actions/encodings/shared.js +82 -14
  65. package/src/actions/encodings/stroke.js +226 -0
  66. package/src/actions/errorBands/create.js +23 -3
  67. package/src/actions/errorBands/edit.js +21 -6
  68. package/src/actions/errorBars/create.js +35 -7
  69. package/src/actions/errorBars/edit.js +19 -4
  70. package/src/actions/facets/actions.js +237 -57
  71. package/src/actions/facets/derive.js +91 -26
  72. package/src/actions/gradientPlots/components.js +10 -2
  73. package/src/actions/gradientPlots/edit.js +14 -4
  74. package/src/actions/gradientPlots/materialize.js +3 -1
  75. package/src/actions/gradientPlots/options.js +10 -2
  76. package/src/actions/guides/applicability.js +8 -2
  77. package/src/actions/guides/axes/labels.js +58 -12
  78. package/src/actions/guides/axes/lines.js +6 -2
  79. package/src/actions/guides/axes/parallel/resolve.js +6 -2
  80. package/src/actions/guides/axes/tickGroups.js +2 -1
  81. package/src/actions/guides/axes/ticks.js +6 -2
  82. package/src/actions/guides/axes/titles.js +11 -3
  83. package/src/actions/guides/grids/resolve.js +7 -2
  84. package/src/actions/guides/guides.js +19 -3
  85. package/src/actions/guides/legends/blocks.js +426 -0
  86. package/src/actions/guides/legends/categorical/actions.js +134 -48
  87. package/src/actions/guides/legends/categorical/components.js +17 -12
  88. package/src/actions/guides/legends/categorical/index.js +37 -33
  89. package/src/actions/guides/legends/categorical/layout.js +97 -15
  90. package/src/actions/guides/legends/categorical/options.js +2 -2
  91. package/src/actions/guides/legends/categorical/recipes.js +111 -20
  92. package/src/actions/guides/legends/categorical/resolve.js +12 -8
  93. package/src/actions/guides/legends/categorical/symbols.js +85 -30
  94. package/src/actions/guides/legends/continuous/common.js +30 -12
  95. package/src/actions/guides/legends/continuous/gradient.js +10 -7
  96. package/src/actions/guides/legends/continuous/index.js +2 -0
  97. package/src/actions/guides/legends/continuous/interval.js +8 -3
  98. package/src/actions/guides/legends/continuous/opacity.js +8 -5
  99. package/src/actions/guides/legends/continuous/stroke.js +525 -0
  100. package/src/actions/guides/legends/creation.js +14 -1
  101. package/src/actions/guides/legends/edit.js +158 -59
  102. package/src/actions/guides/legends/index.js +2 -0
  103. package/src/actions/guides/legends/lane.js +54 -19
  104. package/src/actions/guides/legends/lifecycle.js +19 -8
  105. package/src/actions/guides/legends/remove.js +13 -3
  106. package/src/actions/guides/legends/sampling.js +140 -0
  107. package/src/actions/guides/legends/size.js +93 -40
  108. package/src/actions/guides/legends/strokeWidth.js +34 -28
  109. package/src/actions/guides/legends/target.js +112 -1
  110. package/src/actions/guides/legends/transition.js +165 -16
  111. package/src/actions/guides/polar/axes/facade.js +4 -4
  112. package/src/actions/guides/polar/axes/labels.js +24 -5
  113. package/src/actions/guides/polar/axes/lines.js +10 -4
  114. package/src/actions/guides/polar/axes/shared.js +16 -0
  115. package/src/actions/guides/polar/axes/ticks.js +1 -1
  116. package/src/actions/guides/polar/axes/titles.js +1 -1
  117. package/src/actions/guides/polar/grids.js +1 -1
  118. package/src/actions/guides/polar/resolve.js +12 -8
  119. package/src/actions/index.js +14 -3
  120. package/src/actions/marks/arc/actions.js +77 -19
  121. package/src/actions/marks/area/actions.js +34 -9
  122. package/src/actions/marks/area/materialize.js +17 -1
  123. package/src/actions/marks/bar/create.js +11 -2
  124. package/src/actions/marks/bar/edit.js +20 -3
  125. package/src/actions/marks/bar/materialize.js +22 -2
  126. package/src/actions/marks/index.js +10 -1
  127. package/src/actions/marks/line/actions.js +37 -14
  128. package/src/actions/marks/line/materialize.js +29 -10
  129. package/src/actions/marks/point/create.js +8 -2
  130. package/src/actions/marks/point/edit.js +18 -6
  131. package/src/actions/marks/point/materialize.js +49 -15
  132. package/src/actions/marks/rect/actions.js +33 -12
  133. package/src/actions/marks/references.js +601 -30
  134. package/src/actions/marks/remove.js +71 -1
  135. package/src/actions/marks/rule/actions.js +47 -10
  136. package/src/actions/marks/shared.js +1 -1
  137. package/src/actions/marks/text/actions.js +74 -9
  138. package/src/actions/marks/text/index.js +4 -0
  139. package/src/actions/marks/text/layout.js +154 -6
  140. package/src/actions/marks/text/removal.js +173 -0
  141. package/src/actions/marks/text/selection.js +73 -0
  142. package/src/actions/marks/tick/actions.js +22 -5
  143. package/src/actions/primitives/editGraphics.js +26 -0
  144. package/src/actions/primitives/semantic.js +2 -1
  145. package/src/actions/primitives/semanticAction.js +83 -10
  146. package/src/actions/primitives/semanticValidation/guide.js +1 -1
  147. package/src/actions/primitives/semanticValidation/index.js +9 -1
  148. package/src/actions/primitives/semanticValidation/layer.js +5 -0
  149. package/src/actions/primitives/semanticValidation/scale.js +28 -7
  150. package/src/actions/regression/components.js +26 -11
  151. package/src/actions/regression/create.js +10 -2
  152. package/src/actions/regression/edit.js +21 -7
  153. package/src/actions/resources/index.js +7 -0
  154. package/src/actions/resources/remove.js +172 -0
  155. package/src/actions/scales/channels.js +212 -0
  156. package/src/actions/scales/consumers/common.js +1 -1
  157. package/src/actions/scales/consumers/families.js +3 -2
  158. package/src/actions/scales/consumers/index.js +19 -2
  159. package/src/actions/scales/consumers/seriesLayout.js +28 -14
  160. package/src/actions/scales/create.js +54 -22
  161. package/src/actions/scales/definitions.js +94 -40
  162. package/src/actions/scales/edit.js +66 -11
  163. package/src/actions/scales/editPolicy.js +81 -11
  164. package/src/actions/scales/index.js +6 -0
  165. package/src/actions/scales/materialize.js +4 -3
  166. package/src/actions/scales/offset.js +48 -0
  167. package/src/actions/scales/parallel.js +71 -0
  168. package/src/actions/scales/preview.js +111 -10
  169. package/src/actions/selection/actions.js +154 -30
  170. package/src/actions/selection/index.js +3 -0
  171. package/src/actions/theme/actions.js +68 -13
  172. package/src/actions/theme/composition.js +238 -0
  173. package/src/actions/theme/index.js +9 -2
  174. package/src/actions/theme/reconcile.js +315 -67
  175. package/src/actions/theme/state.js +160 -0
  176. package/src/actions/violinPlots/create.js +5 -2
  177. package/src/actions/violinPlots/edit.js +1 -0
  178. package/src/core/action.js +10 -0
  179. package/src/core/compositionState.js +6 -1
  180. package/src/core/programState.js +20 -0
  181. package/src/core/resourceReferences.js +332 -0
  182. package/src/core/vocabulary.js +16 -3
  183. package/src/grammar/bars/aggregate.js +4 -1
  184. package/src/grammar/bars/geometry.js +44 -0
  185. package/src/grammar/bin.js +54 -9
  186. package/src/grammar/complete.js +279 -0
  187. package/src/grammar/computed.js +265 -64
  188. package/src/grammar/coordinates.js +37 -0
  189. package/src/grammar/density.js +239 -37
  190. package/src/grammar/displayLabels.js +57 -0
  191. package/src/grammar/facets/dependencies.js +133 -1
  192. package/src/grammar/facets/guides.js +3 -0
  193. package/src/grammar/facets/index.js +7 -47
  194. package/src/grammar/facets/scales.js +15 -18
  195. package/src/grammar/impute.js +340 -0
  196. package/src/grammar/markLabelSelection.js +57 -0
  197. package/src/grammar/markLabels.js +18 -1
  198. package/src/grammar/normalize.js +366 -0
  199. package/src/grammar/pathSeries.js +26 -8
  200. package/src/grammar/pointShapes.js +13 -4
  201. package/src/grammar/polar.js +90 -8
  202. package/src/grammar/regression/index.js +1 -0
  203. package/src/grammar/regression/parameters.js +23 -0
  204. package/src/grammar/roundedRect.js +180 -0
  205. package/src/grammar/rules.js +1 -0
  206. package/src/grammar/scales/colorConsumers.js +20 -1
  207. package/src/grammar/scales/continuous.js +2 -2
  208. package/src/grammar/scales/definition.js +27 -4
  209. package/src/grammar/scales/index.js +1 -0
  210. package/src/grammar/scales/ordinal.js +12 -3
  211. package/src/grammar/scales/policies.js +2 -2
  212. package/src/grammar/scales/size.js +456 -0
  213. package/src/grammar/schemas/concreteGraphic.js +14 -2
  214. package/src/grammar/schemas/graphic.js +15 -0
  215. package/src/grammar/schemas/graphicBounds.js +179 -30
  216. package/src/grammar/schemas/semanticPath.js +7 -2
  217. package/src/grammar/statisticalReference.js +103 -0
  218. package/src/grammar/strokeStyle.js +77 -0
  219. package/src/grammar/summary.js +78 -16
  220. package/src/grammar/timeUnit.js +216 -5
  221. package/src/grammar/transformTopology.js +4 -0
  222. package/src/grammar/transforms.js +394 -28
  223. package/src/grammar/weightedStatistics.js +374 -0
  224. package/src/grammar/window.js +221 -16
  225. package/src/layout/aspect.js +80 -0
  226. package/src/layout/facets.js +59 -5
  227. package/src/layout/labels.js +343 -0
  228. package/src/materialization/bars/aggregate.js +25 -2
  229. package/src/materialization/bars/histogram.js +84 -24
  230. package/src/materialization/bars/ranged.js +19 -3
  231. package/src/materialization/bars/resolve.js +7 -4
  232. package/src/materialization/composition.js +3 -1
  233. package/src/materialization/coordinateBounds.js +204 -0
  234. package/src/materialization/dependencies.js +36 -0
  235. package/src/materialization/facetGuides/legacyCategorical.js +3 -0
  236. package/src/materialization/facetGuides/placement.js +8 -2
  237. package/src/materialization/facetGuides/preparation.js +12 -7
  238. package/src/materialization/facetHeaders.js +346 -0
  239. package/src/materialization/facets.js +15 -65
  240. package/src/materialization/guides/resources.js +26 -0
  241. package/src/materialization/legends.js +1 -1
  242. package/src/materialization/marks/index.js +11 -5
  243. package/src/materialization/marks/policies.js +2 -1
  244. package/src/materialization/rect.js +25 -12
  245. package/src/materialization/rectConfig.js +5 -1
  246. package/src/materialization/scales/map.js +5 -3
  247. package/src/materialization/scales/policies/binnedPosition.js +2 -2
  248. package/src/materialization/scales/policies/offset.js +50 -8
  249. package/src/materialization/scales/policies/series.js +4 -1
  250. package/src/materialization/scales/resolve.js +22 -6
  251. package/src/materialization/selection/items/arc.js +28 -4
  252. package/src/materialization/selection/items/bar.js +30 -3
  253. package/src/materialization/selection/items/common.js +19 -4
  254. package/src/materialization/selection/items/rect.js +28 -4
  255. package/src/materialization/selection/path.js +1 -1
  256. package/src/materialization/selection/point.js +3 -1
  257. package/src/materialization/text.js +265 -14
  258. package/src/renderers/canvas/circle.js +2 -3
  259. package/src/renderers/canvas/line.js +2 -3
  260. package/src/renderers/canvas/native.js +4 -4
  261. package/src/renderers/canvas/path.js +2 -3
  262. package/src/renderers/canvas/rect.js +2 -3
  263. package/src/renderers/canvas/stroke.js +11 -0
  264. package/src/renderers/svg.js +19 -0
  265. package/src/selectors/datasets.js +32 -1
  266. package/src/selectors/layers.js +4 -0
  267. package/src/theme/defaults.js +101 -0
  268. package/types/basic.d.ts +6 -0
  269. package/types/index.d.ts +85 -0
  270. package/types/program.d.ts +910 -117
@@ -3,6 +3,7 @@ import {
3
3
  resolveTextBounds
4
4
  } from "../../core/textMetrics.js";
5
5
  import { interpolateNumber } from "../numeric.js";
6
+ import { resolveStrokeDetails } from "../strokeStyle.js";
6
7
  import {
7
8
  findGraphic,
8
9
  findGraphicParent,
@@ -174,15 +175,101 @@ function endpointDirection(start, command, end, reverse = false) {
174
175
  return undefined;
175
176
  }
176
177
 
177
- function includeMiter(bounds, point, incoming, outgoing, strokeExtent) {
178
+ function includeCircle(bounds, point, radius) {
179
+ return includeExtent(
180
+ bounds,
181
+ point.x - radius,
182
+ point.x + radius,
183
+ point.y - radius,
184
+ point.y + radius
185
+ );
186
+ }
187
+
188
+ function includeEndpointCap(
189
+ bounds,
190
+ point,
191
+ direction,
192
+ strokeExtent,
193
+ lineCap,
194
+ atStart
195
+ ) {
196
+ if (lineCap === "butt" || direction === undefined) return bounds;
197
+ if (lineCap === "round") {
198
+ return includeCircle(bounds, point, strokeExtent);
199
+ }
200
+ const sign = atStart ? -1 : 1;
201
+ const center = {
202
+ x: point.x + direction.x * strokeExtent * sign,
203
+ y: point.y + direction.y * strokeExtent * sign
204
+ };
205
+ const normal = { x: -direction.y, y: direction.x };
206
+ return includeExtent(
207
+ bounds,
208
+ center.x - Math.abs(normal.x) * strokeExtent,
209
+ center.x + Math.abs(normal.x) * strokeExtent,
210
+ center.y - Math.abs(normal.y) * strokeExtent,
211
+ center.y + Math.abs(normal.y) * strokeExtent
212
+ );
213
+ }
214
+
215
+ function segmentStrokeBounds(start, end, strokeExtent, lineCap = "butt") {
216
+ const command = { op: "L", x: end.x, y: end.y };
217
+ const direction = endpointDirection(start, command, end);
218
+ let bounds = includeExtent(
219
+ undefined,
220
+ start.x,
221
+ start.x,
222
+ start.y,
223
+ start.y
224
+ );
225
+ bounds = includeExtent(bounds, end.x, end.x, end.y, end.y);
226
+ if (direction === undefined) {
227
+ return lineCap === "butt"
228
+ ? bounds
229
+ : includeCircle(bounds, start, strokeExtent);
230
+ }
231
+ const normal = { x: -direction.y, y: direction.x };
232
+ for (const point of [start, end]) {
233
+ bounds = includeExtent(
234
+ bounds,
235
+ point.x - Math.abs(normal.x) * strokeExtent,
236
+ point.x + Math.abs(normal.x) * strokeExtent,
237
+ point.y - Math.abs(normal.y) * strokeExtent,
238
+ point.y + Math.abs(normal.y) * strokeExtent
239
+ );
240
+ }
241
+ bounds = includeEndpointCap(
242
+ bounds, start, direction, strokeExtent, lineCap, true
243
+ );
244
+ bounds = includeEndpointCap(
245
+ bounds, end, direction, strokeExtent, lineCap, false
246
+ );
247
+ return bounds;
248
+ }
249
+
250
+ function includeJoin(
251
+ bounds,
252
+ point,
253
+ incoming,
254
+ outgoing,
255
+ strokeExtent,
256
+ lineJoin,
257
+ miterLimit
258
+ ) {
178
259
  if (incoming === undefined || outgoing === undefined) return;
179
260
  const cross = incoming.x * outgoing.y - incoming.y * outgoing.x;
180
261
  if (Math.abs(cross) <= EPSILON) return;
262
+ if (lineJoin === "round") {
263
+ includeCircle(bounds, point, strokeExtent);
264
+ return;
265
+ }
266
+ if (lineJoin === "bevel") return;
181
267
  const normalX = -incoming.y - outgoing.y;
182
268
  const normalY = incoming.x + outgoing.x;
183
269
  const normalLength = Math.hypot(normalX, normalY);
270
+ if (!(normalLength > EPSILON)) return;
184
271
  const ratio = 2 / normalLength;
185
- if (ratio > 10 * (1 + EPSILON)) return;
272
+ if (ratio > miterLimit * (1 + EPSILON)) return;
186
273
  const distance = strokeExtent * ratio * (cross > 0 ? -1 : 1) / normalLength;
187
274
  includeExtent(
188
275
  bounds,
@@ -193,16 +280,11 @@ function includeMiter(bounds, point, incoming, outgoing, strokeExtent) {
193
280
  );
194
281
  }
195
282
 
196
- function pathStrokeBounds(commands, bounds, strokeExtent) {
197
- const expanded = box(
198
- bounds.left, bounds.right, bounds.top, bounds.bottom, strokeExtent
199
- );
200
- if (!(strokeExtent > 0)) return expanded;
283
+ function pathStrokeBounds(commands, bounds, strokeExtent, details) {
284
+ if (!(strokeExtent > 0)) return bounds;
201
285
  const start = { x: commands[0].x, y: commands[0].y };
202
286
  let current = start;
203
- let firstDirection;
204
- let previousDirection;
205
- let segmentCount = 0;
287
+ const segments = [];
206
288
  for (const command of commands.slice(1)) {
207
289
  const end = command.op === "Z"
208
290
  ? start
@@ -210,31 +292,94 @@ function pathStrokeBounds(commands, bounds, strokeExtent) {
210
292
  const outgoing = endpointDirection(current, command, end);
211
293
  const incoming = endpointDirection(current, command, end, true);
212
294
  if (outgoing !== undefined || incoming !== undefined) {
213
- if (segmentCount > 0) {
214
- includeMiter(expanded, current, previousDirection, outgoing, strokeExtent);
215
- } else {
216
- firstDirection = outgoing;
217
- }
218
- previousDirection = incoming;
219
- segmentCount += 1;
295
+ segments.push({
296
+ start: current,
297
+ end,
298
+ command,
299
+ outgoing,
300
+ incoming
301
+ });
220
302
  }
221
303
  current = end;
222
304
  if (command.op === "Z") break;
223
305
  }
224
- if (commands.at(-1)?.op === "Z" && segmentCount > 1) {
225
- includeMiter(
306
+ let expanded = bounds;
307
+ for (const segment of segments) {
308
+ let segmentBounds;
309
+ if (segment.command.op === "C") {
310
+ const centerline = resolvePathCommandBounds([
311
+ { op: "M", ...segment.start },
312
+ segment.command
313
+ ]);
314
+ segmentBounds = box(
315
+ centerline.left,
316
+ centerline.right,
317
+ centerline.top,
318
+ centerline.bottom,
319
+ strokeExtent
320
+ );
321
+ } else {
322
+ segmentBounds = segmentStrokeBounds(
323
+ segment.start,
324
+ segment.end,
325
+ strokeExtent,
326
+ "butt"
327
+ );
328
+ }
329
+ expanded = unionBounds([expanded, segmentBounds]);
330
+ }
331
+ for (let index = 1; index < segments.length; index += 1) {
332
+ includeJoin(
333
+ expanded,
334
+ segments[index].start,
335
+ segments[index - 1].incoming,
336
+ segments[index].outgoing,
337
+ strokeExtent,
338
+ details.lineJoin,
339
+ details.miterLimit
340
+ );
341
+ }
342
+ const closed = commands.at(-1)?.op === "Z";
343
+ if (closed && segments.length > 1) {
344
+ includeJoin(
226
345
  expanded,
227
346
  start,
228
- previousDirection,
229
- firstDirection,
230
- strokeExtent
347
+ segments.at(-1).incoming,
348
+ segments[0].outgoing,
349
+ strokeExtent,
350
+ details.lineJoin,
351
+ details.miterLimit
352
+ );
353
+ } else if (!closed && segments.length > 0) {
354
+ expanded = includeEndpointCap(
355
+ expanded,
356
+ segments[0].start,
357
+ segments[0].outgoing,
358
+ strokeExtent,
359
+ details.lineCap,
360
+ true
361
+ );
362
+ expanded = includeEndpointCap(
363
+ expanded,
364
+ segments.at(-1).end,
365
+ segments.at(-1).incoming,
366
+ strokeExtent,
367
+ details.lineCap,
368
+ false
231
369
  );
232
370
  }
233
371
  return expanded;
234
372
  }
235
373
 
374
+ function hasActiveStroke(properties) {
375
+ return typeof properties.stroke === "string" &&
376
+ (properties.strokeWidth ?? 0) > 0;
377
+ }
378
+
236
379
  function primitiveBounds(type, properties = {}) {
237
- const strokeExtent = (properties.strokeWidth ?? 0) / 2;
380
+ const strokeExtent = hasActiveStroke(properties)
381
+ ? properties.strokeWidth / 2
382
+ : 0;
238
383
  if (type === "circle") {
239
384
  if (![properties.x, properties.y, properties.radius].every(Number.isFinite)) {
240
385
  return undefined;
@@ -261,12 +406,11 @@ function primitiveBounds(type, properties = {}) {
261
406
  if (type === "line") {
262
407
  if (![properties.x1, properties.y1, properties.x2, properties.y2]
263
408
  .every(Number.isFinite)) return undefined;
264
- return box(
265
- Math.min(properties.x1, properties.x2),
266
- Math.max(properties.x1, properties.x2),
267
- Math.min(properties.y1, properties.y2),
268
- Math.max(properties.y1, properties.y2),
269
- strokeExtent
409
+ return segmentStrokeBounds(
410
+ { x: properties.x1, y: properties.y1 },
411
+ { x: properties.x2, y: properties.y2 },
412
+ strokeExtent,
413
+ resolveStrokeDetails(properties).lineCap
270
414
  );
271
415
  }
272
416
  if (type === "text") {
@@ -283,7 +427,12 @@ function primitiveBounds(type, properties = {}) {
283
427
  if (!Array.isArray(commands)) return undefined;
284
428
  const bounds = resolvePathCommandBounds(commands);
285
429
  if (bounds === undefined) return undefined;
286
- return pathStrokeBounds(commands, bounds, strokeExtent);
430
+ return pathStrokeBounds(
431
+ commands,
432
+ bounds,
433
+ strokeExtent,
434
+ resolveStrokeDetails(properties)
435
+ );
287
436
  }
288
437
  return undefined;
289
438
  }
@@ -18,6 +18,7 @@ const ENCODING_PATHS = Object.freeze([
18
18
  "encoding.x.bin.maxBins",
19
19
  "encoding.x.bin.step",
20
20
  "encoding.x.bin.boundaries",
21
+ "encoding.x.weight",
21
22
  "encoding.color.layout",
22
23
  "encoding.color.aggregate",
23
24
  "encoding.group.fields",
@@ -77,7 +78,7 @@ const ENTITY_PATHS = Object.freeze({
77
78
  },
78
79
  coordinate: {
79
80
  collection: "coordinates",
80
- properties: new Set(["type"])
81
+ properties: new Set(["type", "aspect", "polarFrame"])
81
82
  }
82
83
  });
83
84
 
@@ -101,6 +102,9 @@ const GUIDE_PATHS = new Set([
101
102
  "legend.color.scale",
102
103
  "legend.color.title",
103
104
  "legend.color.order",
105
+ "legend.stroke.scale",
106
+ "legend.stroke.title",
107
+ "legend.stroke.order",
104
108
  "legend.size.scale",
105
109
  "legend.size.title",
106
110
  "legend.strokeWidth.scale",
@@ -132,6 +136,7 @@ const GUIDE_REMOVABLE_CONTAINERS = new Set([
132
136
  "grid.theta",
133
137
  "grid.radial",
134
138
  "legend.color",
139
+ "legend.stroke",
135
140
  "legend.size",
136
141
  "legend.strokeWidth",
137
142
  "legend.opacity",
@@ -151,7 +156,7 @@ export function parseSemanticPath(property, { allowContainer = false } = {}) {
151
156
 
152
157
  if (allowContainer) {
153
158
  const entityMatch = property.match(
154
- new RegExp(`^(dataset|layer|scale)\\[(${USER_ID_SOURCE})\\]$`)
159
+ new RegExp(`^(dataset|layer|scale|coordinate)\\[(${USER_ID_SOURCE})\\]$`)
155
160
  );
156
161
  if (entityMatch) {
157
162
  const [, kind, id] = entityMatch;
@@ -0,0 +1,103 @@
1
+ import { aggregateRows } from "./aggregate.js";
2
+ import { cloneAndFreeze, isPlainObject } from "../core/immutable.js";
3
+
4
+ const STATISTIC_KEYS = Object.freeze(["op", "p"]);
5
+ const SIMPLE_STATISTICS = new Set(["mean", "median", "min", "max"]);
6
+ const POPULATIONS = new Set(["boundData", "visibleItems"]);
7
+ const TRANSFORM_KEYS = Object.freeze(["type", "target"]);
8
+
9
+ function rejectUnknownKeys(value, supported, label) {
10
+ const unknown = Object.keys(value).find(key => !supported.includes(key));
11
+ if (unknown !== undefined) {
12
+ throw new Error(`Unknown ${label} property "${unknown}".`);
13
+ }
14
+ }
15
+
16
+ export function normalizeReferenceStatistic(value, label = "Reference statistic") {
17
+ if (!isPlainObject(value)) {
18
+ throw new TypeError(`${label} must be a plain object.`);
19
+ }
20
+ rejectUnknownKeys(value, STATISTIC_KEYS, label.toLowerCase());
21
+ if (SIMPLE_STATISTICS.has(value.op)) {
22
+ if (Object.hasOwn(value, "p")) {
23
+ throw new Error(`${label} ${value.op} does not accept p.`);
24
+ }
25
+ return cloneAndFreeze({ op: value.op });
26
+ }
27
+ if (value.op !== "quantile") {
28
+ throw new Error(`Unsupported ${label.toLowerCase()} "${value.op ?? "unknown"}".`);
29
+ }
30
+ if (!Number.isFinite(value.p) || value.p < 0 || value.p > 1) {
31
+ throw new RangeError(`${label} quantile p must be between 0 and 1.`);
32
+ }
33
+ return cloneAndFreeze({ op: "quantile", p: value.p });
34
+ }
35
+
36
+ export function normalizeReferenceStatistics(value, count, label) {
37
+ if (!Array.isArray(value) || value.length !== count) {
38
+ throw new TypeError(`${label} requires exactly ${count} statistic${count === 1 ? "" : "s"}.`);
39
+ }
40
+ return Object.freeze(value.map((statistic, index) =>
41
+ normalizeReferenceStatistic(statistic, `${label} statistic ${index + 1}`)
42
+ ));
43
+ }
44
+
45
+ export function normalizeReferencePopulation(value, label = "Reference population") {
46
+ const population = value ?? "boundData";
47
+ if (!POPULATIONS.has(population)) {
48
+ throw new Error(`${label} must be boundData or visibleItems.`);
49
+ }
50
+ return population;
51
+ }
52
+
53
+ export function normalizeReferenceField(value, label = "Reference field") {
54
+ if (value === undefined) return cloneAndFreeze({ kind: "axis" });
55
+ if (typeof value !== "string" || value.length === 0) {
56
+ throw new TypeError(`${label} must be a non-empty string.`);
57
+ }
58
+ return cloneAndFreeze({ kind: "explicit", field: value });
59
+ }
60
+
61
+ export function normalizeStatisticalReferenceTransform({ target } = {}) {
62
+ const transform = { type: "statisticalReference", target };
63
+ validateStatisticalReferenceTransform(transform);
64
+ return cloneAndFreeze(transform);
65
+ }
66
+
67
+ export function validateStatisticalReferenceTransform(transform) {
68
+ if (!isPlainObject(transform)) {
69
+ throw new TypeError("Statistical reference transform must be a plain object.");
70
+ }
71
+ rejectUnknownKeys(
72
+ transform,
73
+ TRANSFORM_KEYS,
74
+ "statistical reference transform"
75
+ );
76
+ if (transform.type !== "statisticalReference") {
77
+ throw new Error(`Unsupported statistical reference transform "${transform.type}".`);
78
+ }
79
+ if (typeof transform.target !== "string" || transform.target.length === 0) {
80
+ throw new TypeError("Statistical reference transform target must be a non-empty string.");
81
+ }
82
+ return transform;
83
+ }
84
+
85
+ export function deriveStatisticalReferenceValues(values, statistics, label) {
86
+ if (!Array.isArray(values) || values.length === 0) {
87
+ throw new Error(`${label} population must contain at least one value.`);
88
+ }
89
+ values.forEach((value, index) => {
90
+ if (!Number.isFinite(value)) {
91
+ throw new TypeError(
92
+ `${label} population value ${index} must be a finite number.`
93
+ );
94
+ }
95
+ });
96
+ return statistics.map(statistic => aggregateRows(
97
+ values.map(value => ({ value })),
98
+ "value",
99
+ statistic.op === "quantile"
100
+ ? { op: "quantile", probability: statistic.p }
101
+ : statistic.op
102
+ ));
103
+ }
@@ -0,0 +1,77 @@
1
+ import { freezeOwned, isPlainObject } from "../core/immutable.js";
2
+
3
+ export const DEFAULT_LINE_CAP = "butt";
4
+ export const DEFAULT_LINE_JOIN = "miter";
5
+ export const DEFAULT_MITER_LIMIT = 10;
6
+
7
+ export const LINE_CAPS = Object.freeze(["butt", "round", "square"]);
8
+ export const LINE_JOINS = Object.freeze(["miter", "round", "bevel"]);
9
+ export const STROKE_STYLE_PROPERTIES = Object.freeze([
10
+ "lineCap",
11
+ "lineJoin",
12
+ "miterLimit"
13
+ ]);
14
+
15
+ function validateEnum(value, values, property, label) {
16
+ if (typeof value !== "string") {
17
+ throw new TypeError(`${label} ${property} must be a string.`);
18
+ }
19
+ if (!values.includes(value)) {
20
+ throw new Error(
21
+ `${label} ${property} must be one of ${values.join(", ")}.`
22
+ );
23
+ }
24
+ return value;
25
+ }
26
+
27
+ export function validateLineCap(value, label = "Stroke style") {
28
+ return validateEnum(value, LINE_CAPS, "lineCap", label);
29
+ }
30
+
31
+ export function validateLineJoin(value, label = "Stroke style") {
32
+ return validateEnum(value, LINE_JOINS, "lineJoin", label);
33
+ }
34
+
35
+ export function validateMiterLimit(value, label = "Stroke style") {
36
+ if (!Number.isFinite(value)) {
37
+ throw new TypeError(`${label} miterLimit must be a finite number.`);
38
+ }
39
+ if (!(value > 0)) {
40
+ throw new RangeError(`${label} miterLimit must be positive.`);
41
+ }
42
+ return value;
43
+ }
44
+
45
+ export function resolveStrokeDetails(request = {}) {
46
+ if (!isPlainObject(request)) {
47
+ throw new TypeError("Stroke style details must be a plain object.");
48
+ }
49
+ return freezeOwned({
50
+ lineCap: request.lineCap === undefined
51
+ ? DEFAULT_LINE_CAP
52
+ : validateLineCap(request.lineCap),
53
+ lineJoin: request.lineJoin === undefined
54
+ ? DEFAULT_LINE_JOIN
55
+ : validateLineJoin(request.lineJoin),
56
+ miterLimit: request.miterLimit === undefined
57
+ ? DEFAULT_MITER_LIMIT
58
+ : validateMiterLimit(request.miterLimit)
59
+ });
60
+ }
61
+
62
+ export function requestedStrokeDetails(request = {}, label = "Stroke style") {
63
+ if (!isPlainObject(request)) {
64
+ throw new TypeError(`${label} details must be a plain object.`);
65
+ }
66
+ const result = {};
67
+ if (Object.hasOwn(request, "lineCap")) {
68
+ result.lineCap = validateLineCap(request.lineCap, label);
69
+ }
70
+ if (Object.hasOwn(request, "lineJoin")) {
71
+ result.lineJoin = validateLineJoin(request.lineJoin, label);
72
+ }
73
+ if (Object.hasOwn(request, "miterLimit")) {
74
+ result.miterLimit = validateMiterLimit(request.miterLimit, label);
75
+ }
76
+ return freezeOwned(result);
77
+ }
@@ -5,9 +5,18 @@ import {
5
5
  validateAggregate,
6
6
  validateAggregateFieldValues
7
7
  } from "./aggregate.js";
8
+ import {
9
+ calculateWeightedAggregate,
10
+ normalizeStatisticalWeight,
11
+ readStatisticalWeights,
12
+ summarizeStatisticalWeights,
13
+ validateWeightedAggregate,
14
+ validateWeightedNumericFields,
15
+ weightedRows
16
+ } from "./weightedStatistics.js";
8
17
 
9
18
  const TRANSFORM_KEYS = Object.freeze([
10
- "type", "groupBy", "aggregates", "members"
19
+ "type", "groupBy", "aggregates", "members", "weight"
11
20
  ]);
12
21
  const AGGREGATE_KEYS = Object.freeze(["op", "field", "as"]);
13
22
  const NOMINAL_OPERATIONS = new Set(["distinct", "valid", "missing"]);
@@ -42,14 +51,17 @@ function normalizeAggregate(value) {
42
51
  };
43
52
  }
44
53
 
45
- export function normalizeSummaryTransform({ groupBy, aggregates, members } = {}) {
54
+ export function normalizeSummaryTransform({ groupBy, aggregates, members, weight } = {}) {
46
55
  const transform = {
47
56
  type: "summary",
48
57
  groupBy: normalizeGroupBy(groupBy),
49
58
  aggregates: Array.isArray(aggregates)
50
59
  ? aggregates.map(normalizeAggregate)
51
60
  : aggregates,
52
- ...(members === undefined ? {} : { members })
61
+ ...(members === undefined ? {} : { members }),
62
+ ...(weight === undefined
63
+ ? {}
64
+ : { weight: normalizeStatisticalWeight(weight, "Summary weight") })
53
65
  };
54
66
  validateSummaryTransform(transform);
55
67
  return cloneAndFreeze(transform);
@@ -85,6 +97,7 @@ export function validateSummaryTransform(transform) {
85
97
  }
86
98
  rejectUnknownKeys(aggregate, AGGREGATE_KEYS, `summary aggregate ${index}`);
87
99
  const operation = validateAggregate(aggregate.op);
100
+ if (transform.weight !== undefined) validateWeightedAggregate(operation);
88
101
  if (operation === "count") {
89
102
  if (Object.hasOwn(aggregate, "field")) {
90
103
  throw new Error("Summary count does not accept a field.");
@@ -104,6 +117,9 @@ export function validateSummaryTransform(transform) {
104
117
  throw new Error(`Summary members field "${members}" collides with another output.`);
105
118
  }
106
119
  }
120
+ if (transform.weight !== undefined) {
121
+ normalizeStatisticalWeight(transform.weight, "Summary weight");
122
+ }
107
123
  return transform;
108
124
  }
109
125
 
@@ -136,6 +152,9 @@ function requireSourceFields(rows, transform) {
136
152
  throw new Error(`Summary source does not contain order field "${orderBy}".`);
137
153
  }
138
154
  }
155
+ if (transform.weight !== undefined && !fields.has(transform.weight.field)) {
156
+ throw new Error(`Summary source does not contain weight field "${transform.weight.field}".`);
157
+ }
139
158
  }
140
159
 
141
160
  function validateAggregateValues(rows, aggregate) {
@@ -150,21 +169,42 @@ function validateAggregateValues(rows, aggregate) {
150
169
  export function deriveSummaryRows(rows, transform) {
151
170
  validateSummaryTransform(transform);
152
171
  requireSourceFields(rows, transform);
153
- for (const aggregate of transform.aggregates) {
154
- validateAggregateValues(rows, aggregate);
172
+ let weightEntries;
173
+ if (transform.weight === undefined) {
174
+ for (const aggregate of transform.aggregates) {
175
+ validateAggregateValues(rows, aggregate);
176
+ }
177
+ } else {
178
+ weightEntries = readStatisticalWeights(rows, transform.weight, "Summary").entries;
179
+ validateWeightedNumericFields(
180
+ weightEntries,
181
+ [...new Set(transform.aggregates.flatMap(aggregate =>
182
+ aggregate.field === undefined ? [] : [aggregate.field]
183
+ ))],
184
+ "Summary"
185
+ );
155
186
  }
156
187
 
157
188
  const groups = new Map();
158
189
  if (transform.groupBy.length === 0) {
159
- groups.set("all", { values: {}, rows });
190
+ groups.set("all", {
191
+ values: {},
192
+ rows,
193
+ ...(weightEntries === undefined ? {} : { entries: weightEntries })
194
+ });
160
195
  } else {
161
- rows.forEach(row => {
196
+ rows.forEach((row, index) => {
162
197
  const values = Object.fromEntries(transform.groupBy.map(field => [field, row[field]]));
163
198
  const key = transform.groupBy.map(field =>
164
199
  scalarKey(row[field], `Summary group field "${field}"`)
165
200
  ).join("|");
166
- const group = groups.get(key) ?? { values, rows: [] };
201
+ const group = groups.get(key) ?? {
202
+ values,
203
+ rows: [],
204
+ ...(weightEntries === undefined ? {} : { entries: [] })
205
+ };
167
206
  group.rows.push(row);
207
+ if (weightEntries !== undefined) group.entries.push(weightEntries[index]);
168
208
  groups.set(key, group);
169
209
  });
170
210
  }
@@ -172,12 +212,34 @@ export function deriveSummaryRows(rows, transform) {
172
212
  throw new RangeError(`Summary output cannot exceed ${MAX_OUTPUT_ROWS} groups.`);
173
213
  }
174
214
 
175
- return [...groups.values()].map(group => ({
176
- ...group.values,
177
- ...Object.fromEntries(transform.aggregates.map(aggregate => [
178
- aggregate.as,
179
- aggregateRows(group.rows, aggregate.field ?? "__row", aggregate.op)
180
- ])),
181
- ...(transform.members === undefined ? {} : { [transform.members]: group.rows })
182
- }));
215
+ return [...groups.values()].map(group => {
216
+ const weightSummary = transform.weight === undefined
217
+ ? undefined
218
+ : summarizeStatisticalWeights(
219
+ group.entries,
220
+ transform.weight.kind,
221
+ "Summary group"
222
+ );
223
+ return {
224
+ ...group.values,
225
+ ...Object.fromEntries(transform.aggregates.map(aggregate => [
226
+ aggregate.as,
227
+ weightSummary === undefined
228
+ ? aggregateRows(group.rows, aggregate.field ?? "__row", aggregate.op)
229
+ : calculateWeightedAggregate(
230
+ weightSummary,
231
+ aggregate.field,
232
+ aggregate.op,
233
+ `Summary aggregate "${aggregate.as}"`
234
+ )
235
+ ])),
236
+ ...(transform.members === undefined
237
+ ? {}
238
+ : {
239
+ [transform.members]: weightSummary === undefined
240
+ ? group.rows
241
+ : weightedRows(weightSummary)
242
+ })
243
+ };
244
+ });
183
245
  }