ggaction 0.0.1

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 (222) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/LICENSE +21 -0
  3. package/README.md +108 -0
  4. package/package.json +84 -0
  5. package/src/AGENTS.md +119 -0
  6. package/src/ChartProgram.js +10 -0
  7. package/src/actions/boxPlots/components.js +88 -0
  8. package/src/actions/boxPlots/create.js +84 -0
  9. package/src/actions/boxPlots/index.js +10 -0
  10. package/src/actions/boxPlots/materialize.js +183 -0
  11. package/src/actions/boxPlots/options.js +147 -0
  12. package/src/actions/boxPlots/resolve.js +38 -0
  13. package/src/actions/canvas/actions.js +144 -0
  14. package/src/actions/canvas/index.js +6 -0
  15. package/src/actions/coordinates/actions.js +85 -0
  16. package/src/actions/coordinates/index.js +5 -0
  17. package/src/actions/data/box.js +40 -0
  18. package/src/actions/data/create.js +33 -0
  19. package/src/actions/data/density.js +62 -0
  20. package/src/actions/data/derived.js +52 -0
  21. package/src/actions/data/filter.js +168 -0
  22. package/src/actions/data/index.js +32 -0
  23. package/src/actions/data/interval.js +69 -0
  24. package/src/actions/data/regression.js +71 -0
  25. package/src/actions/data/shared.js +25 -0
  26. package/src/actions/encodings/appearance.js +243 -0
  27. package/src/actions/encodings/barWidth.js +60 -0
  28. package/src/actions/encodings/color.js +329 -0
  29. package/src/actions/encodings/density.js +225 -0
  30. package/src/actions/encodings/histogram.js +50 -0
  31. package/src/actions/encodings/index.js +23 -0
  32. package/src/actions/encodings/offset.js +104 -0
  33. package/src/actions/encodings/position/policies/area.js +24 -0
  34. package/src/actions/encodings/position/policies/bar.js +110 -0
  35. package/src/actions/encodings/position/policies/common.js +17 -0
  36. package/src/actions/encodings/position/policies/index.js +25 -0
  37. package/src/actions/encodings/position/policies/line.js +74 -0
  38. package/src/actions/encodings/position/policies/point.js +19 -0
  39. package/src/actions/encodings/position/policies/rule.js +17 -0
  40. package/src/actions/encodings/position/resolve.js +170 -0
  41. package/src/actions/encodings/position.js +176 -0
  42. package/src/actions/encodings/ranged.js +276 -0
  43. package/src/actions/encodings/ruleAppearance.js +47 -0
  44. package/src/actions/encodings/shared.js +164 -0
  45. package/src/actions/encodings/strokeDash.js +145 -0
  46. package/src/actions/errorBands/components.js +81 -0
  47. package/src/actions/errorBands/create.js +159 -0
  48. package/src/actions/errorBands/index.js +7 -0
  49. package/src/actions/errorBands/resolve.js +28 -0
  50. package/src/actions/errorBars/components.js +62 -0
  51. package/src/actions/errorBars/create.js +144 -0
  52. package/src/actions/errorBars/index.js +7 -0
  53. package/src/actions/errorBars/resolve.js +25 -0
  54. package/src/actions/guides/axes/axes.js +204 -0
  55. package/src/actions/guides/axes/axis.js +131 -0
  56. package/src/actions/guides/axes/index.js +17 -0
  57. package/src/actions/guides/axes/labels.js +231 -0
  58. package/src/actions/guides/axes/lines.js +149 -0
  59. package/src/actions/guides/axes/policy.js +155 -0
  60. package/src/actions/guides/axes/tickGroups.js +149 -0
  61. package/src/actions/guides/axes/ticks.js +179 -0
  62. package/src/actions/guides/axes/titles.js +264 -0
  63. package/src/actions/guides/grids/grid.js +228 -0
  64. package/src/actions/guides/grids/index.js +1 -0
  65. package/src/actions/guides/grids/resolve.js +258 -0
  66. package/src/actions/guides/guides.js +138 -0
  67. package/src/actions/guides/index.js +11 -0
  68. package/src/actions/guides/legends/categorical/actions.js +329 -0
  69. package/src/actions/guides/legends/categorical/components.js +140 -0
  70. package/src/actions/guides/legends/categorical/index.js +49 -0
  71. package/src/actions/guides/legends/categorical/layout.js +445 -0
  72. package/src/actions/guides/legends/categorical/options.js +188 -0
  73. package/src/actions/guides/legends/categorical/recipes.js +120 -0
  74. package/src/actions/guides/legends/categorical/resolve.js +131 -0
  75. package/src/actions/guides/legends/categorical/symbols.js +280 -0
  76. package/src/actions/guides/legends/categorical/validation.js +27 -0
  77. package/src/actions/guides/legends/continuous/common.js +273 -0
  78. package/src/actions/guides/legends/continuous/gradient.js +363 -0
  79. package/src/actions/guides/legends/continuous/index.js +25 -0
  80. package/src/actions/guides/legends/continuous/interval.js +234 -0
  81. package/src/actions/guides/legends/continuous/opacity.js +382 -0
  82. package/src/actions/guides/legends/edit.js +314 -0
  83. package/src/actions/guides/legends/index.js +9 -0
  84. package/src/actions/guides/legends/size.js +220 -0
  85. package/src/actions/guides/tickValues.js +84 -0
  86. package/src/actions/index.js +31 -0
  87. package/src/actions/intervals/resolve.js +352 -0
  88. package/src/actions/marks/area.js +369 -0
  89. package/src/actions/marks/bar/create.js +46 -0
  90. package/src/actions/marks/bar/edit.js +90 -0
  91. package/src/actions/marks/bar/index.js +9 -0
  92. package/src/actions/marks/bar/materialize.js +130 -0
  93. package/src/actions/marks/index.js +13 -0
  94. package/src/actions/marks/line.js +248 -0
  95. package/src/actions/marks/point.js +420 -0
  96. package/src/actions/marks/rule.js +287 -0
  97. package/src/actions/marks/shared.js +112 -0
  98. package/src/actions/primitives/createGraphics.js +163 -0
  99. package/src/actions/primitives/editGraphics.js +208 -0
  100. package/src/actions/primitives/index.js +9 -0
  101. package/src/actions/primitives/semantic.js +168 -0
  102. package/src/actions/primitives/semanticValue.js +182 -0
  103. package/src/actions/regression/components.js +216 -0
  104. package/src/actions/regression/create.js +102 -0
  105. package/src/actions/regression/index.js +23 -0
  106. package/src/actions/regression/resolve.js +57 -0
  107. package/src/actions/scales/consumers.js +283 -0
  108. package/src/actions/scales/create.js +148 -0
  109. package/src/actions/scales/definitions.js +319 -0
  110. package/src/actions/scales/edit.js +290 -0
  111. package/src/actions/scales/index.js +11 -0
  112. package/src/actions/scales/materialize.js +466 -0
  113. package/src/actions/scales/quantitativeColor.js +45 -0
  114. package/src/actions/selection/actions.js +384 -0
  115. package/src/actions/selection/index.js +23 -0
  116. package/src/actions/titles/actions.js +235 -0
  117. package/src/actions/titles/index.js +19 -0
  118. package/src/actions/titles/resolve.js +321 -0
  119. package/src/core/ChartProgram.js +316 -0
  120. package/src/core/action.js +120 -0
  121. package/src/core/identifiers.js +28 -0
  122. package/src/core/immutable.js +94 -0
  123. package/src/core/specs.js +29 -0
  124. package/src/core/textMetrics.js +23 -0
  125. package/src/core/validation.js +54 -0
  126. package/src/core/vocabulary.js +58 -0
  127. package/src/extension.js +2 -0
  128. package/src/grammar/aggregate.js +259 -0
  129. package/src/grammar/areaSeries.js +217 -0
  130. package/src/grammar/bars/aggregate.js +98 -0
  131. package/src/grammar/bars/geometry.js +54 -0
  132. package/src/grammar/bars/policy.js +90 -0
  133. package/src/grammar/boxPlot.js +140 -0
  134. package/src/grammar/coordinates.js +25 -0
  135. package/src/grammar/curveCommands.js +356 -0
  136. package/src/grammar/density.js +296 -0
  137. package/src/grammar/filter.js +169 -0
  138. package/src/grammar/histogram.js +332 -0
  139. package/src/grammar/interval.js +343 -0
  140. package/src/grammar/lineSeries.js +197 -0
  141. package/src/grammar/markFilter.js +46 -0
  142. package/src/grammar/markSelection.js +326 -0
  143. package/src/grammar/palettes.js +208 -0
  144. package/src/grammar/pathCommands.js +86 -0
  145. package/src/grammar/pointShapes.js +164 -0
  146. package/src/grammar/positionCompatibility.js +32 -0
  147. package/src/grammar/regression.js +578 -0
  148. package/src/grammar/ruleAppearance.js +12 -0
  149. package/src/grammar/rules.js +90 -0
  150. package/src/grammar/scales/appearance.js +185 -0
  151. package/src/grammar/scales/color.js +349 -0
  152. package/src/grammar/scales/continuous.js +111 -0
  153. package/src/grammar/scales/definition.js +153 -0
  154. package/src/grammar/scales/discretized.js +159 -0
  155. package/src/grammar/scales/fields.js +133 -0
  156. package/src/grammar/scales/index.js +12 -0
  157. package/src/grammar/scales/mapping.js +27 -0
  158. package/src/grammar/scales/ordinal.js +221 -0
  159. package/src/grammar/scales/policies.js +50 -0
  160. package/src/grammar/scales/temporal.js +53 -0
  161. package/src/grammar/scales/transformed.js +236 -0
  162. package/src/grammar/scales/types.js +102 -0
  163. package/src/grammar/scales/validation.js +66 -0
  164. package/src/grammar/scales.js +1 -0
  165. package/src/grammar/schemas/concreteGraphic.js +73 -0
  166. package/src/grammar/schemas/graphic.js +131 -0
  167. package/src/grammar/schemas/graphicBounds.js +146 -0
  168. package/src/grammar/schemas/graphicTree.js +133 -0
  169. package/src/grammar/schemas/mark.js +4 -0
  170. package/src/grammar/schemas/semanticPath.js +174 -0
  171. package/src/grammar/seriesLayout.js +76 -0
  172. package/src/grammar/ticks.js +149 -0
  173. package/src/grammar/transforms.js +37 -0
  174. package/src/index.js +2 -0
  175. package/src/layout/canvas.js +114 -0
  176. package/src/layout/grid.js +17 -0
  177. package/src/layout/legend.js +51 -0
  178. package/src/layout/text.js +62 -0
  179. package/src/layout/title.js +107 -0
  180. package/src/materialization/bars/aggregate.js +184 -0
  181. package/src/materialization/bars/grouped.js +117 -0
  182. package/src/materialization/bars/histogram.js +163 -0
  183. package/src/materialization/bars/ranged.js +53 -0
  184. package/src/materialization/bars/resolve.js +56 -0
  185. package/src/materialization/dataProvenance.js +15 -0
  186. package/src/materialization/density.js +29 -0
  187. package/src/materialization/dependencies.js +134 -0
  188. package/src/materialization/encodings.js +50 -0
  189. package/src/materialization/graphicHierarchy.js +104 -0
  190. package/src/materialization/legends.js +20 -0
  191. package/src/materialization/marks.js +110 -0
  192. package/src/materialization/planner.js +38 -0
  193. package/src/materialization/selection/filter.js +40 -0
  194. package/src/materialization/selection/items.js +503 -0
  195. package/src/materialization/selection/path.js +37 -0
  196. package/src/materialization/selection/point.js +118 -0
  197. package/src/materialization/selection/policies/area.js +10 -0
  198. package/src/materialization/selection/policies/bar.js +10 -0
  199. package/src/materialization/selection/policies/index.js +40 -0
  200. package/src/materialization/selection/policies/line.js +10 -0
  201. package/src/materialization/selection/policies/point.js +10 -0
  202. package/src/materialization/selection/policies/rule.js +10 -0
  203. package/src/materialization/selection/state.js +67 -0
  204. package/src/materialization/selection/styles.js +183 -0
  205. package/src/renderers/canvas/circle.js +62 -0
  206. package/src/renderers/canvas/index.js +132 -0
  207. package/src/renderers/canvas/line.js +54 -0
  208. package/src/renderers/canvas/path.js +98 -0
  209. package/src/renderers/canvas/rect.js +57 -0
  210. package/src/renderers/canvas/text.js +96 -0
  211. package/src/renderers/canvas/validation.js +23 -0
  212. package/src/renderers/png.js +29 -0
  213. package/src/selectors/coordinates.js +13 -0
  214. package/src/selectors/datasets.js +13 -0
  215. package/src/selectors/index.js +4 -0
  216. package/src/selectors/layers.js +32 -0
  217. package/src/selectors/scales.js +21 -0
  218. package/src/theme/defaults.js +13 -0
  219. package/types/extension.d.ts +14 -0
  220. package/types/index.d.ts +81 -0
  221. package/types/png.d.ts +14 -0
  222. package/types/program.d.ts +1096 -0
