ggaction 0.0.13 → 0.0.16
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 +146 -0
- package/README.md +41 -12
- package/knowledge/action-cards.json +1 -1
- package/knowledge/intent-taxonomy.json +1 -1
- package/knowledge/mcp-resources.json +1 -1
- package/knowledge/task-packet.schema.json +1 -1
- package/knowledge/task-resolver.js +1 -1
- package/package.json +39 -7
- package/src/BasicChartProgram.js +3 -1
- package/src/ChartProgram.js +2 -0
- package/src/accessibility.js +157 -0
- package/src/actions/basic.js +2 -2
- package/src/actions/boxPlots/components.js +20 -12
- package/src/actions/boxPlots/create.js +4 -5
- package/src/actions/boxPlots/edit.js +34 -9
- package/src/actions/boxPlots/materialize.js +12 -4
- package/src/actions/boxPlots/options.js +48 -16
- package/src/actions/canvas/actions.js +3 -3
- package/src/actions/canvas/fitting.js +1 -1
- package/src/actions/categoryOrder/index.js +21 -12
- package/src/actions/charts/area.js +6 -2
- package/src/actions/charts/bar.js +3 -2
- package/src/actions/charts/beeswarm.js +1 -1
- package/src/actions/charts/density.js +7 -3
- package/src/actions/charts/ecdf.js +6 -3
- package/src/actions/charts/endpoints.js +29 -7
- package/src/actions/charts/heatmap.js +3 -2
- package/src/actions/charts/histogram.js +5 -4
- package/src/actions/charts/horizon.js +4 -2
- package/src/actions/charts/interval-regression.js +7 -4
- package/src/actions/charts/line.js +4 -2
- package/src/actions/charts/parallel.js +9 -3
- package/src/actions/charts/pie.js +11 -3
- package/src/actions/charts/polar.js +17 -6
- package/src/actions/charts/radar.js +9 -3
- package/src/actions/charts/radial.js +12 -4
- package/src/actions/charts/raincloud.js +2 -2
- package/src/actions/charts/rug-strip.js +8 -4
- package/src/actions/charts/scatter.js +4 -2
- package/src/actions/composition/actions.js +29 -24
- package/src/actions/coordinates/actions.js +2 -2
- package/src/actions/coordinates/edit.js +76 -0
- package/src/actions/data/basicBin2d.js +4 -5
- package/src/actions/data/bin.js +3 -3
- package/src/actions/data/bin2d.js +63 -193
- package/src/actions/data/bin2dMaterialize.js +4 -5
- package/src/actions/data/box.js +4 -4
- package/src/actions/data/complete.js +26 -0
- package/src/actions/data/computed.js +4 -4
- package/src/actions/data/create.js +7 -14
- package/src/actions/data/density.js +15 -23
- package/src/actions/data/derived.js +57 -31
- package/src/actions/data/ecdf.js +2 -2
- package/src/actions/data/edit.js +551 -0
- package/src/actions/data/filter.js +28 -22
- package/src/actions/data/fold.js +2 -2
- package/src/actions/data/gradientProfile.js +2 -2
- package/src/actions/data/horizon.js +2 -2
- package/src/actions/data/impute.js +26 -0
- package/src/actions/data/index.js +62 -47
- package/src/actions/data/interval.js +2 -2
- package/src/actions/data/intervalEdit.js +26 -18
- package/src/actions/data/normalize.js +27 -0
- package/src/actions/data/regression.js +21 -27
- package/src/actions/data/revise.js +48 -0
- package/src/actions/data/revisionBindings.js +125 -0
- package/src/actions/data/shared.js +20 -4
- package/src/actions/data/stack.js +2 -2
- package/src/actions/data/summary.js +3 -3
- package/src/actions/data/timeUnit.js +6 -3
- package/src/actions/data/window.js +3 -3
- package/src/actions/encodings/angle.js +1 -1
- package/src/actions/encodings/appearance.js +4 -4
- package/src/actions/encodings/barWidth.js +1 -1
- package/src/actions/encodings/channels.js +415 -0
- package/src/actions/encodings/color/index.js +3 -2
- package/src/actions/encodings/density.js +7 -4
- package/src/actions/encodings/histogram.js +4 -3
- package/src/actions/encodings/horizon.js +6 -8
- package/src/actions/encodings/index.js +4 -0
- package/src/actions/encodings/offset.js +22 -15
- package/src/actions/encodings/parallel.js +4 -5
- package/src/actions/encodings/pathOrder.js +6 -11
- package/src/actions/encodings/position/apply.js +53 -7
- package/src/actions/encodings/position/index.js +14 -6
- package/src/actions/encodings/position/policies/bar.js +9 -0
- package/src/actions/encodings/position/resolve.js +24 -7
- package/src/actions/encodings/ranged.js +5 -5
- package/src/actions/encodings/remove.js +13 -9
- package/src/actions/encodings/ruleAppearance.js +2 -24
- package/src/actions/encodings/seriesLayout.js +2 -1
- package/src/actions/encodings/shared.js +82 -14
- package/src/actions/encodings/stroke.js +226 -0
- package/src/actions/encodings/strokeDash.js +2 -2
- package/src/actions/encodings/text.js +1 -1
- package/src/actions/errorBands/create.js +34 -20
- package/src/actions/errorBands/edit.js +34 -137
- package/src/actions/errorBars/create.js +43 -20
- package/src/actions/errorBars/edit.js +29 -125
- package/src/actions/facets/actions.js +267 -73
- package/src/actions/facets/derive.js +99 -28
- package/src/actions/facets/guides.js +4 -5
- package/src/actions/facets/replay.js +4 -5
- package/src/actions/gradientPlots/components.js +15 -8
- package/src/actions/gradientPlots/create.js +4 -5
- package/src/actions/gradientPlots/edit.js +18 -9
- package/src/actions/gradientPlots/materialize.js +5 -3
- package/src/actions/gradientPlots/options.js +10 -2
- package/src/actions/gradientPlots/rebind.js +4 -5
- package/src/actions/guides/applicability.js +8 -2
- package/src/actions/guides/axes/axes.js +23 -4
- package/src/actions/guides/axes/axis.js +2 -2
- package/src/actions/guides/axes/edit.js +2 -2
- package/src/actions/guides/axes/labels.js +67 -21
- package/src/actions/guides/axes/lines.js +15 -9
- package/src/actions/guides/axes/parallel/lifecycle.js +13 -13
- package/src/actions/guides/axes/parallel/resolve.js +6 -2
- package/src/actions/guides/axes/parallel.js +5 -5
- package/src/actions/guides/axes/remove.js +4 -4
- package/src/actions/guides/axes/tickGroups.js +6 -5
- package/src/actions/guides/axes/ticks.js +19 -6
- package/src/actions/guides/axes/titles.js +21 -13
- package/src/actions/guides/grids/grid.js +18 -29
- package/src/actions/guides/grids/resolve.js +7 -2
- package/src/actions/guides/guides.js +20 -4
- package/src/actions/guides/legends/blocks.js +426 -0
- package/src/actions/guides/legends/categorical/actions.js +138 -52
- package/src/actions/guides/legends/categorical/components.js +55 -45
- package/src/actions/guides/legends/categorical/index.js +37 -33
- package/src/actions/guides/legends/categorical/layout.js +98 -16
- package/src/actions/guides/legends/categorical/options.js +2 -2
- package/src/actions/guides/legends/categorical/recipes.js +111 -20
- package/src/actions/guides/legends/categorical/resolve.js +12 -8
- package/src/actions/guides/legends/categorical/symbols.js +104 -52
- package/src/actions/guides/legends/continuous/common.js +76 -20
- package/src/actions/guides/legends/continuous/gradient.js +95 -158
- package/src/actions/guides/legends/continuous/index.js +2 -0
- package/src/actions/guides/legends/continuous/interval.js +21 -16
- package/src/actions/guides/legends/continuous/opacity.js +37 -83
- package/src/actions/guides/legends/continuous/stroke.js +225 -0
- package/src/actions/guides/legends/creation.js +14 -1
- package/src/actions/guides/legends/edit.js +159 -60
- package/src/actions/guides/legends/focused.js +5 -5
- package/src/actions/guides/legends/index.js +2 -0
- package/src/actions/guides/legends/lane.js +59 -24
- package/src/actions/guides/legends/lifecycle.js +19 -8
- package/src/actions/guides/legends/remove.js +17 -8
- package/src/actions/guides/legends/sampling.js +140 -0
- package/src/actions/guides/legends/size.js +100 -108
- package/src/actions/guides/legends/strokeWidth.js +38 -92
- package/src/actions/guides/legends/target.js +112 -1
- package/src/actions/guides/legends/transition.js +165 -16
- package/src/actions/guides/polar/axes/facade.js +8 -8
- package/src/actions/guides/polar/axes/labels.js +29 -10
- package/src/actions/guides/polar/axes/lines.js +19 -19
- package/src/actions/guides/polar/axes/shared.js +16 -0
- package/src/actions/guides/polar/axes/ticks.js +10 -16
- package/src/actions/guides/polar/axes/titles.js +6 -6
- package/src/actions/guides/polar/grids.js +12 -14
- package/src/actions/guides/polar/resolve.js +12 -8
- package/src/actions/index.js +16 -3
- package/src/actions/intervals/revision.js +126 -0
- package/src/actions/marks/arc/actions.js +80 -22
- package/src/actions/marks/area/actions.js +38 -13
- package/src/actions/marks/area/materialize.js +17 -1
- package/src/actions/marks/bar/create.js +12 -3
- package/src/actions/marks/bar/edit.js +21 -4
- package/src/actions/marks/bar/materialize.js +34 -40
- package/src/actions/marks/index.js +10 -1
- package/src/actions/marks/line/actions.js +40 -17
- package/src/actions/marks/line/materialize.js +29 -10
- package/src/actions/marks/point/create.js +9 -3
- package/src/actions/marks/point/edit.js +19 -7
- package/src/actions/marks/point/jitter.js +6 -8
- package/src/actions/marks/point/materialize.js +48 -22
- package/src/actions/marks/point/packing.js +6 -8
- package/src/actions/marks/rect/actions.js +36 -15
- package/src/actions/marks/references.js +602 -33
- package/src/actions/marks/remove.js +67 -41
- package/src/actions/marks/rule/actions.js +51 -14
- package/src/actions/marks/shared.js +1 -1
- package/src/actions/marks/text/actions.js +79 -14
- package/src/actions/marks/text/index.js +4 -0
- package/src/actions/marks/text/layout.js +157 -17
- package/src/actions/marks/text/removal.js +173 -0
- package/src/actions/marks/text/selection.js +72 -0
- package/src/actions/marks/tick/actions.js +25 -8
- package/src/actions/primitives/createGraphics.js +5 -4
- package/src/actions/primitives/editGraphics.js +31 -4
- package/src/actions/primitives/graphicProperties.js +6 -0
- package/src/actions/primitives/semantic.js +11 -3
- package/src/actions/primitives/semanticAction.js +90 -14
- package/src/actions/primitives/semanticValidation/dataset.js +2 -4
- package/src/actions/primitives/semanticValidation/guide.js +1 -1
- package/src/actions/primitives/semanticValidation/index.js +9 -1
- package/src/actions/primitives/semanticValidation/layer.js +5 -0
- package/src/actions/primitives/semanticValidation/scale.js +28 -7
- package/src/actions/regression/components.js +36 -25
- package/src/actions/regression/create.js +13 -6
- package/src/actions/regression/edit.js +24 -11
- package/src/actions/resources/index.js +7 -0
- package/src/actions/resources/remove.js +173 -0
- package/src/actions/scales/channels.js +212 -0
- package/src/actions/scales/consumers/common.js +1 -1
- package/src/actions/scales/consumers/families.js +3 -2
- package/src/actions/scales/consumers/index.js +19 -2
- package/src/actions/scales/consumers/seriesLayout.js +28 -14
- package/src/actions/scales/create.js +55 -23
- package/src/actions/scales/definitions.js +94 -40
- package/src/actions/scales/edit.js +67 -12
- package/src/actions/scales/editPolicy.js +81 -11
- package/src/actions/scales/index.js +6 -0
- package/src/actions/scales/materialize.js +5 -4
- package/src/actions/scales/offset.js +48 -0
- package/src/actions/scales/parallel.js +71 -0
- package/src/actions/scales/preview.js +111 -10
- package/src/actions/scales/quantitativeColor.js +4 -5
- package/src/actions/selection/actions.js +179 -66
- package/src/actions/selection/index.js +3 -0
- package/src/actions/textMetrics/index.js +56 -0
- package/src/actions/theme/actions.js +70 -15
- package/src/actions/theme/composition.js +238 -0
- package/src/actions/theme/index.js +9 -2
- package/src/actions/theme/reconcile.js +313 -121
- package/src/actions/theme/state.js +160 -0
- package/src/actions/titles/actions.js +8 -8
- package/src/actions/titles/resolve.js +3 -3
- package/src/actions/violinPlots/create.js +6 -3
- package/src/actions/violinPlots/edit.js +2 -1
- package/src/core/action.js +117 -35
- package/src/core/compositionState.js +6 -1
- package/src/core/diagnostics.js +16 -0
- package/src/core/extensionRegistry.js +27 -0
- package/src/core/font.js +18 -0
- package/src/core/identifiers.js +5 -4
- package/src/core/immutable.js +10 -3
- package/src/core/optionRequirements.js +8 -0
- package/src/core/programState.js +21 -1
- package/src/core/resourceReferences.js +341 -0
- package/src/core/textMetricProfile.js +28 -0
- package/src/core/textMetrics.js +24 -3
- package/src/core/validation.js +22 -10
- package/src/core/vocabulary.js +16 -3
- package/src/diagnostics.js +1 -0
- package/src/grammar/bars/aggregate.js +4 -1
- package/src/grammar/bars/geometry.js +44 -0
- package/src/grammar/bin.js +54 -9
- package/src/grammar/complete.js +279 -0
- package/src/grammar/computed.js +265 -64
- package/src/grammar/coordinates.js +37 -0
- package/src/grammar/density.js +239 -37
- package/src/grammar/displayLabels.js +57 -0
- package/src/grammar/facets/dependencies.js +133 -1
- package/src/grammar/facets/guides.js +3 -0
- package/src/grammar/facets/index.js +7 -47
- package/src/grammar/facets/scales.js +15 -18
- package/src/grammar/impute.js +341 -0
- package/src/grammar/markLabelSelection.js +57 -0
- package/src/grammar/markLabels.js +18 -1
- package/src/grammar/normalize.js +366 -0
- package/src/grammar/pathSeries.js +26 -8
- package/src/grammar/pointShapes.js +13 -4
- package/src/grammar/polar.js +90 -8
- package/src/grammar/regression/index.js +1 -0
- package/src/grammar/regression/parameters.js +23 -0
- package/src/grammar/roundedRect.js +180 -0
- package/src/grammar/rules.js +1 -0
- package/src/grammar/scales/colorConsumers.js +20 -1
- package/src/grammar/scales/continuous.js +2 -2
- package/src/grammar/scales/definition.js +27 -4
- package/src/grammar/scales/index.js +1 -0
- package/src/grammar/scales/ordinal.js +12 -3
- package/src/grammar/scales/policies.js +2 -2
- package/src/grammar/scales/size.js +456 -0
- package/src/grammar/scales/types.js +8 -0
- package/src/grammar/schemas/concreteGraphic.js +14 -2
- package/src/grammar/schemas/graphic.js +15 -0
- package/src/grammar/schemas/graphicBounds.js +190 -41
- package/src/grammar/schemas/semanticPath.js +7 -2
- package/src/grammar/statisticalReference.js +103 -0
- package/src/grammar/strokeStyle.js +77 -0
- package/src/grammar/summary.js +78 -16
- package/src/grammar/timeUnit.js +216 -5
- package/src/grammar/transformTopology.js +4 -0
- package/src/grammar/transforms.js +394 -28
- package/src/grammar/weightedStatistics.js +374 -0
- package/src/grammar/window.js +221 -16
- package/src/layout/aspect.js +80 -0
- package/src/layout/facets.js +59 -5
- package/src/layout/labels.js +351 -7
- package/src/layout/legend.js +4 -4
- package/src/layout/legendItems.js +6 -6
- package/src/layout/text.js +10 -9
- package/src/layout/title.js +9 -9
- package/src/materialization/bars/aggregate.js +25 -2
- package/src/materialization/bars/histogram.js +84 -24
- package/src/materialization/bars/ranged.js +19 -3
- package/src/materialization/bars/resolve.js +7 -4
- package/src/materialization/composition.js +3 -1
- package/src/materialization/coordinateBounds.js +204 -0
- package/src/materialization/dependencies.js +36 -0
- package/src/materialization/facetGuides/legacyCategorical.js +3 -0
- package/src/materialization/facetGuides/placement.js +9 -3
- package/src/materialization/facetGuides/preparation.js +13 -8
- package/src/materialization/facetHeaders.js +347 -0
- package/src/materialization/facets.js +15 -65
- package/src/materialization/guides/layout.js +3 -3
- package/src/materialization/guides/resources.js +26 -0
- package/src/materialization/legends.js +1 -1
- package/src/materialization/marks/index.js +11 -5
- package/src/materialization/marks/policies.js +2 -1
- package/src/materialization/rect.js +25 -12
- package/src/materialization/rectConfig.js +5 -1
- package/src/materialization/scaleGuideDependencies.js +10 -0
- package/src/materialization/scales/map.js +5 -3
- package/src/materialization/scales/policies/binnedPosition.js +2 -2
- package/src/materialization/scales/policies/offset.js +50 -8
- package/src/materialization/scales/policies/series.js +4 -1
- package/src/materialization/scales/resolve.js +22 -6
- package/src/materialization/selection/items/arc.js +28 -4
- package/src/materialization/selection/items/bar.js +30 -3
- package/src/materialization/selection/items/common.js +20 -5
- package/src/materialization/selection/items/rect.js +28 -4
- package/src/materialization/selection/path.js +1 -1
- package/src/materialization/selection/point.js +3 -1
- package/src/materialization/text.js +265 -14
- package/src/materialization/typography.js +31 -0
- package/src/mcp/cli.js +5 -3
- package/src/persistence/codec.js +65 -0
- package/src/persistence/validation.js +185 -0
- package/src/persistence.js +74 -0
- package/src/renderers/canvas/circle.js +2 -3
- package/src/renderers/canvas/index.js +5 -4
- package/src/renderers/canvas/line.js +2 -3
- package/src/renderers/canvas/native.js +4 -4
- package/src/renderers/canvas/path.js +2 -3
- package/src/renderers/canvas/rect.js +2 -3
- package/src/renderers/canvas/stroke.js +11 -0
- package/src/renderers/nativeBackend.js +10 -0
- package/src/renderers/options.js +13 -0
- package/src/renderers/pdf.js +25 -54
- package/src/renderers/png.js +22 -17
- package/src/renderers/svg.js +29 -14
- package/src/renderers/text.js +1 -11
- package/src/selectors/coordinates.js +3 -1
- package/src/selectors/datasets.js +38 -5
- package/src/selectors/layers.js +10 -4
- package/src/selectors/markOwners.js +46 -0
- package/src/selectors/scales.js +6 -4
- package/src/theme/defaults.js +103 -1
- package/src/version.js +2 -0
- package/types/accessibility.d.ts +37 -0
- package/types/basic.d.ts +10 -2
- package/types/diagnostics.d.ts +15 -0
- package/types/index.d.ts +90 -0
- package/types/pdf.d.ts +9 -0
- package/types/persistence.d.ts +7 -0
- package/types/png.d.ts +9 -0
- package/types/program.d.ts +944 -118
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
import { freezeOwned } from "../../core/immutable.js";
|
|
2
|
+
import { materializeCompositionGraphics } from
|
|
3
|
+
"../../materialization/composition.js";
|
|
4
|
+
import { materializeFacetGraphics } from "../../materialization/facets.js";
|
|
5
|
+
import {
|
|
6
|
+
compositionThemeOwner,
|
|
7
|
+
createThemeFrame,
|
|
8
|
+
moveLocalThemeScope,
|
|
9
|
+
normalizeThemeState,
|
|
10
|
+
removeThemeFrameOwner,
|
|
11
|
+
upsertThemeFrame
|
|
12
|
+
} from "./state.js";
|
|
13
|
+
import { reconcileProgramTheme } from "./reconcile.js";
|
|
14
|
+
|
|
15
|
+
const DESCRIPTION = "Apply inherited visual defaults to a composition child.";
|
|
16
|
+
|
|
17
|
+
function materializeComposition(program) {
|
|
18
|
+
return program.compositionSpec.type === "facet"
|
|
19
|
+
? materializeFacetGraphics(program)
|
|
20
|
+
: materializeCompositionGraphics(program);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function withThemeState(program, state) {
|
|
24
|
+
return program._withMaterializationConfig(["theme"], state);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function addFrame(program, frame, { descendants, local = false }) {
|
|
28
|
+
const composition = program.compositionSpec !== undefined;
|
|
29
|
+
const previous = normalizeThemeState(
|
|
30
|
+
program.materializationConfigs.theme,
|
|
31
|
+
{ composition }
|
|
32
|
+
);
|
|
33
|
+
return withThemeState(program, {
|
|
34
|
+
...previous,
|
|
35
|
+
frames: upsertThemeFrame(previous.frames, frame),
|
|
36
|
+
...(composition
|
|
37
|
+
? {
|
|
38
|
+
descendantFrames: descendants
|
|
39
|
+
? upsertThemeFrame(previous.descendantFrames, frame)
|
|
40
|
+
: previous.descendantFrames
|
|
41
|
+
}
|
|
42
|
+
: {}),
|
|
43
|
+
localOrder: local
|
|
44
|
+
? moveLocalThemeScope(previous.localOrder, frame.scope)
|
|
45
|
+
: previous.localOrder
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function removeFrame(program, owner, { descendants, localScope }) {
|
|
50
|
+
const composition = program.compositionSpec !== undefined;
|
|
51
|
+
const previous = normalizeThemeState(
|
|
52
|
+
program.materializationConfigs.theme,
|
|
53
|
+
{ composition }
|
|
54
|
+
);
|
|
55
|
+
const root = removeThemeFrameOwner(previous.frames, owner);
|
|
56
|
+
const policies = composition && descendants
|
|
57
|
+
? removeThemeFrameOwner(previous.descendantFrames, owner)
|
|
58
|
+
: { frames: previous.descendantFrames, removed: false };
|
|
59
|
+
return {
|
|
60
|
+
program: withThemeState(program, {
|
|
61
|
+
...previous,
|
|
62
|
+
frames: root.frames,
|
|
63
|
+
...(composition ? { descendantFrames: policies.frames } : {}),
|
|
64
|
+
localOrder: localScope === undefined
|
|
65
|
+
? previous.localOrder
|
|
66
|
+
: freezeOwned(previous.localOrder.filter(scope => scope !== localScope))
|
|
67
|
+
}),
|
|
68
|
+
removed: root.removed || policies.removed
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function inheritedMetadata(op) {
|
|
73
|
+
return freezeOwned({ op, description: DESCRIPTION, scope: "any" });
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function enterInheritedAction(program, op, frame) {
|
|
77
|
+
return program._enterAction({
|
|
78
|
+
op,
|
|
79
|
+
description: DESCRIPTION,
|
|
80
|
+
args: op === "applyTheme"
|
|
81
|
+
? freezeOwned({
|
|
82
|
+
theme: freezeOwned({
|
|
83
|
+
base: frame.name,
|
|
84
|
+
tokens: frame.tokens
|
|
85
|
+
}),
|
|
86
|
+
scope: "descendants",
|
|
87
|
+
inheritedFrom: frame.owner
|
|
88
|
+
})
|
|
89
|
+
: freezeOwned({ inheritedFrom: frame.owner })
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
function applyInheritedFrame(program, frame) {
|
|
94
|
+
const source = program;
|
|
95
|
+
let next = enterInheritedAction(program, "applyTheme", frame);
|
|
96
|
+
next = addFrame(next, frame, {
|
|
97
|
+
descendants: next.compositionSpec !== undefined
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
if (next.compositionSpec !== undefined) {
|
|
101
|
+
const children = Object.fromEntries(
|
|
102
|
+
next.compositionSpec.children.map(id => [
|
|
103
|
+
id,
|
|
104
|
+
applyInheritedFrame(next.children[id], frame)
|
|
105
|
+
])
|
|
106
|
+
);
|
|
107
|
+
next = next._withCompositionState({
|
|
108
|
+
children,
|
|
109
|
+
compositionSpec: next.compositionSpec
|
|
110
|
+
});
|
|
111
|
+
next = materializeComposition(next);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
next = reconcileProgramTheme(next, {
|
|
115
|
+
source,
|
|
116
|
+
metadata: inheritedMetadata("applyTheme")
|
|
117
|
+
});
|
|
118
|
+
return next._exitAction();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
function removeInheritedFrame(program, frame) {
|
|
122
|
+
const source = program;
|
|
123
|
+
let next = enterInheritedAction(program, "removeTheme", frame);
|
|
124
|
+
const removed = removeFrame(next, frame.owner, {
|
|
125
|
+
descendants: next.compositionSpec !== undefined
|
|
126
|
+
});
|
|
127
|
+
next = removed.program;
|
|
128
|
+
|
|
129
|
+
if (next.compositionSpec !== undefined) {
|
|
130
|
+
const children = Object.fromEntries(
|
|
131
|
+
next.compositionSpec.children.map(id => [
|
|
132
|
+
id,
|
|
133
|
+
removeInheritedFrame(next.children[id], frame)
|
|
134
|
+
])
|
|
135
|
+
);
|
|
136
|
+
next = next._withCompositionState({
|
|
137
|
+
children,
|
|
138
|
+
compositionSpec: next.compositionSpec
|
|
139
|
+
});
|
|
140
|
+
next = materializeComposition(next);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
next = reconcileProgramTheme(next, {
|
|
144
|
+
source,
|
|
145
|
+
metadata: inheritedMetadata("removeTheme")
|
|
146
|
+
});
|
|
147
|
+
return next._exitAction();
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export function applyCompositionTheme(program, definition, scope) {
|
|
151
|
+
const id = program.compositionSpec.id;
|
|
152
|
+
const frame = createThemeFrame({
|
|
153
|
+
owner: compositionThemeOwner(id, scope),
|
|
154
|
+
scope,
|
|
155
|
+
definition
|
|
156
|
+
});
|
|
157
|
+
let next = addFrame(program, frame, {
|
|
158
|
+
descendants: scope === "descendants",
|
|
159
|
+
local: true
|
|
160
|
+
});
|
|
161
|
+
if (scope !== "descendants") return next;
|
|
162
|
+
|
|
163
|
+
const children = Object.fromEntries(
|
|
164
|
+
next.compositionSpec.children.map(childId => [
|
|
165
|
+
childId,
|
|
166
|
+
applyInheritedFrame(next.children[childId], frame)
|
|
167
|
+
])
|
|
168
|
+
);
|
|
169
|
+
next = next._withCompositionState({
|
|
170
|
+
children,
|
|
171
|
+
compositionSpec: next.compositionSpec
|
|
172
|
+
});
|
|
173
|
+
return materializeComposition(next);
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
export function removeCompositionTheme(program) {
|
|
177
|
+
const state = normalizeThemeState(
|
|
178
|
+
program.materializationConfigs.theme,
|
|
179
|
+
{ composition: true }
|
|
180
|
+
);
|
|
181
|
+
const scope = state.localOrder.at(-1);
|
|
182
|
+
if (scope === undefined) {
|
|
183
|
+
throw new Error("removeTheme requires an active program theme.");
|
|
184
|
+
}
|
|
185
|
+
const owner = compositionThemeOwner(program.compositionSpec.id, scope);
|
|
186
|
+
const frame = state.frames.find(current => current.owner === owner) ??
|
|
187
|
+
state.descendantFrames.find(current => current.owner === owner);
|
|
188
|
+
if (frame === undefined) {
|
|
189
|
+
throw new Error("removeTheme requires an active program theme.");
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
let next = removeFrame(program, owner, {
|
|
193
|
+
descendants: scope === "descendants",
|
|
194
|
+
localScope: scope
|
|
195
|
+
}).program;
|
|
196
|
+
if (scope !== "descendants") return next;
|
|
197
|
+
|
|
198
|
+
const children = Object.fromEntries(
|
|
199
|
+
next.compositionSpec.children.map(id => [
|
|
200
|
+
id,
|
|
201
|
+
removeInheritedFrame(next.children[id], frame)
|
|
202
|
+
])
|
|
203
|
+
);
|
|
204
|
+
next = next._withCompositionState({
|
|
205
|
+
children,
|
|
206
|
+
compositionSpec: next.compositionSpec
|
|
207
|
+
});
|
|
208
|
+
return materializeComposition(next);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export function replayCompositionThemeState(program, storedState) {
|
|
212
|
+
if (storedState === undefined) return program;
|
|
213
|
+
const state = normalizeThemeState(storedState, { composition: true });
|
|
214
|
+
let next = withThemeState(program, state);
|
|
215
|
+
for (const frame of state.descendantFrames) {
|
|
216
|
+
const children = Object.fromEntries(
|
|
217
|
+
next.compositionSpec.children.map(id => [
|
|
218
|
+
id,
|
|
219
|
+
applyInheritedFrame(next.children[id], frame)
|
|
220
|
+
])
|
|
221
|
+
);
|
|
222
|
+
next = next._withCompositionState({
|
|
223
|
+
children,
|
|
224
|
+
compositionSpec: next.compositionSpec
|
|
225
|
+
});
|
|
226
|
+
}
|
|
227
|
+
return materializeComposition(next);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export function replayInheritedThemeFrames(program, storedState) {
|
|
231
|
+
if (storedState === undefined) return program;
|
|
232
|
+
const state = normalizeThemeState(storedState, { composition: true });
|
|
233
|
+
let next = program;
|
|
234
|
+
for (const frame of state.descendantFrames) {
|
|
235
|
+
next = applyInheritedFrame(next, frame);
|
|
236
|
+
}
|
|
237
|
+
return next;
|
|
238
|
+
}
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import { setActionCompletionHook } from "../../core/action.js";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
applyTheme,
|
|
4
|
+
registerCompositionThemeHandlers,
|
|
5
|
+
removeTheme
|
|
6
|
+
} from "./actions.js";
|
|
3
7
|
import { reconcileProgramTheme } from "./reconcile.js";
|
|
4
8
|
|
|
5
|
-
export function registerThemeActions(ProgramClass) {
|
|
9
|
+
export function registerThemeActions(ProgramClass, compositionHandlers) {
|
|
10
|
+
if (compositionHandlers !== undefined) {
|
|
11
|
+
registerCompositionThemeHandlers(compositionHandlers);
|
|
12
|
+
}
|
|
6
13
|
ProgramClass.prototype.applyTheme = applyTheme;
|
|
7
14
|
ProgramClass.prototype.removeTheme = removeTheme;
|
|
8
15
|
setActionCompletionHook(reconcileProgramTheme);
|