chore: import upstream snapshot with attribution
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docs / Validate docs (push) Has been cancelled
Sync skills to ClawHub / Publish changed skills (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:58:35 +08:00
commit 85453da49f
4031 changed files with 710987 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
.hf-versions/
composition.html
dist/
node_modules/
+84
View File
@@ -0,0 +1,84 @@
# @hyperframes/sdk-playground
Interactive browser playground for the `@hyperframes/sdk` API. Open a composition, edit it through the full SDK op surface, watch the preview update live.
## Running
```bash
bun run --cwd packages/sdk-playground dev
```
Serves at `http://localhost:5173`. On first load it reads `packages/sdk-playground/composition.html` from disk (if present) or falls back to a built-in demo composition.
## Features
### File persistence
Composition state is persisted to `packages/sdk-playground/composition.html` via a Vite dev-server plugin backed by `@hyperframes/sdk/adapters/fs`. Every save writes a timestamped snapshot to `.hf-versions/composition.html/` (capped at 20). Reload the page and your last state is restored.
### Preview iframe
Full composition rendered in a sandboxed `<iframe>`. Supports:
- **Play / Pause / Seek** via the transport bar
- **Click-to-select** elements (highlights in the tree and properties panel)
- **Drag-to-reposition** — drag any element to a new position; on drop the playground calls `comp.setStyle(id, { left, top })`
### Element tree
Lists all non-root elements. Click any row to select it.
### Properties panel
Editable per-element properties for the selected element:
| Section | SDK op |
| ---------- | --------------------------------------------------------------------------- |
| Content | `comp.setText(id, value)` |
| Typography | `comp.setStyle(id, { fontSize, fontWeight, color, fontFamily })` |
| Box | `comp.setStyle(id, { top, left, width, height })` |
| Attributes | `comp.element(id).setAttribute(name, value)` — shows all non-internal attrs |
| Danger | `comp.element(id).removeElement()` |
| Animations | `comp.setTiming(id, { start, duration })` — inline form per GSAP tween |
### Timeline
DAW-style per-element tween blocks. Drag handles to trim start/end; drag body to move. All edits go through `comp.setTiming(id, { start, duration })` which keeps the GSAP script and DOM attributes in sync.
### Ops panel
Full op surface, grouped by feature:
| Section | SDK op |
| ---------------------------- | --------------------------------------------------------------------------------- |
| PreviewAdapter.select() | `preview.select([id])` |
| setStyle | `comp.setStyle(id, styles)` |
| setText | `comp.setText(id, value)` |
| addGsapTween | `comp.addGsapTween(target, spec)` |
| setTiming | `comp.setTiming(id, { start, duration })` |
| setGsapTween | `comp.setGsapTween(animId, updates)` |
| moveElement | `comp.moveElement(id, { parent, index })` |
| setClassStyle | `comp.dispatch({ type: "setClassStyle", selector, styles })` |
| setAttribute / removeElement | `comp.element(id).setAttribute()` / `.removeElement()` |
| setVariableValue | `comp.setVariableValue(id, value)` |
| find(query) | `comp.find({ tag, text, name, track })` |
| selection() proxy | `comp.selection().setStyle()` / `.removeElement()` |
| listVersions / loadFrom | `adapter.listVersions()` / `adapter.loadFrom()` |
| History / inspect | `comp.undo()`, `comp.redo()`, `comp.can()`, `comp.getOverrides()`, `comp.flush()` |
### Editor modal
Click "Open editor" to view and directly edit the raw composition HTML. Saving re-opens the composition through the SDK.
---
## Planned / not yet wired
- `comp.setTrackVariable(trackId, variableId)` — variable binding per track
- `comp.addElement(spec)` — create new elements from the UI
- `comp.duplicateElement(id)` — duplicate with offset
- Selection multi-select (current: single-select only)
- Timeline zoom and horizontal scroll for long compositions
- Version history browser — list/preview/restore past versions inline (API is implemented; UI shows only list + load-oldest)
- `comp.on('change', cb)` live event log fed from SDK event stream
- Render to video via `@hyperframes/producer` integration
+643
View File
@@ -0,0 +1,643 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@hyperframes/sdk editor</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family:
system-ui,
-apple-system,
sans-serif;
background: #0f1117;
color: #e5e7eb;
height: 100vh;
display: flex;
flex-direction: column;
overflow: hidden;
}
/* ── Header ── */
#header {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 14px;
background: #161b27;
border-bottom: 1px solid #1f2937;
flex-shrink: 0;
}
#header h1 {
font-size: 14px;
font-weight: 600;
color: #f9fafb;
}
#header .badge {
font-size: 11px;
background: #1d4ed8;
color: #bfdbfe;
padding: 2px 7px;
border-radius: 10px;
}
#header .spacer {
flex: 1;
}
#header .sel-label {
font-size: 12px;
color: #4b5563;
}
#header #sel-display {
font-size: 12px;
color: #a78bfa;
font-family: monospace;
min-width: 80px;
}
/* ── Main grid ── */
#app-main {
display: grid;
grid-template-columns: 1fr 310px 260px;
flex: 1;
min-height: 0;
overflow: hidden;
}
/* ── Preview panel ── */
#preview-panel {
display: flex;
flex-direction: column;
padding: 10px;
gap: 8px;
overflow: hidden;
border-right: 1px solid #1f2937;
}
#preview-scaler-outer {
position: relative;
width: 100%;
background: #000;
border: 1px solid #1f2937;
border-radius: 4px;
overflow: hidden;
flex-shrink: 0;
}
#preview-scaler-inner {
transform-origin: top left;
}
#preview-frame {
width: 1280px;
height: 720px;
border: none;
display: block;
}
#preview-hint {
font-size: 11px;
color: #374151;
text-align: center;
}
/* ── Inspector panel ── */
#inspector-panel {
display: flex;
flex-direction: column;
border-right: 1px solid #1f2937;
overflow: hidden;
}
#inspector-tabs {
display: flex;
border-bottom: 1px solid #1f2937;
flex-shrink: 0;
}
.ins-tab {
padding: 7px 16px;
font-size: 12px;
cursor: pointer;
color: #6b7280;
border-bottom: 2px solid transparent;
user-select: none;
}
.ins-tab.active {
color: #60a5fa;
border-bottom-color: #60a5fa;
}
/* Elements list */
#element-list {
border-bottom: 1px solid #1f2937;
overflow-y: auto;
max-height: 160px;
flex-shrink: 0;
}
.el-item {
display: flex;
align-items: center;
gap: 6px;
padding: 5px 10px;
cursor: pointer;
font-size: 12px;
border-bottom: 1px solid #111827;
}
.el-item:hover {
background: #1a2235;
}
.el-item.selected {
background: #172554;
}
.el-item .el-tag {
color: #6b7280;
font-family: monospace;
font-size: 11px;
}
.el-item .el-id {
color: #d1d5db;
font-family: monospace;
}
.el-item .el-text {
color: #4b5563;
font-size: 11px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100px;
}
/* Properties / Ops content */
#inspector-content {
flex: 1;
overflow-y: auto;
padding: 10px;
}
.prop-section {
margin-bottom: 12px;
}
.prop-section-title {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #374151;
margin-bottom: 6px;
}
.prop-row {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 5px;
}
.prop-label {
font-size: 11px;
color: #6b7280;
width: 64px;
flex-shrink: 0;
}
.prop-input {
flex: 1;
padding: 3px 6px;
background: #111827;
color: #f9fafb;
border: 1px solid #374151;
border-radius: 3px;
font-size: 12px;
font-family: monospace;
min-width: 0;
}
.prop-input:focus {
outline: none;
border-color: #3b82f6;
}
.prop-input.wide {
width: 100%;
}
input[type="color"].prop-color {
width: 28px;
height: 24px;
padding: 1px 2px;
cursor: pointer;
flex-shrink: 0;
border-radius: 3px;
}
textarea.prop-input {
resize: vertical;
min-height: 48px;
font-family: system-ui, sans-serif;
}
select.prop-input {
cursor: pointer;
}
.prop-no-selection {
font-size: 12px;
color: #374151;
padding: 8px 0;
}
/* Tween list */
.tween-id {
font-size: 11px;
font-family: monospace;
color: #34d399;
background: #064e3b;
padding: 2px 6px;
border-radius: 3px;
margin-bottom: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#add-tween-form {
margin-top: 6px;
display: none;
}
#add-tween-form.open {
display: block;
}
/* Op sections (test panel) */
.op-section {
border: 1px solid #1f2937;
border-radius: 5px;
padding: 8px;
margin-bottom: 7px;
}
.op-title {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #374151;
margin-bottom: 6px;
font-family: monospace;
}
.op-row {
display: flex;
flex-wrap: wrap;
gap: 5px;
align-items: center;
margin-bottom: 4px;
}
.op-note {
font-size: 11px;
color: #374151;
margin-top: 3px;
}
#anim-id-display {
font-size: 11px;
font-family: monospace;
color: #34d399;
background: #064e3b;
padding: 2px 6px;
border-radius: 3px;
margin-top: 3px;
}
/* Shared button / input */
button {
padding: 4px 10px;
background: #1f2937;
color: #d1d5db;
border: 1px solid #374151;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
}
button:hover {
background: #374151;
color: #f9fafb;
}
button.primary {
background: #1d4ed8;
border-color: #2563eb;
color: #fff;
}
button.primary:hover {
background: #2563eb;
}
button.danger {
background: #7f1d1d;
border-color: #991b1b;
color: #fca5a5;
}
button.danger:hover {
background: #991b1b;
}
button.ghost {
background: transparent;
border-color: transparent;
color: #6b7280;
}
button.ghost:hover {
background: #1f2937;
color: #d1d5db;
}
input[type="text"],
input[type="number"] {
padding: 3px 7px;
background: #111827;
color: #f9fafb;
border: 1px solid #374151;
border-radius: 4px;
font-size: 12px;
font-family: monospace;
}
input[type="text"] {
width: 130px;
}
input[type="number"] {
width: 65px;
}
/* ── Log panel ── */
#log-panel {
display: flex;
flex-direction: column;
overflow: hidden;
}
.panel-title {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.07em;
color: #374151;
padding: 7px 10px;
border-bottom: 1px solid #1f2937;
flex-shrink: 0;
}
#log-entries {
overflow-y: auto;
padding: 6px;
flex: 1;
}
.log-entry {
border-left: 3px solid #374151;
padding: 3px 7px;
margin-bottom: 4px;
font-size: 11px;
font-family: monospace;
background: #111827;
border-radius: 0 3px 3px 0;
}
.log-entry .log-type {
font-weight: 700;
margin-right: 5px;
}
.log-entry pre {
color: #6b7280;
white-space: pre-wrap;
word-break: break-all;
margin-top: 2px;
font-size: 10px;
}
/* ── Timeline panel ── */
#timeline-panel {
flex-shrink: 0;
height: 158px;
border-top: 1px solid #1f2937;
display: flex;
flex-direction: column;
background: #0a0d14;
}
#tl-controls {
display: flex;
align-items: center;
gap: 8px;
padding: 4px 10px;
border-bottom: 1px solid #1f2937;
flex-shrink: 0;
}
#tl-scrubber {
flex: 1;
accent-color: #3b82f6;
cursor: pointer;
}
#tl-time,
#tl-dur {
font-size: 11px;
font-family: monospace;
color: #4b5563;
white-space: nowrap;
min-width: 32px;
}
#tl-dur {
text-align: right;
}
#tl-body {
flex: 1;
position: relative;
overflow: hidden;
}
#tl-tracks {
position: absolute;
inset: 0;
overflow-y: auto;
overflow-x: hidden;
}
.tl-row {
display: flex;
align-items: center;
height: 26px;
border-bottom: 1px solid #111827;
}
.tl-row:hover {
background: rgba(255, 255, 255, 0.02);
}
.tl-label {
width: 120px;
flex-shrink: 0;
font-size: 11px;
font-family: monospace;
color: #4b5563;
padding: 0 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
border-right: 1px solid #1f2937;
}
.tl-track {
flex: 1;
position: relative;
height: 100%;
}
.tl-block {
position: absolute;
top: 4px;
height: 17px;
border-radius: 3px;
cursor: grab;
opacity: 0.75;
min-width: 4px;
user-select: none;
}
.tl-block:hover {
opacity: 1;
}
.tl-block.dragging {
opacity: 1;
cursor: grabbing;
}
.tl-handle {
position: absolute;
top: 0;
bottom: 0;
width: 6px;
cursor: ew-resize;
}
.tl-handle-l {
left: 0;
border-radius: 3px 0 0 3px;
}
.tl-handle-r {
right: 0;
border-radius: 0 3px 3px 0;
}
.tl-handle:hover {
background: rgba(255, 255, 255, 0.25);
}
#tl-playhead {
position: absolute;
top: 0;
bottom: 0;
width: 1px;
background: #f87171;
pointer-events: none;
left: 120px;
z-index: 10;
}
/* ── Open overlay ── */
#open-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 100;
}
#open-overlay.visible {
display: flex;
}
#open-dialog {
background: #161b27;
border: 1px solid #1f2937;
border-radius: 8px;
padding: 20px;
width: 680px;
max-height: 80vh;
display: flex;
flex-direction: column;
gap: 12px;
}
#open-dialog h2 {
font-size: 15px;
font-weight: 600;
color: #f9fafb;
}
#open-dialog p {
font-size: 12px;
color: #6b7280;
}
#open-textarea {
flex: 1;
min-height: 300px;
background: #0f1117;
color: #d1d5db;
border: 1px solid #374151;
border-radius: 4px;
padding: 10px;
font-size: 12px;
font-family: monospace;
resize: vertical;
}
#open-dialog .dialog-actions {
display: flex;
gap: 8px;
justify-content: flex-end;
}
</style>
</head>
<body>
<div id="header">
<h1>@hyperframes/sdk</h1>
<span class="badge">editor</span>
<span id="comp-name" style="font-size: 12px; color: #4b5563; font-family: monospace"
>demo</span
>
<span class="spacer"></span>
<span class="sel-label">selection:</span>
<span id="sel-display">(none)</span>
<button id="btn-undo" class="ghost">← Undo</button>
<button id="btn-redo" class="ghost">Redo →</button>
<button id="btn-open" class="primary">Open…</button>
</div>
<div id="app-main">
<!-- Preview -->
<div id="preview-panel">
<div id="preview-scaler-outer">
<div id="preview-scaler-inner">
<iframe id="preview-frame" sandbox="allow-scripts" title="composition preview"></iframe>
</div>
</div>
<div id="preview-hint">click to select</div>
</div>
<!-- Inspector -->
<div id="inspector-panel">
<div id="inspector-tabs">
<div class="ins-tab active" data-tab="properties">Properties</div>
<div class="ins-tab" data-tab="ops">Ops</div>
</div>
<div id="element-list"><!-- populated by JS --></div>
<div id="inspector-content"><!-- populated by JS --></div>
</div>
<!-- Log -->
<div id="log-panel">
<div class="panel-title">Patch log</div>
<div id="log-entries"><!-- populated by JS --></div>
</div>
</div>
<!-- Timeline -->
<div id="timeline-panel">
<div id="tl-controls">
<button id="btn-play" class="ghost" style="padding: 4px 8px; font-size: 13px"></button>
<span id="tl-time">0.0s</span>
<input type="range" id="tl-scrubber" min="0" max="1000" value="0" step="1" />
<span id="tl-dur"></span>
</div>
<div id="tl-body">
<div id="tl-tracks"><!-- populated by JS --></div>
<div id="tl-playhead"></div>
</div>
</div>
<!-- Open dialog -->
<div id="open-overlay">
<div id="open-dialog">
<h2>Open composition</h2>
<p>
Paste any HyperFrames composition HTML — the outer <code>data-hf-root</code> element and
its contents.
</p>
<textarea
id="open-textarea"
spellcheck="false"
placeholder='<div data-hf-id="hf-stage" data-hf-root ...>'
></textarea>
<div class="dialog-actions">
<button id="btn-open-cancel">Cancel</button>
<button id="btn-open-confirm" class="primary">Open</button>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
+23
View File
@@ -0,0 +1,23 @@
{
"name": "@hyperframes/sdk-playground",
"version": "0.6.106",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@hyperframes/core": "workspace:*",
"@hyperframes/sdk": "workspace:*",
"gsap": "^3.15.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"typescript": "^5.0.0",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}
@@ -0,0 +1,49 @@
import { afterEach, describe, expect, it, vi } from "vitest";
import { createFileAdapter } from "./fileAdapter";
afterEach(() => {
vi.unstubAllGlobals();
});
describe("createFileAdapter", () => {
it("loads the initial composition through the public SDK adapter contract", async () => {
const fetchMock = vi
.fn()
.mockImplementation(() => Promise.resolve(new Response("<main>demo</main>")));
vi.stubGlobal("fetch", fetchMock);
const { adapter, initialHtml } = await createFileAdapter();
expect(initialHtml).toBe("<main>demo</main>");
expect(await adapter.read("ignored.html")).toBe("<main>demo</main>");
expect(fetchMock).toHaveBeenCalledWith("/api/composition");
});
it("reports failed writes through persist:error without rejecting", async () => {
const fetchMock = vi
.fn()
.mockResolvedValueOnce(new Response("", { status: 404 }))
.mockResolvedValueOnce(new Response("failed", { status: 500 }));
vi.stubGlobal("fetch", fetchMock);
const { adapter } = await createFileAdapter();
const errors: string[] = [];
adapter.on("persist:error", (event) => errors.push(event.error.message));
await expect(adapter.write("ignored.html", "<main>updated</main>")).resolves.toBeUndefined();
expect(errors).toEqual(["Error: write failed: 500"]);
});
it("maps persisted versions to the SDK version shape", async () => {
const fetchMock = vi
.fn()
.mockResolvedValueOnce(new Response("", { status: 404 }))
.mockResolvedValueOnce(Response.json([{ key: "version-2", timestamp: 42 }], { status: 200 }));
vi.stubGlobal("fetch", fetchMock);
const { adapter } = await createFileAdapter();
await expect(adapter.listVersions("ignored.html")).resolves.toEqual([
{ key: "version-2", content: "", timestamp: 42 },
]);
});
});
@@ -0,0 +1,58 @@
import type { PersistAdapter, PersistErrorEvent, PersistVersionEntry } from "@hyperframes/sdk";
const API = "/api/composition";
class FileAdapter implements PersistAdapter {
private errorHandlers = new Set<(e: PersistErrorEvent) => void>();
async read(_path: string): Promise<string | undefined> {
const res = await fetch(API);
if (res.status === 404) return undefined;
if (!res.ok) throw new Error(`read failed: ${res.status}`);
return res.text();
}
async write(_path: string, content: string): Promise<void> {
try {
const res = await fetch(API, {
method: "PUT",
headers: { "Content-Type": "text/html; charset=utf-8" },
body: content,
});
if (!res.ok) throw new Error(`write failed: ${res.status}`);
} catch (err) {
for (const h of this.errorHandlers) h({ error: { message: String(err), cause: err } });
}
}
async flush(): Promise<void> {}
async listVersions(_path: string): Promise<PersistVersionEntry[]> {
const res = await fetch("/api/composition/versions");
if (!res.ok) return [];
const rows = (await res.json()) as Array<{ key: string; timestamp?: number }>;
return rows.map((r) => ({ key: r.key, content: "", timestamp: r.timestamp }));
}
async loadFrom(_path: string, versionKey: string): Promise<string | undefined> {
const res = await fetch(`/api/composition?version=${encodeURIComponent(versionKey)}`);
if (res.status === 404) return undefined;
if (!res.ok) throw new Error(`loadFrom failed: ${res.status}`);
return res.text();
}
on(event: "persist:error", handler: (e: PersistErrorEvent) => void): () => void {
if (event !== "persist:error") return () => {};
this.errorHandlers.add(handler);
return () => this.errorHandlers.delete(handler);
}
}
export async function createFileAdapter(): Promise<{
adapter: PersistAdapter;
initialHtml: string | undefined;
}> {
const adapter = new FileAdapter();
const initialHtml = await adapter.read("composition.html");
return { adapter, initialHtml };
}
File diff suppressed because it is too large Load Diff
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["node", "vite/client"],
"strict": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true,
"isolatedModules": true
},
"include": ["src", "vite.config.ts"]
}
+85
View File
@@ -0,0 +1,85 @@
import { defineConfig } from "vite";
import path from "node:path";
import type { Plugin } from "vite";
import type { Connect } from "vite";
import type { ServerResponse } from "node:http";
import { createFsAdapter } from "@hyperframes/sdk/adapters/fs";
import type { PersistAdapter } from "@hyperframes/sdk";
const COMP_ROOT = path.resolve(import.meta.dirname);
const COMP_PATH = "composition.html";
function sendHtml(res: ServerResponse, html: string | undefined) {
if (html === undefined) {
res.statusCode = 404;
res.end("");
return;
}
res.setHeader("Content-Type", "text/html; charset=utf-8");
res.end(html);
}
function readBody(req: Connect.IncomingMessage): Promise<string> {
return new Promise((resolve) => {
const chunks: Buffer[] = [];
req.on("data", (c: Buffer) => chunks.push(c));
req.on("end", () => resolve(Buffer.concat(chunks).toString("utf8")));
});
}
function versionKeyOf(req: Connect.IncomingMessage): string | null {
return new URL(req.url ?? "/", "http://localhost").searchParams.get("version");
}
async function handleCompositionGet(
adapter: PersistAdapter,
req: Connect.IncomingMessage,
res: ServerResponse,
) {
const versionKey = versionKeyOf(req);
const html = versionKey
? await adapter.loadFrom(COMP_PATH, versionKey)
: await adapter.read(COMP_PATH);
sendHtml(res, html);
}
async function handleCompositionPut(
adapter: PersistAdapter,
req: Connect.IncomingMessage,
res: ServerResponse,
) {
await adapter.write(COMP_PATH, await readBody(req));
res.statusCode = 204;
res.end();
}
function methodNotAllowed(res: ServerResponse) {
res.statusCode = 405;
res.end();
}
function compositionPlugin(): Plugin {
const adapter = createFsAdapter({ root: COMP_ROOT });
return {
name: "hf-composition",
configureServer(server) {
server.middlewares.use("/api/composition/versions", async (req, res) => {
if (req.method !== "GET") return methodNotAllowed(res);
const versions = await adapter.listVersions(COMP_PATH);
res.setHeader("Content-Type", "application/json");
res.end(JSON.stringify(versions.map((v) => ({ key: v.key, timestamp: v.timestamp }))));
});
server.middlewares.use("/api/composition", async (req, res) => {
if (req.method === "GET") return handleCompositionGet(adapter, req, res);
if (req.method === "PUT") return handleCompositionPut(adapter, req, res);
methodNotAllowed(res);
});
},
};
}
export default defineConfig({
plugins: [compositionPlugin()],
});