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.
- package/CHANGELOG.md +27 -0
- package/LICENSE +21 -0
- package/README.md +108 -0
- package/package.json +84 -0
- package/src/AGENTS.md +119 -0
- package/src/ChartProgram.js +10 -0
- package/src/actions/boxPlots/components.js +88 -0
- package/src/actions/boxPlots/create.js +84 -0
- package/src/actions/boxPlots/index.js +10 -0
- package/src/actions/boxPlots/materialize.js +183 -0
- package/src/actions/boxPlots/options.js +147 -0
- package/src/actions/boxPlots/resolve.js +38 -0
- package/src/actions/canvas/actions.js +144 -0
- package/src/actions/canvas/index.js +6 -0
- package/src/actions/coordinates/actions.js +85 -0
- package/src/actions/coordinates/index.js +5 -0
- package/src/actions/data/box.js +40 -0
- package/src/actions/data/create.js +33 -0
- package/src/actions/data/density.js +62 -0
- package/src/actions/data/derived.js +52 -0
- package/src/actions/data/filter.js +168 -0
- package/src/actions/data/index.js +32 -0
- package/src/actions/data/interval.js +69 -0
- package/src/actions/data/regression.js +71 -0
- package/src/actions/data/shared.js +25 -0
- package/src/actions/encodings/appearance.js +243 -0
- package/src/actions/encodings/barWidth.js +60 -0
- package/src/actions/encodings/color.js +329 -0
- package/src/actions/encodings/density.js +225 -0
- package/src/actions/encodings/histogram.js +50 -0
- package/src/actions/encodings/index.js +23 -0
- package/src/actions/encodings/offset.js +104 -0
- package/src/actions/encodings/position/policies/area.js +24 -0
- package/src/actions/encodings/position/policies/bar.js +110 -0
- package/src/actions/encodings/position/policies/common.js +17 -0
- package/src/actions/encodings/position/policies/index.js +25 -0
- package/src/actions/encodings/position/policies/line.js +74 -0
- package/src/actions/encodings/position/policies/point.js +19 -0
- package/src/actions/encodings/position/policies/rule.js +17 -0
- package/src/actions/encodings/position/resolve.js +170 -0
- package/src/actions/encodings/position.js +176 -0
- package/src/actions/encodings/ranged.js +276 -0
- package/src/actions/encodings/ruleAppearance.js +47 -0
- package/src/actions/encodings/shared.js +164 -0
- package/src/actions/encodings/strokeDash.js +145 -0
- package/src/actions/errorBands/components.js +81 -0
- package/src/actions/errorBands/create.js +159 -0
- package/src/actions/errorBands/index.js +7 -0
- package/src/actions/errorBands/resolve.js +28 -0
- package/src/actions/errorBars/components.js +62 -0
- package/src/actions/errorBars/create.js +144 -0
- package/src/actions/errorBars/index.js +7 -0
- package/src/actions/errorBars/resolve.js +25 -0
- package/src/actions/guides/axes/axes.js +204 -0
- package/src/actions/guides/axes/axis.js +131 -0
- package/src/actions/guides/axes/index.js +17 -0
- package/src/actions/guides/axes/labels.js +231 -0
- package/src/actions/guides/axes/lines.js +149 -0
- package/src/actions/guides/axes/policy.js +155 -0
- package/src/actions/guides/axes/tickGroups.js +149 -0
- package/src/actions/guides/axes/ticks.js +179 -0
- package/src/actions/guides/axes/titles.js +264 -0
- package/src/actions/guides/grids/grid.js +228 -0
- package/src/actions/guides/grids/index.js +1 -0
- package/src/actions/guides/grids/resolve.js +258 -0
- package/src/actions/guides/guides.js +138 -0
- package/src/actions/guides/index.js +11 -0
- package/src/actions/guides/legends/categorical/actions.js +329 -0
- package/src/actions/guides/legends/categorical/components.js +140 -0
- package/src/actions/guides/legends/categorical/index.js +49 -0
- package/src/actions/guides/legends/categorical/layout.js +445 -0
- package/src/actions/guides/legends/categorical/options.js +188 -0
- package/src/actions/guides/legends/categorical/recipes.js +120 -0
- package/src/actions/guides/legends/categorical/resolve.js +131 -0
- package/src/actions/guides/legends/categorical/symbols.js +280 -0
- package/src/actions/guides/legends/categorical/validation.js +27 -0
- package/src/actions/guides/legends/continuous/common.js +273 -0
- package/src/actions/guides/legends/continuous/gradient.js +363 -0
- package/src/actions/guides/legends/continuous/index.js +25 -0
- package/src/actions/guides/legends/continuous/interval.js +234 -0
- package/src/actions/guides/legends/continuous/opacity.js +382 -0
- package/src/actions/guides/legends/edit.js +314 -0
- package/src/actions/guides/legends/index.js +9 -0
- package/src/actions/guides/legends/size.js +220 -0
- package/src/actions/guides/tickValues.js +84 -0
- package/src/actions/index.js +31 -0
- package/src/actions/intervals/resolve.js +352 -0
- package/src/actions/marks/area.js +369 -0
- package/src/actions/marks/bar/create.js +46 -0
- package/src/actions/marks/bar/edit.js +90 -0
- package/src/actions/marks/bar/index.js +9 -0
- package/src/actions/marks/bar/materialize.js +130 -0
- package/src/actions/marks/index.js +13 -0
- package/src/actions/marks/line.js +248 -0
- package/src/actions/marks/point.js +420 -0
- package/src/actions/marks/rule.js +287 -0
- package/src/actions/marks/shared.js +112 -0
- package/src/actions/primitives/createGraphics.js +163 -0
- package/src/actions/primitives/editGraphics.js +208 -0
- package/src/actions/primitives/index.js +9 -0
- package/src/actions/primitives/semantic.js +168 -0
- package/src/actions/primitives/semanticValue.js +182 -0
- package/src/actions/regression/components.js +216 -0
- package/src/actions/regression/create.js +102 -0
- package/src/actions/regression/index.js +23 -0
- package/src/actions/regression/resolve.js +57 -0
- package/src/actions/scales/consumers.js +283 -0
- package/src/actions/scales/create.js +148 -0
- package/src/actions/scales/definitions.js +319 -0
- package/src/actions/scales/edit.js +290 -0
- package/src/actions/scales/index.js +11 -0
- package/src/actions/scales/materialize.js +466 -0
- package/src/actions/scales/quantitativeColor.js +45 -0
- package/src/actions/selection/actions.js +384 -0
- package/src/actions/selection/index.js +23 -0
- package/src/actions/titles/actions.js +235 -0
- package/src/actions/titles/index.js +19 -0
- package/src/actions/titles/resolve.js +321 -0
- package/src/core/ChartProgram.js +316 -0
- package/src/core/action.js +120 -0
- package/src/core/identifiers.js +28 -0
- package/src/core/immutable.js +94 -0
- package/src/core/specs.js +29 -0
- package/src/core/textMetrics.js +23 -0
- package/src/core/validation.js +54 -0
- package/src/core/vocabulary.js +58 -0
- package/src/extension.js +2 -0
- package/src/grammar/aggregate.js +259 -0
- package/src/grammar/areaSeries.js +217 -0
- package/src/grammar/bars/aggregate.js +98 -0
- package/src/grammar/bars/geometry.js +54 -0
- package/src/grammar/bars/policy.js +90 -0
- package/src/grammar/boxPlot.js +140 -0
- package/src/grammar/coordinates.js +25 -0
- package/src/grammar/curveCommands.js +356 -0
- package/src/grammar/density.js +296 -0
- package/src/grammar/filter.js +169 -0
- package/src/grammar/histogram.js +332 -0
- package/src/grammar/interval.js +343 -0
- package/src/grammar/lineSeries.js +197 -0
- package/src/grammar/markFilter.js +46 -0
- package/src/grammar/markSelection.js +326 -0
- package/src/grammar/palettes.js +208 -0
- package/src/grammar/pathCommands.js +86 -0
- package/src/grammar/pointShapes.js +164 -0
- package/src/grammar/positionCompatibility.js +32 -0
- package/src/grammar/regression.js +578 -0
- package/src/grammar/ruleAppearance.js +12 -0
- package/src/grammar/rules.js +90 -0
- package/src/grammar/scales/appearance.js +185 -0
- package/src/grammar/scales/color.js +349 -0
- package/src/grammar/scales/continuous.js +111 -0
- package/src/grammar/scales/definition.js +153 -0
- package/src/grammar/scales/discretized.js +159 -0
- package/src/grammar/scales/fields.js +133 -0
- package/src/grammar/scales/index.js +12 -0
- package/src/grammar/scales/mapping.js +27 -0
- package/src/grammar/scales/ordinal.js +221 -0
- package/src/grammar/scales/policies.js +50 -0
- package/src/grammar/scales/temporal.js +53 -0
- package/src/grammar/scales/transformed.js +236 -0
- package/src/grammar/scales/types.js +102 -0
- package/src/grammar/scales/validation.js +66 -0
- package/src/grammar/scales.js +1 -0
- package/src/grammar/schemas/concreteGraphic.js +73 -0
- package/src/grammar/schemas/graphic.js +131 -0
- package/src/grammar/schemas/graphicBounds.js +146 -0
- package/src/grammar/schemas/graphicTree.js +133 -0
- package/src/grammar/schemas/mark.js +4 -0
- package/src/grammar/schemas/semanticPath.js +174 -0
- package/src/grammar/seriesLayout.js +76 -0
- package/src/grammar/ticks.js +149 -0
- package/src/grammar/transforms.js +37 -0
- package/src/index.js +2 -0
- package/src/layout/canvas.js +114 -0
- package/src/layout/grid.js +17 -0
- package/src/layout/legend.js +51 -0
- package/src/layout/text.js +62 -0
- package/src/layout/title.js +107 -0
- package/src/materialization/bars/aggregate.js +184 -0
- package/src/materialization/bars/grouped.js +117 -0
- package/src/materialization/bars/histogram.js +163 -0
- package/src/materialization/bars/ranged.js +53 -0
- package/src/materialization/bars/resolve.js +56 -0
- package/src/materialization/dataProvenance.js +15 -0
- package/src/materialization/density.js +29 -0
- package/src/materialization/dependencies.js +134 -0
- package/src/materialization/encodings.js +50 -0
- package/src/materialization/graphicHierarchy.js +104 -0
- package/src/materialization/legends.js +20 -0
- package/src/materialization/marks.js +110 -0
- package/src/materialization/planner.js +38 -0
- package/src/materialization/selection/filter.js +40 -0
- package/src/materialization/selection/items.js +503 -0
- package/src/materialization/selection/path.js +37 -0
- package/src/materialization/selection/point.js +118 -0
- package/src/materialization/selection/policies/area.js +10 -0
- package/src/materialization/selection/policies/bar.js +10 -0
- package/src/materialization/selection/policies/index.js +40 -0
- package/src/materialization/selection/policies/line.js +10 -0
- package/src/materialization/selection/policies/point.js +10 -0
- package/src/materialization/selection/policies/rule.js +10 -0
- package/src/materialization/selection/state.js +67 -0
- package/src/materialization/selection/styles.js +183 -0
- package/src/renderers/canvas/circle.js +62 -0
- package/src/renderers/canvas/index.js +132 -0
- package/src/renderers/canvas/line.js +54 -0
- package/src/renderers/canvas/path.js +98 -0
- package/src/renderers/canvas/rect.js +57 -0
- package/src/renderers/canvas/text.js +96 -0
- package/src/renderers/canvas/validation.js +23 -0
- package/src/renderers/png.js +29 -0
- package/src/selectors/coordinates.js +13 -0
- package/src/selectors/datasets.js +13 -0
- package/src/selectors/index.js +4 -0
- package/src/selectors/layers.js +32 -0
- package/src/selectors/scales.js +21 -0
- package/src/theme/defaults.js +13 -0
- package/types/extension.d.ts +14 -0
- package/types/index.d.ts +81 -0
- package/types/png.d.ts +14 -0
- 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
|
+
}
|