@@ -0,0 +1,164 @@
1
+ import { cloneAndFreeze } from "../core/immutable.js";
2
+ import { buildLinearPathCommands } from "./pathCommands.js";
3
+
4
+ export const POINT_SHAPES = cloneAndFreeze([
5
+ "circle",
6
+ "square",
7
+ "diamond",
8
+ "triangle-up",
9
+ "triangle-down",
10
+ "triangle-left",
11
+ "triangle-right",
12
+ "plus",
13
+ "cross",
14
+ "star",
15
+ "hexagon",
16
+ "wye"
17
+ ]);
18
+
19
+ const SHAPE_SET = new Set(POINT_SHAPES);
20
+
21
+ export function validatePointShape(shape) {
22
+ if (typeof shape !== "string" || !SHAPE_SET.has(shape)) {
23
+ throw new Error(`Unsupported point shape "${shape}".`);
24
+ }
25
+ return shape;
26
+ }
27
+
28
+ export function getPointGraphicType(shape) {
29
+ const validated = validatePointShape(shape);
30
+ if (validated === "circle") return "circle";
31
+ if (validated === "square") return "rect";
32
+ return "path";
33
+ }
34
+
35
+ function polygonArea(points) {
36
+ let twiceArea = 0;
37
+ for (let index = 0; index < points.length; index += 1) {
38
+ const current = points[index];
39
+ const next = points[(index + 1) % points.length];
40
+ twiceArea += current.x * next.y - next.x * current.y;
41
+ }
42
+ return Math.abs(twiceArea) / 2;
43
+ }
44
+
45
+ function rotate(points, angle) {
46
+ const cosine = Math.cos(angle);
47
+ const sine = Math.sin(angle);
48
+ return points.map(point => ({
49
+ x: point.x * cosine - point.y * sine,
50
+ y: point.x * sine + point.y * cosine
51
+ }));
52
+ }
53
+
54
+ function regularPolygon(count, rotation = -Math.PI / 2) {
55
+ return Array.from({ length: count }, (_, index) => {
56
+ const angle = rotation + index * Math.PI * 2 / count;
57
+ return { x: Math.cos(angle), y: Math.sin(angle) };
58
+ });
59
+ }
60
+
61
+ function alternatingPolygon(count, innerRadius, rotation = -Math.PI / 2) {
62
+ return Array.from({ length: count * 2 }, (_, index) => {
63
+ const radius = index % 2 === 0 ? 1 : innerRadius;
64
+ const angle = rotation + index * Math.PI / count;
65
+ return { x: Math.cos(angle) * radius, y: Math.sin(angle) * radius };
66
+ });
67
+ }
68
+
69
+ function shapePolygon(shape) {
70
+ const arm = 0.32;
71
+ const plus = [
72
+ { x: -arm, y: -1 }, { x: arm, y: -1 },
73
+ { x: arm, y: -arm }, { x: 1, y: -arm },
74
+ { x: 1, y: arm }, { x: arm, y: arm },
75
+ { x: arm, y: 1 }, { x: -arm, y: 1 },
76
+ { x: -arm, y: arm }, { x: -1, y: arm },
77
+ { x: -1, y: -arm }, { x: -arm, y: -arm }
78
+ ];
79
+ return {
80
+ diamond: [
81
+ { x: 0, y: -1 },
82
+ { x: 1, y: 0 },
83
+ { x: 0, y: 1 },
84
+ { x: -1, y: 0 }
85
+ ],
86
+ "triangle-up": regularPolygon(3, -Math.PI / 2),
87
+ "triangle-down": regularPolygon(3, Math.PI / 2),
88
+ "triangle-left": regularPolygon(3, Math.PI),
89
+ "triangle-right": regularPolygon(3, 0),
90
+ plus,
91
+ cross: rotate(plus, Math.PI / 4),
92
+ star: alternatingPolygon(5, 0.45),
93
+ hexagon: regularPolygon(6),
94
+ wye: alternatingPolygon(3, 0.28)
95
+ }[shape];
96
+ }
97
+
98
+ function normalizePolygon(points, x, y, area) {
99
+ const scale = Math.sqrt(area / polygonArea(points));
100
+ return points.map(point => ({
101
+ x: x + point.x * scale,
102
+ y: y + point.y * scale
103
+ }));
104
+ }
105
+
106
+ function appearance(fill, stroke, strokeWidth, opacity) {
107
+ return {
108
+ fill,
109
+ ...(stroke === undefined ? {} : { stroke }),
110
+ ...(strokeWidth === undefined ? {} : { strokeWidth }),
111
+ ...(opacity === undefined ? {} : { opacity })
112
+ };
113
+ }
114
+
115
+ export function createPointShapeGraphic({
116
+ shape,
117
+ x,
118
+ y,
119
+ area,
120
+ fill,
121
+ stroke,
122
+ strokeWidth,
123
+ opacity
124
+ }) {
125
+ const validated = validatePointShape(shape);
126
+ if (![x, y, area].every(Number.isFinite) || area < 0) {
127
+ throw new TypeError("Point shape x, y, and non-negative area must be finite.");
128
+ }
129
+ if (typeof fill !== "string" || fill.length === 0) {
130
+ throw new TypeError("Point shape fill must be a non-empty string.");
131
+ }
132
+ const shared = appearance(fill, stroke, strokeWidth, opacity);
133
+ if (validated === "circle") {
134
+ return {
135
+ type: "circle",
136
+ properties: { x, y, radius: Math.sqrt(area / Math.PI), ...shared }
137
+ };
138
+ }
139
+ if (validated === "square") {
140
+ const side = Math.sqrt(area);
141
+ return {
142
+ type: "rect",
143
+ properties: {
144
+ x: x - side / 2,
145
+ y: y - side / 2,
146
+ width: side,
147
+ height: side,
148
+ ...shared,
149
+ stroke: stroke ?? fill,
150
+ strokeWidth: strokeWidth ?? 0
151
+ }
152
+ };
153
+ }
154
+ return {
155
+ type: "path",
156
+ properties: {
157
+ commands: buildLinearPathCommands(
158
+ normalizePolygon(shapePolygon(validated), x, y, area),
159
+ { close: true }
160
+ ),
161
+ ...shared
162
+ }
163
+ };
164
+ }
@@ -0,0 +1,32 @@
1
+ export const POSITION_FIELD_COMPATIBILITY = Object.freeze({
2
+ point: Object.freeze({
3
+ x: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"]),
4
+ y: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"])
5
+ }),
6
+ line: Object.freeze({
7
+ x: Object.freeze(["quantitative", "temporal"]),
8
+ y: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"])
9
+ }),
10
+ area: Object.freeze({
11
+ x: Object.freeze(["quantitative", "temporal"]),
12
+ y: Object.freeze(["quantitative", "temporal"])
13
+ }),
14
+ rule: Object.freeze({
15
+ x: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"]),
16
+ y: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"])
17
+ }),
18
+ bar: Object.freeze({
19
+ x: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"]),
20
+ y: Object.freeze(["quantitative", "temporal", "ordinal", "nominal"])
21
+ })
22
+ });
23
+
24
+ export function validatePositionFieldCompatibility(mark, channel, fieldType) {
25
+ const supported = POSITION_FIELD_COMPATIBILITY[mark]?.[channel];
26
+ if (supported === undefined || !supported.includes(fieldType)) {
27
+ throw new Error(
28
+ `${mark} ${channel} position does not support field type "${fieldType}".`
29
+ );
30
+ }
31
+ return fieldType;
32
+ }