@pixel-point/toolcraft 0.0.2
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/LICENSE.md +98 -0
- package/README.md +41 -0
- package/bin/create-toolcraft-app.mjs +8 -0
- package/bin/toolcraft.mjs +8 -0
- package/package.json +24 -0
- package/scripts/prepare-pack.mjs +29 -0
- package/src/cli.mjs +392 -0
- package/src/cli.test.mjs +284 -0
- package/src/copy-recursive.mjs +86 -0
- package/src/generate.mjs +212 -0
- package/src/generate.test.mjs +322 -0
- package/src/import-map.mjs +14 -0
- package/src/package-json.mjs +80 -0
- package/src/package-json.test.mjs +67 -0
- package/src/rewrite-imports.mjs +85 -0
- package/src/rewrite-imports.test.mjs +58 -0
- package/templates/runtime/contracts/component-contracts.test.ts +1165 -0
- package/templates/runtime/contracts/component-contracts.ts +1340 -0
- package/templates/runtime/contracts/decision-contracts.test.ts +206 -0
- package/templates/runtime/contracts/decision-contracts.ts +283 -0
- package/templates/runtime/contracts/index.test.ts +14 -0
- package/templates/runtime/contracts/index.ts +3 -0
- package/templates/runtime/contracts/types.ts +56 -0
- package/templates/runtime/export/export.test.ts +203 -0
- package/templates/runtime/export/export.ts +132 -0
- package/templates/runtime/export/index.ts +1 -0
- package/templates/runtime/index.ts +14 -0
- package/templates/runtime/react/canvas-shell.test.tsx +424 -0
- package/templates/runtime/react/canvas-shell.tsx +408 -0
- package/templates/runtime/react/control-renderers.ts +31 -0
- package/templates/runtime/react/controls-panel.test.tsx +3736 -0
- package/templates/runtime/react/controls-panel.tsx +2327 -0
- package/templates/runtime/react/curve-geometry.test.ts +70 -0
- package/templates/runtime/react/index.ts +15 -0
- package/templates/runtime/react/layer-tree.ts +96 -0
- package/templates/runtime/react/layers-panel.test.tsx +487 -0
- package/templates/runtime/react/layers-panel.tsx +1348 -0
- package/templates/runtime/react/media-file.ts +82 -0
- package/templates/runtime/react/panel-host-config.ts +80 -0
- package/templates/runtime/react/panel-host-geometry.test.ts +66 -0
- package/templates/runtime/react/panel-host-geometry.ts +109 -0
- package/templates/runtime/react/panel-host-types.ts +74 -0
- package/templates/runtime/react/panel-host.test.tsx +102 -0
- package/templates/runtime/react/panel-host.tsx +353 -0
- package/templates/runtime/react/runtime-public-api.test.tsx +132 -0
- package/templates/runtime/react/settings-transfer.test.ts +150 -0
- package/templates/runtime/react/settings-transfer.ts +279 -0
- package/templates/runtime/react/storage-key-migration.ts +48 -0
- package/templates/runtime/react/theme-runtime.tsx +177 -0
- package/templates/runtime/react/timeline-panel.test.tsx +668 -0
- package/templates/runtime/react/timeline-panel.tsx +2953 -0
- package/templates/runtime/react/toolbar-panel.test.tsx +212 -0
- package/templates/runtime/react/toolbar-panel.tsx +205 -0
- package/templates/runtime/react/toolcraft-app.integration.test.tsx +350 -0
- package/templates/runtime/react/toolcraft-app.test.tsx +339 -0
- package/templates/runtime/react/toolcraft-app.tsx +81 -0
- package/templates/runtime/react/toolcraft-root.test.tsx +347 -0
- package/templates/runtime/react/toolcraft-root.tsx +203 -0
- package/templates/runtime/react/use-toolcraft.ts +41 -0
- package/templates/runtime/schema/define-toolcraft.test.ts +1524 -0
- package/templates/runtime/schema/define-toolcraft.ts +1442 -0
- package/templates/runtime/schema/keyframe-capability.test.ts +90 -0
- package/templates/runtime/schema/keyframe-capability.ts +51 -0
- package/templates/runtime/schema/runtime-targets.ts +40 -0
- package/templates/runtime/schema/types.ts +370 -0
- package/templates/runtime/state/canvas-zoom.ts +8 -0
- package/templates/runtime/state/create-template-state.test.ts +242 -0
- package/templates/runtime/state/create-template-state.ts +95 -0
- package/templates/runtime/state/keyframe-evaluation.test.ts +141 -0
- package/templates/runtime/state/keyframe-evaluation.ts +203 -0
- package/templates/runtime/state/persistence.test.ts +217 -0
- package/templates/runtime/state/persistence.ts +511 -0
- package/templates/runtime/state/reducer.test.ts +937 -0
- package/templates/runtime/state/reducer.ts +1212 -0
- package/templates/runtime/state/timeline-readiness.ts +43 -0
- package/templates/runtime/state/types.ts +242 -0
- package/templates/runtime/styles.css +125 -0
- package/templates/runtime/testing/performance.test.ts +1058 -0
- package/templates/runtime/testing/performance.ts +1078 -0
- package/templates/starter/AGENTS.md +186 -0
- package/templates/starter/LICENSE.md +98 -0
- package/templates/starter/NOTICE.md +8 -0
- package/templates/starter/docs/toolcraft/README.md +41 -0
- package/templates/starter/docs/toolcraft/acceptance-testing.md +205 -0
- package/templates/starter/docs/toolcraft/agent-worklog.md +81 -0
- package/templates/starter/docs/toolcraft/assembly-workflow.md +206 -0
- package/templates/starter/docs/toolcraft/component-rules.md +299 -0
- package/templates/starter/docs/toolcraft/custom-controls.md +71 -0
- package/templates/starter/docs/toolcraft/decision-contract.md +71 -0
- package/templates/starter/docs/toolcraft/performance.md +112 -0
- package/templates/starter/docs/toolcraft/renderer-technique.md +48 -0
- package/templates/starter/docs/toolcraft/schema-reference.md +265 -0
- package/templates/starter/docs/toolcraft/workflow.md +87 -0
- package/templates/starter/e2e/app-browser-acceptance.spec.ts +785 -0
- package/templates/starter/e2e/app-controls.spec.ts +41 -0
- package/templates/starter/e2e/app-performance.spec.ts +326 -0
- package/templates/starter/e2e/canvas-handle-helpers.ts +244 -0
- package/templates/starter/e2e/performance-helpers.ts +612 -0
- package/templates/starter/e2e/product-observable-helpers.ts +170 -0
- package/templates/starter/index.html +12 -0
- package/templates/starter/package.json +52 -0
- package/templates/starter/playwright.config.ts +43 -0
- package/templates/starter/scripts/check-ai-skills.mjs +95 -0
- package/templates/starter/scripts/check-toolcraft-docs.mjs +159 -0
- package/templates/starter/scripts/check-toolcraft-integrity.mjs +232 -0
- package/templates/starter/scripts/run-vite-on-free-port.mjs +48 -0
- package/templates/starter/scripts/toolcraft-port.mjs +54 -0
- package/templates/starter/scripts/toolcraft-port.test.mjs +73 -0
- package/templates/starter/src/app/starter-acceptance.test.ts +5959 -0
- package/templates/starter/src/app/starter-acceptance.ts +2646 -0
- package/templates/starter/src/app/starter-performance.test.ts +1390 -0
- package/templates/starter/src/app/starter-performance.ts +12 -0
- package/templates/starter/src/app/starter-schema.test.ts +70 -0
- package/templates/starter/src/app/starter-schema.ts +15 -0
- package/templates/starter/src/main.tsx +18 -0
- package/templates/starter/src/router.tsx +16 -0
- package/templates/starter/src/routes/index.tsx +7 -0
- package/templates/starter/src/routes/root.tsx +19 -0
- package/templates/starter/src/styles.css +120 -0
- package/templates/starter/tsconfig.json +11 -0
- package/templates/starter/vite.config.ts +13 -0
- package/templates/ui/components/composites/accordion.tsx +73 -0
- package/templates/ui/components/composites/alert-dialog.tsx +190 -0
- package/templates/ui/components/composites/alert.tsx +74 -0
- package/templates/ui/components/composites/aspect-ratio.tsx +22 -0
- package/templates/ui/components/composites/avatar.tsx +98 -0
- package/templates/ui/components/composites/badge.tsx +69 -0
- package/templates/ui/components/composites/breadcrumb.tsx +106 -0
- package/templates/ui/components/composites/card.tsx +91 -0
- package/templates/ui/components/composites/combobox.tsx +486 -0
- package/templates/ui/components/composites/command.tsx +296 -0
- package/templates/ui/components/composites/context-menu.tsx +247 -0
- package/templates/ui/components/composites/dialog.tsx +282 -0
- package/templates/ui/components/composites/dropdown-menu.tsx +299 -0
- package/templates/ui/components/composites/empty.tsx +110 -0
- package/templates/ui/components/composites/hover-card.tsx +44 -0
- package/templates/ui/components/composites/index.ts +30 -0
- package/templates/ui/components/composites/menubar.tsx +214 -0
- package/templates/ui/components/composites/navigation-menu.tsx +167 -0
- package/templates/ui/components/composites/pagination.tsx +131 -0
- package/templates/ui/components/composites/progress.tsx +72 -0
- package/templates/ui/components/composites/radio-group.tsx +84 -0
- package/templates/ui/components/composites/resizable.tsx +42 -0
- package/templates/ui/components/composites/sheet.tsx +153 -0
- package/templates/ui/components/composites/sidebar-structural.tsx +310 -0
- package/templates/ui/components/composites/sidebar.tsx +431 -0
- package/templates/ui/components/composites/sonner.tsx +35 -0
- package/templates/ui/components/composites/spinner.tsx +43 -0
- package/templates/ui/components/composites/table.tsx +108 -0
- package/templates/ui/components/composites/tabs.tsx +83 -0
- package/templates/ui/components/control-layout/index.tsx +437 -0
- package/templates/ui/components/controls/actions/actions-control.tsx +139 -0
- package/templates/ui/components/controls/actions/index.ts +9 -0
- package/templates/ui/components/controls/anchor-grid/anchor-grid-control.tsx +107 -0
- package/templates/ui/components/controls/anchor-grid/index.ts +4 -0
- package/templates/ui/components/controls/boolean/boolean-controls.tsx +79 -0
- package/templates/ui/components/controls/boolean/index.ts +4 -0
- package/templates/ui/components/controls/channel-mixer/channel-mixer-control.tsx +95 -0
- package/templates/ui/components/controls/channel-mixer/index.ts +4 -0
- package/templates/ui/components/controls/channel-tabs/channel-tabs.tsx +42 -0
- package/templates/ui/components/controls/channel-tabs/index.ts +6 -0
- package/templates/ui/components/controls/code-textarea/code-textarea-control.tsx +90 -0
- package/templates/ui/components/controls/code-textarea/index.ts +4 -0
- package/templates/ui/components/controls/color/color-control.tsx +571 -0
- package/templates/ui/components/controls/color/color-picker-popover.tsx +104 -0
- package/templates/ui/components/controls/color/index.ts +41 -0
- package/templates/ui/components/controls/color/palette-control-data.ts +436 -0
- package/templates/ui/components/controls/color/palette-control.tsx +535 -0
- package/templates/ui/components/controls/color/style-guide-color-picker-channel-utils.ts +162 -0
- package/templates/ui/components/controls/color/style-guide-color-picker-interactions.ts +190 -0
- package/templates/ui/components/controls/color/style-guide-color-picker-logic.ts +485 -0
- package/templates/ui/components/controls/color/style-guide-color-picker-parts.tsx +710 -0
- package/templates/ui/components/controls/color/style-guide-color-picker.tsx +503 -0
- package/templates/ui/components/controls/control-types.ts +43 -0
- package/templates/ui/components/controls/curves/curve-geometry.ts +355 -0
- package/templates/ui/components/controls/curves/curve-graph.tsx +390 -0
- package/templates/ui/components/controls/curves/curves-control.tsx +445 -0
- package/templates/ui/components/controls/curves/index.ts +6 -0
- package/templates/ui/components/controls/file-drop/file-drop-control.tsx +191 -0
- package/templates/ui/components/controls/file-drop/index.ts +5 -0
- package/templates/ui/components/controls/font-picker/font-catalog.json +15360 -0
- package/templates/ui/components/controls/font-picker/font-catalog.ts +116 -0
- package/templates/ui/components/controls/font-picker/font-picker-control.tsx +1202 -0
- package/templates/ui/components/controls/font-picker/font-preview-loader.ts +336 -0
- package/templates/ui/components/controls/font-picker/index.ts +24 -0
- package/templates/ui/components/controls/font-picker/use-hover-intent.ts +46 -0
- package/templates/ui/components/controls/gradient/gradient-control-utils.ts +190 -0
- package/templates/ui/components/controls/gradient/gradient-control.tsx +612 -0
- package/templates/ui/components/controls/gradient/gradient-stop-list.tsx +400 -0
- package/templates/ui/components/controls/gradient/gradient-toolbar.tsx +152 -0
- package/templates/ui/components/controls/gradient/index.ts +4 -0
- package/templates/ui/components/controls/image-picker/image-picker-control.tsx +139 -0
- package/templates/ui/components/controls/image-picker/index.ts +7 -0
- package/templates/ui/components/controls/index.ts +192 -0
- package/templates/ui/components/controls/range-input/index.ts +4 -0
- package/templates/ui/components/controls/range-input/range-input-control.tsx +173 -0
- package/templates/ui/components/controls/range-slider/index.ts +4 -0
- package/templates/ui/components/controls/range-slider/range-slider-control.tsx +122 -0
- package/templates/ui/components/controls/range-slider/range-slider-value.ts +61 -0
- package/templates/ui/components/controls/segmented/index.ts +8 -0
- package/templates/ui/components/controls/segmented/segmented-control.tsx +94 -0
- package/templates/ui/components/controls/select/index.ts +4 -0
- package/templates/ui/components/controls/select/select-control.tsx +223 -0
- package/templates/ui/components/controls/slider/index.ts +4 -0
- package/templates/ui/components/controls/slider/slider-control.tsx +150 -0
- package/templates/ui/components/controls/slider/slider-value.ts +56 -0
- package/templates/ui/components/controls/text-input/index.ts +4 -0
- package/templates/ui/components/controls/text-input/text-input-control.tsx +158 -0
- package/templates/ui/components/controls/use-measured-element-width.ts +42 -0
- package/templates/ui/components/controls/vector/index.ts +8 -0
- package/templates/ui/components/controls/vector/vector-control.tsx +401 -0
- package/templates/ui/components/panel/index.ts +19 -0
- package/templates/ui/components/panel/panel-actions.tsx +165 -0
- package/templates/ui/components/panel/panel-header.tsx +61 -0
- package/templates/ui/components/panel/panel-icon-button.tsx +96 -0
- package/templates/ui/components/panel/panel-section.tsx +168 -0
- package/templates/ui/components/panel/panel-surface.tsx +206 -0
- package/templates/ui/components/panel/panel.tsx +210 -0
- package/templates/ui/components/primitives/animated-loader.tsx +61 -0
- package/templates/ui/components/primitives/button-group.tsx +134 -0
- package/templates/ui/components/primitives/button.tsx +429 -0
- package/templates/ui/components/primitives/checkbox.tsx +62 -0
- package/templates/ui/components/primitives/editable-slider-value-label.tsx +337 -0
- package/templates/ui/components/primitives/field.tsx +225 -0
- package/templates/ui/components/primitives/index.ts +82 -0
- package/templates/ui/components/primitives/input-group.tsx +298 -0
- package/templates/ui/components/primitives/input.tsx +61 -0
- package/templates/ui/components/primitives/internal/button-loading.tsx +178 -0
- package/templates/ui/components/primitives/label.tsx +16 -0
- package/templates/ui/components/primitives/popover.tsx +126 -0
- package/templates/ui/components/primitives/portal-layer-context.tsx +33 -0
- package/templates/ui/components/primitives/primitive-arrow-icon.tsx +38 -0
- package/templates/ui/components/primitives/scroll-fade-logic.ts +441 -0
- package/templates/ui/components/primitives/scroll-fade-render.tsx +75 -0
- package/templates/ui/components/primitives/scroll-fade-types.ts +41 -0
- package/templates/ui/components/primitives/scroll-fade.tsx +72 -0
- package/templates/ui/components/primitives/select.tsx +408 -0
- package/templates/ui/components/primitives/selection-state.ts +31 -0
- package/templates/ui/components/primitives/separator.tsx +21 -0
- package/templates/ui/components/primitives/slider/index.ts +4 -0
- package/templates/ui/components/primitives/slider/slider-interaction.tsx +96 -0
- package/templates/ui/components/primitives/slider/slider-parts.tsx +303 -0
- package/templates/ui/components/primitives/slider/slider-reset.ts +152 -0
- package/templates/ui/components/primitives/slider/slider-value.ts +114 -0
- package/templates/ui/components/primitives/slider/slider.tsx +511 -0
- package/templates/ui/components/primitives/switch.tsx +35 -0
- package/templates/ui/components/primitives/textarea.tsx +49 -0
- package/templates/ui/components/primitives/toggle-group.tsx +114 -0
- package/templates/ui/components/primitives/toggle.tsx +46 -0
- package/templates/ui/components/primitives/tooltip.tsx +100 -0
- package/templates/ui/hooks/use-mobile.ts +21 -0
- package/templates/ui/index.ts +31 -0
- package/templates/ui/lib/control-outline.ts +3 -0
- package/templates/ui/lib/input-control-style.ts +131 -0
- package/templates/ui/lib/style-guide-color-utils.ts +111 -0
- package/templates/ui/lib/utils.ts +6 -0
- package/templates/ui/styles.css +291 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import { describe, expect, it, vi } from "vitest";
|
|
2
|
+
|
|
3
|
+
import { defineToolcraft } from "../schema/define-toolcraft";
|
|
4
|
+
import type { ToolcraftState } from "../state/types";
|
|
5
|
+
import {
|
|
6
|
+
createToolcraftPngExportCanvas,
|
|
7
|
+
getToolcraftRetinaExportPixelRatio,
|
|
8
|
+
getToolcraftRetinaExportSize,
|
|
9
|
+
shouldIncludeToolcraftExportBackground,
|
|
10
|
+
} from "./export";
|
|
11
|
+
|
|
12
|
+
function createState(schema = defineToolcraft({ canvas: { enabled: true }, panels: {} })): ToolcraftState {
|
|
13
|
+
return {
|
|
14
|
+
canvas: {
|
|
15
|
+
offset: { x: 0, y: 0 },
|
|
16
|
+
size: { height: 100, unit: "px", width: 200 },
|
|
17
|
+
zoom: 70,
|
|
18
|
+
},
|
|
19
|
+
defaults: {},
|
|
20
|
+
history: {
|
|
21
|
+
redo: [],
|
|
22
|
+
undo: [],
|
|
23
|
+
},
|
|
24
|
+
layers: [],
|
|
25
|
+
mediaAssets: [],
|
|
26
|
+
panels: {
|
|
27
|
+
controls: { offset: { x: 0, y: 0 } },
|
|
28
|
+
layers: { offset: { x: 0, y: 0 } },
|
|
29
|
+
timeline: { offset: { x: 0, y: 0 } },
|
|
30
|
+
toolbar: { offset: { x: 0, y: 0 } },
|
|
31
|
+
},
|
|
32
|
+
schema,
|
|
33
|
+
selectedLayerId: null,
|
|
34
|
+
timeline: {
|
|
35
|
+
currentTimeSeconds: 0,
|
|
36
|
+
durationSeconds: 8,
|
|
37
|
+
expanded: false,
|
|
38
|
+
isLooping: true,
|
|
39
|
+
isPlaying: false,
|
|
40
|
+
keyframeGroups: [],
|
|
41
|
+
selectedKeyframeId: null,
|
|
42
|
+
},
|
|
43
|
+
values: {},
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function createMockCanvas() {
|
|
48
|
+
const context = {
|
|
49
|
+
clearRect: vi.fn(),
|
|
50
|
+
fillRect: vi.fn(),
|
|
51
|
+
fillStyle: "",
|
|
52
|
+
restore: vi.fn(),
|
|
53
|
+
save: vi.fn(),
|
|
54
|
+
scale: vi.fn(),
|
|
55
|
+
};
|
|
56
|
+
const canvas = {
|
|
57
|
+
getContext: vi.fn(() => context),
|
|
58
|
+
height: 0,
|
|
59
|
+
width: 0,
|
|
60
|
+
} as unknown as HTMLCanvasElement;
|
|
61
|
+
|
|
62
|
+
return { canvas, context };
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
describe("Toolcraft export helpers", () => {
|
|
66
|
+
it("normalizes png export background to include by default", () => {
|
|
67
|
+
const schema = defineToolcraft({
|
|
68
|
+
canvas: { enabled: true },
|
|
69
|
+
panels: {},
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
expect(schema.export.png.background).toBe("include");
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it("preserves transparent png export background option", () => {
|
|
76
|
+
const schema = defineToolcraft({
|
|
77
|
+
canvas: { enabled: true },
|
|
78
|
+
export: {
|
|
79
|
+
png: {
|
|
80
|
+
background: "transparent",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
panels: {},
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
expect(schema.export.png.background).toBe("transparent");
|
|
87
|
+
expect(shouldIncludeToolcraftExportBackground({ format: "png", schema })).toBe(false);
|
|
88
|
+
expect(shouldIncludeToolcraftExportBackground({ format: "video", schema })).toBe(true);
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it("uses at least 2x pixel ratio for retina export", () => {
|
|
92
|
+
expect(getToolcraftRetinaExportPixelRatio(1)).toBe(2);
|
|
93
|
+
expect(getToolcraftRetinaExportPixelRatio(1.5)).toBe(2);
|
|
94
|
+
expect(getToolcraftRetinaExportPixelRatio(3)).toBe(3);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
it("resolves retina export size from canvas size rather than viewport zoom", () => {
|
|
98
|
+
const state = createState();
|
|
99
|
+
state.canvas.zoom = 35;
|
|
100
|
+
|
|
101
|
+
expect(getToolcraftRetinaExportSize({ devicePixelRatio: 2, state })).toEqual({
|
|
102
|
+
height: 200,
|
|
103
|
+
pixelRatio: 2,
|
|
104
|
+
width: 400,
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
it("creates a transparent retina png canvas when png background is disabled", () => {
|
|
109
|
+
const schema = defineToolcraft({
|
|
110
|
+
canvas: { enabled: true },
|
|
111
|
+
export: {
|
|
112
|
+
png: {
|
|
113
|
+
background: "transparent",
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
panels: {},
|
|
117
|
+
});
|
|
118
|
+
const state = createState(schema);
|
|
119
|
+
const { canvas, context } = createMockCanvas();
|
|
120
|
+
const render = vi.fn();
|
|
121
|
+
|
|
122
|
+
const exportedCanvas = createToolcraftPngExportCanvas({
|
|
123
|
+
canvasFactory: () => canvas,
|
|
124
|
+
devicePixelRatio: 2,
|
|
125
|
+
render,
|
|
126
|
+
state,
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
expect(exportedCanvas.width).toBe(400);
|
|
130
|
+
expect(exportedCanvas.height).toBe(200);
|
|
131
|
+
expect(context.clearRect).toHaveBeenCalledWith(0, 0, 400, 200);
|
|
132
|
+
expect(context.fillRect).not.toHaveBeenCalled();
|
|
133
|
+
expect(context.scale).toHaveBeenCalledWith(2, 2);
|
|
134
|
+
expect(render).toHaveBeenCalledWith(
|
|
135
|
+
expect.objectContaining({
|
|
136
|
+
cssHeight: 100,
|
|
137
|
+
cssWidth: 200,
|
|
138
|
+
includeBackground: false,
|
|
139
|
+
pixelHeight: 200,
|
|
140
|
+
pixelRatio: 2,
|
|
141
|
+
pixelWidth: 400,
|
|
142
|
+
}),
|
|
143
|
+
);
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
it("fills the png background when png background is enabled", () => {
|
|
147
|
+
const state = createState();
|
|
148
|
+
const { canvas, context } = createMockCanvas();
|
|
149
|
+
|
|
150
|
+
createToolcraftPngExportCanvas({
|
|
151
|
+
background: "#112233",
|
|
152
|
+
canvasFactory: () => canvas,
|
|
153
|
+
devicePixelRatio: 2,
|
|
154
|
+
render: vi.fn(),
|
|
155
|
+
state,
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
expect(context.fillStyle).toBe("#112233");
|
|
159
|
+
expect(context.fillRect).toHaveBeenCalledWith(0, 0, 400, 200);
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
it("allows runtime controls to disable the png background", () => {
|
|
163
|
+
const state = createState();
|
|
164
|
+
const { canvas, context } = createMockCanvas();
|
|
165
|
+
|
|
166
|
+
createToolcraftPngExportCanvas({
|
|
167
|
+
background: "#112233",
|
|
168
|
+
canvasFactory: () => canvas,
|
|
169
|
+
devicePixelRatio: 2,
|
|
170
|
+
includeBackground: false,
|
|
171
|
+
render: vi.fn(),
|
|
172
|
+
state,
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
expect(context.fillRect).not.toHaveBeenCalled();
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
it("allows runtime controls to include the png background for transparent schema defaults", () => {
|
|
179
|
+
const schema = defineToolcraft({
|
|
180
|
+
canvas: { enabled: true },
|
|
181
|
+
export: {
|
|
182
|
+
png: {
|
|
183
|
+
background: "transparent",
|
|
184
|
+
},
|
|
185
|
+
},
|
|
186
|
+
panels: {},
|
|
187
|
+
});
|
|
188
|
+
const state = createState(schema);
|
|
189
|
+
const { canvas, context } = createMockCanvas();
|
|
190
|
+
|
|
191
|
+
createToolcraftPngExportCanvas({
|
|
192
|
+
background: "#445566",
|
|
193
|
+
canvasFactory: () => canvas,
|
|
194
|
+
devicePixelRatio: 2,
|
|
195
|
+
includeBackground: true,
|
|
196
|
+
render: vi.fn(),
|
|
197
|
+
state,
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
expect(context.fillStyle).toBe("#445566");
|
|
201
|
+
expect(context.fillRect).toHaveBeenCalledWith(0, 0, 400, 200);
|
|
202
|
+
});
|
|
203
|
+
});
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import type { ResolvedToolcraftAppSchema } from "../schema/types";
|
|
2
|
+
import type { ToolcraftState } from "../state/types";
|
|
3
|
+
|
|
4
|
+
export type ToolcraftExportFormat = "png" | "video";
|
|
5
|
+
|
|
6
|
+
export type ToolcraftRetinaExportSize = {
|
|
7
|
+
height: number;
|
|
8
|
+
pixelRatio: number;
|
|
9
|
+
width: number;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
export type ToolcraftExportBackgroundOptions = {
|
|
13
|
+
format: ToolcraftExportFormat;
|
|
14
|
+
schema: ResolvedToolcraftAppSchema;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export type ToolcraftExportSizeOptions = {
|
|
18
|
+
devicePixelRatio?: number;
|
|
19
|
+
state: ToolcraftState;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export type ToolcraftPngRenderContext = {
|
|
23
|
+
canvas: HTMLCanvasElement;
|
|
24
|
+
context: CanvasRenderingContext2D;
|
|
25
|
+
cssHeight: number;
|
|
26
|
+
cssWidth: number;
|
|
27
|
+
includeBackground: boolean;
|
|
28
|
+
pixelHeight: number;
|
|
29
|
+
pixelRatio: number;
|
|
30
|
+
pixelWidth: number;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type ToolcraftPngExportCanvasOptions = {
|
|
34
|
+
background?: string;
|
|
35
|
+
canvasFactory?: () => HTMLCanvasElement;
|
|
36
|
+
devicePixelRatio?: number;
|
|
37
|
+
includeBackground?: boolean;
|
|
38
|
+
render: (context: ToolcraftPngRenderContext) => void;
|
|
39
|
+
state: ToolcraftState;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export function getToolcraftRetinaExportPixelRatio(devicePixelRatio?: number): number {
|
|
43
|
+
const globalPixelRatio = (globalThis as typeof globalThis & { devicePixelRatio?: number })
|
|
44
|
+
.devicePixelRatio;
|
|
45
|
+
const fallbackPixelRatio =
|
|
46
|
+
typeof globalPixelRatio === "number" && Number.isFinite(globalPixelRatio)
|
|
47
|
+
? globalPixelRatio
|
|
48
|
+
: 1;
|
|
49
|
+
const requestedPixelRatio =
|
|
50
|
+
typeof devicePixelRatio === "number" && Number.isFinite(devicePixelRatio)
|
|
51
|
+
? devicePixelRatio
|
|
52
|
+
: fallbackPixelRatio;
|
|
53
|
+
|
|
54
|
+
return Math.max(2, requestedPixelRatio);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function getToolcraftRetinaExportSize({
|
|
58
|
+
devicePixelRatio,
|
|
59
|
+
state,
|
|
60
|
+
}: ToolcraftExportSizeOptions): ToolcraftRetinaExportSize {
|
|
61
|
+
const pixelRatio = getToolcraftRetinaExportPixelRatio(devicePixelRatio);
|
|
62
|
+
|
|
63
|
+
return {
|
|
64
|
+
height: Math.ceil(state.canvas.size.height * pixelRatio),
|
|
65
|
+
pixelRatio,
|
|
66
|
+
width: Math.ceil(state.canvas.size.width * pixelRatio),
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function shouldIncludeToolcraftExportBackground({
|
|
71
|
+
format,
|
|
72
|
+
schema,
|
|
73
|
+
}: ToolcraftExportBackgroundOptions): boolean {
|
|
74
|
+
if (format === "video") {
|
|
75
|
+
return true;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
return schema.export.png.background !== "transparent";
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export function createToolcraftPngExportCanvas({
|
|
82
|
+
background = "#000000",
|
|
83
|
+
canvasFactory = () => document.createElement("canvas"),
|
|
84
|
+
devicePixelRatio,
|
|
85
|
+
includeBackground: includeBackgroundOverride,
|
|
86
|
+
render,
|
|
87
|
+
state,
|
|
88
|
+
}: ToolcraftPngExportCanvasOptions): HTMLCanvasElement {
|
|
89
|
+
const canvas = canvasFactory();
|
|
90
|
+
const { height, pixelRatio, width } = getToolcraftRetinaExportSize({
|
|
91
|
+
devicePixelRatio,
|
|
92
|
+
state,
|
|
93
|
+
});
|
|
94
|
+
const includeBackground =
|
|
95
|
+
includeBackgroundOverride ??
|
|
96
|
+
shouldIncludeToolcraftExportBackground({
|
|
97
|
+
format: "png",
|
|
98
|
+
schema: state.schema,
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
canvas.width = width;
|
|
102
|
+
canvas.height = height;
|
|
103
|
+
|
|
104
|
+
const context = canvas.getContext("2d");
|
|
105
|
+
|
|
106
|
+
if (!context) {
|
|
107
|
+
throw new Error("Toolcraft PNG export requires a 2D canvas context.");
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
context.save();
|
|
111
|
+
context.clearRect(0, 0, width, height);
|
|
112
|
+
|
|
113
|
+
if (includeBackground) {
|
|
114
|
+
context.fillStyle = background;
|
|
115
|
+
context.fillRect(0, 0, width, height);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
context.scale(pixelRatio, pixelRatio);
|
|
119
|
+
render({
|
|
120
|
+
canvas,
|
|
121
|
+
context,
|
|
122
|
+
cssHeight: state.canvas.size.height,
|
|
123
|
+
cssWidth: state.canvas.size.width,
|
|
124
|
+
includeBackground,
|
|
125
|
+
pixelHeight: height,
|
|
126
|
+
pixelRatio,
|
|
127
|
+
pixelWidth: width,
|
|
128
|
+
});
|
|
129
|
+
context.restore();
|
|
130
|
+
|
|
131
|
+
return canvas;
|
|
132
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./export";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export * from "./contracts/component-contracts";
|
|
2
|
+
export * from "./contracts/decision-contracts";
|
|
3
|
+
export * from "./contracts/types";
|
|
4
|
+
export * from "./export";
|
|
5
|
+
export * from "./schema/define-toolcraft";
|
|
6
|
+
export * from "./schema/keyframe-capability";
|
|
7
|
+
export * from "./schema/runtime-targets";
|
|
8
|
+
export * from "./schema/types";
|
|
9
|
+
export * from "./state/create-template-state";
|
|
10
|
+
export * from "./state/keyframe-evaluation";
|
|
11
|
+
export * from "./state/persistence";
|
|
12
|
+
export * from "./state/reducer";
|
|
13
|
+
export * from "./state/types";
|
|
14
|
+
export * from "./testing/performance";
|