@hypit/hypit 0.0.1 → 0.1.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/LICENSE +26 -0
- package/README.md +142 -0
- package/bin/hypit.mjs +46 -0
- package/dist/public/artifact.d.ts +75 -0
- package/dist/public/author-kit.d.ts +559 -0
- package/dist/public/browser-capture.d.ts +56 -0
- package/dist/public/caption.d.ts +751 -0
- package/dist/public/composition.d.ts +672 -0
- package/dist/public/endpoint-kit.d.ts +366 -0
- package/dist/public/generation.d.ts +591 -0
- package/dist/public/hyperframes.d.ts +774 -0
- package/dist/public/media.d.ts +708 -0
- package/dist/public/model-kit.d.ts +523 -0
- package/dist/public/narrative.d.ts +315 -0
- package/dist/public/program-space.d.ts +193 -0
- package/dist/public/runtime-kit.d.ts +427 -0
- package/dist/public/semantic-track.d.ts +418 -0
- package/dist/public/spatial.d.ts +1193 -0
- package/dist/public/speech.d.ts +391 -0
- package/dist/public/studio-adapter.d.ts +686 -0
- package/dist/public/svs.d.ts +311 -0
- package/dist/public/temporal-markup.d.ts +343 -0
- package/dist/public/temporal.d.ts +497 -0
- package/dist/public/text.d.ts +817 -0
- package/dist/public/visual-ir.d.ts +98 -0
- package/docs/public/hypit-logo-dark.svg +36 -0
- package/docs/public/hypit-logo-light.svg +38 -0
- package/examples/README.md +24 -0
- package/examples/minimal-author-package/README.md +18 -0
- package/examples/minimal-author-package/packages/example-component/README.md +44 -0
- package/examples/minimal-author-package/packages/example-component/package.json +27 -0
- package/examples/minimal-author-package/packages/example-component/preview/Box.png +0 -0
- package/examples/minimal-author-package/packages/example-component/preview/build.svrun +6 -0
- package/examples/minimal-author-package/packages/example-component/preview/preview.svml +47 -0
- package/examples/minimal-author-package/packages/example-component/preview/recipes.svs +8 -0
- package/examples/minimal-author-package/packages/example-component/src/activation.ts +10 -0
- package/examples/minimal-author-package/packages/example-component/src/component.ts +44 -0
- package/examples/minimal-author-package/packages/example-component/src/fragment.ts +32 -0
- package/examples/minimal-author-package/packages/example-component/src/index.ts +6 -0
- package/examples/minimal-author-package/packages/example-component/src/manifest.ts +82 -0
- package/examples/minimal-author-package/packages/example-component/src/style.ts +13 -0
- package/examples/minimal-author-package/packages/example-component/src/surface.ts +41 -0
- package/examples/minimal-author-package/packages/example-component/src/temporal.ts +6 -0
- package/examples/minimal-author-package/packages/example-component/tsconfig.json +18 -0
- package/examples/semantic-composition/README.md +35 -0
- package/examples/semantic-composition/chat.svml +25 -0
- package/examples/semantic-composition/chat.svrun +6 -0
- package/examples/semantic-composition/chat.svs +4 -0
- package/examples/semantic-composition/hypit.runtime.json +8 -0
- package/examples/semantic-composition/packages/chat-scene/README.md +29 -0
- package/examples/semantic-composition/packages/chat-scene/package.json +11 -0
- package/examples/semantic-composition/packages/chat-scene/src/activation.ts +112 -0
- package/examples/semantic-composition/packages/chat-scene/src/render.ts +64 -0
- package/examples/semantic-composition/packages/chat-scene/tsconfig.json +18 -0
- package/examples/semantic-composition/packages/responsive-explainer/README.md +45 -0
- package/examples/semantic-composition/packages/responsive-explainer/package.json +11 -0
- package/examples/semantic-composition/packages/responsive-explainer/src/activation.ts +90 -0
- package/examples/semantic-composition/packages/responsive-explainer/src/render.ts +68 -0
- package/examples/semantic-composition/packages/responsive-explainer/tsconfig.json +18 -0
- package/package.json +263 -5
- package/packages/artifact/README.md +10 -0
- package/packages/artifact/package.json +16 -0
- package/packages/artifact/src/activation.ts +8 -0
- package/packages/artifact/src/index.ts +24 -0
- package/packages/audio-track/README.md +43 -0
- package/packages/audio-track/package.json +36 -0
- package/packages/audio-track/src/activation.ts +20 -0
- package/packages/audio-track/src/component.ts +40 -0
- package/packages/audio-track/src/fragment.ts +63 -0
- package/packages/audio-track/src/index.ts +7 -0
- package/packages/audio-track/src/manifest.ts +151 -0
- package/packages/audio-track/src/program.ts +254 -0
- package/packages/audio-track/src/surface.ts +187 -0
- package/packages/audio-track/src/types.ts +62 -0
- package/packages/audio-track-studio/README.md +3 -0
- package/packages/audio-track-studio/package.json +14 -0
- package/packages/audio-track-studio/src/activation.ts +7 -0
- package/packages/audio-track-studio/src/index.ts +72 -0
- package/packages/author-kit/README.md +31 -0
- package/packages/author-kit/package.json +16 -0
- package/packages/author-kit/src/index.ts +59 -0
- package/packages/background-removal/README.md +29 -0
- package/packages/background-removal/package.json +16 -0
- package/packages/background-removal/src/activation.ts +18 -0
- package/packages/background-removal/src/component.ts +32 -0
- package/packages/background-removal/src/fragment.ts +18 -0
- package/packages/background-removal/src/index.ts +6 -0
- package/packages/background-removal/src/manifest.ts +45 -0
- package/packages/background-removal/src/program.ts +19 -0
- package/packages/background-removal/src/surface.ts +27 -0
- package/packages/background-removal/src/types.ts +5 -0
- package/packages/browser-capture/README.md +82 -0
- package/packages/browser-capture/package.json +15 -0
- package/packages/browser-capture/src/browser.ts +19 -0
- package/packages/browser-capture/src/index.ts +198 -0
- package/packages/build-result/package.json +13 -0
- package/packages/build-result/src/decode.ts +286 -0
- package/packages/build-result/src/index.ts +25 -0
- package/packages/build-result/src/store.ts +505 -0
- package/packages/build-result/src/types.ts +354 -0
- package/packages/build-result/src/writer.ts +184 -0
- package/packages/build-result-fs/README.md +29 -0
- package/packages/build-result-fs/package.json +17 -0
- package/packages/build-result-fs/src/activation.ts +62 -0
- package/packages/build-result-fs/src/index.ts +1 -0
- package/packages/build-result-kit/README.md +10 -0
- package/packages/build-result-kit/package.json +15 -0
- package/packages/build-result-kit/src/index.ts +144 -0
- package/packages/build-result-s3/README.md +49 -0
- package/packages/build-result-s3/package.json +19 -0
- package/packages/build-result-s3/src/activation.ts +71 -0
- package/packages/build-result-s3/src/client.ts +254 -0
- package/packages/build-result-s3/src/index.ts +4 -0
- package/packages/build-result-s3/src/repository.ts +361 -0
- package/packages/caption/README.md +77 -0
- package/packages/caption/package.json +28 -0
- package/packages/caption/src/activation.ts +17 -0
- package/packages/caption/src/component.ts +38 -0
- package/packages/caption/src/display.ts +111 -0
- package/packages/caption/src/error.ts +9 -0
- package/packages/caption/src/fragment.ts +26 -0
- package/packages/caption/src/index.ts +33 -0
- package/packages/caption/src/manifest.ts +97 -0
- package/packages/caption/src/style.ts +170 -0
- package/packages/caption/src/surface.ts +96 -0
- package/packages/caption/src/temporalize.ts +124 -0
- package/packages/caption/src/types.ts +71 -0
- package/packages/caption-fine/README.md +108 -0
- package/packages/caption-fine/package.json +30 -0
- package/packages/caption-fine/preview/Track.png +0 -0
- package/packages/caption-fine/src/activation.ts +32 -0
- package/packages/caption-fine/src/component.ts +58 -0
- package/packages/caption-fine/src/fragment.ts +112 -0
- package/packages/caption-fine/src/index.ts +19 -0
- package/packages/caption-fine/src/manifest.ts +383 -0
- package/packages/caption-fine/src/recipe.ts +120 -0
- package/packages/caption-fine/src/render.ts +1133 -0
- package/packages/caption-fine/src/schedule.ts +126 -0
- package/packages/caption-fine/src/spacing.ts +69 -0
- package/packages/caption-fine/src/style.ts +370 -0
- package/packages/caption-fine/src/surface.ts +152 -0
- package/packages/caption-fine/src/types.ts +191 -0
- package/packages/caption-fine-studio/README.md +3 -0
- package/packages/caption-fine-studio/package.json +15 -0
- package/packages/caption-fine-studio/src/activation.ts +7 -0
- package/packages/caption-fine-studio/src/index.ts +163 -0
- package/packages/cli/README.md +51 -0
- package/packages/cli/package.json +33 -0
- package/packages/cli/src/arguments.ts +605 -0
- package/packages/cli/src/build-planning.ts +460 -0
- package/packages/cli/src/command.ts +202 -0
- package/packages/cli/src/commands/environment.ts +391 -0
- package/packages/cli/src/commands/execution.ts +321 -0
- package/packages/cli/src/commands/results.ts +187 -0
- package/packages/cli/src/commands/types.ts +9 -0
- package/packages/cli/src/distribution.ts +74 -0
- package/packages/cli/src/index.ts +30 -0
- package/packages/cli/src/machine-view.ts +28 -0
- package/packages/cli/src/main.ts +654 -0
- package/packages/cli/src/oauth.ts +228 -0
- package/packages/cli/src/observation.ts +203 -0
- package/packages/cli/src/output.ts +1007 -0
- package/packages/cli/src/paths.ts +7 -0
- package/packages/cli/src/project-context.ts +38 -0
- package/packages/cli/src/reachability.ts +91 -0
- package/packages/cli/src/result-export.ts +148 -0
- package/packages/cli/src/result-query.ts +46 -0
- package/packages/cli/src/run-file.ts +186 -0
- package/packages/cli/src/runtime-port.ts +13 -0
- package/packages/cli/src/runtime-selection.ts +94 -0
- package/packages/cli/src/runtime-view.ts +15 -0
- package/packages/cli/src/source-discovery.ts +150 -0
- package/packages/cli/src/source-packages.ts +91 -0
- package/packages/cli/src/view.ts +228 -0
- package/packages/comment-sticker/README.md +41 -0
- package/packages/comment-sticker/package.json +29 -0
- package/packages/comment-sticker/preview/Track.png +0 -0
- package/packages/comment-sticker/src/activation.ts +32 -0
- package/packages/comment-sticker/src/author.ts +148 -0
- package/packages/comment-sticker/src/component.ts +97 -0
- package/packages/comment-sticker/src/fragment.ts +124 -0
- package/packages/comment-sticker/src/index.ts +8 -0
- package/packages/comment-sticker/src/manifest.ts +373 -0
- package/packages/comment-sticker/src/program.ts +610 -0
- package/packages/comment-sticker/src/surface.ts +172 -0
- package/packages/comment-sticker/src/types.ts +109 -0
- package/packages/comment-sticker-studio/README.md +3 -0
- package/packages/comment-sticker-studio/package.json +14 -0
- package/packages/comment-sticker-studio/src/activation.ts +7 -0
- package/packages/comment-sticker-studio/src/index.ts +132 -0
- package/packages/compiler-markup-node/README.md +12 -0
- package/packages/compiler-markup-node/package.json +22 -0
- package/packages/compiler-markup-node/src/index.ts +59 -0
- package/packages/compiler-node/README.md +60 -0
- package/packages/compiler-node/package.json +25 -0
- package/packages/compiler-node/src/compiler.ts +207 -0
- package/packages/compiler-node/src/error.ts +11 -0
- package/packages/compiler-node/src/graph-query.ts +51 -0
- package/packages/compiler-node/src/index.ts +27 -0
- package/packages/compiler-node/src/modules.ts +107 -0
- package/packages/compiler-node/src/run.ts +355 -0
- package/packages/component-kit/README.md +97 -0
- package/packages/component-kit/package.json +13 -0
- package/packages/component-kit/src/index.ts +155 -0
- package/packages/composition/README.md +53 -0
- package/packages/composition/package.json +29 -0
- package/packages/composition/src/activation.ts +3 -0
- package/packages/composition/src/component.ts +10 -0
- package/packages/composition/src/index.ts +18 -0
- package/packages/composition/src/manifest.ts +13 -0
- package/packages/composition/src/schema.ts +194 -0
- package/packages/composition/src/track.ts +1403 -0
- package/packages/core/README.md +22 -0
- package/packages/core/package.json +13 -0
- package/packages/core/src/error.ts +12 -0
- package/packages/core/src/graph.ts +341 -0
- package/packages/core/src/index.ts +32 -0
- package/packages/core/src/link.ts +240 -0
- package/packages/core/src/machine.ts +60 -0
- package/packages/core/src/plan.ts +504 -0
- package/packages/core/src/reducer.ts +428 -0
- package/packages/core/src/reference.ts +25 -0
- package/packages/core/src/slice.ts +108 -0
- package/packages/credential-store-env/README.md +11 -0
- package/packages/credential-store-env/package.json +17 -0
- package/packages/credential-store-env/src/activation.ts +25 -0
- package/packages/credential-store-env/src/index.ts +23 -0
- package/packages/credential-store-os/README.md +13 -0
- package/packages/credential-store-os/package.json +22 -0
- package/packages/credential-store-os/runtime/windows-credential.ps1 +59 -0
- package/packages/credential-store-os/src/activation.ts +32 -0
- package/packages/credential-store-os/src/index.ts +2 -0
- package/packages/credential-store-os/src/store.ts +196 -0
- package/packages/deck-track/README.md +52 -0
- package/packages/deck-track/package.json +35 -0
- package/packages/deck-track/preview/DepthStack.png +0 -0
- package/packages/deck-track/src/activation.ts +32 -0
- package/packages/deck-track/src/author.ts +217 -0
- package/packages/deck-track/src/component.ts +86 -0
- package/packages/deck-track/src/fragment.ts +148 -0
- package/packages/deck-track/src/index.ts +16 -0
- package/packages/deck-track/src/lower.ts +370 -0
- package/packages/deck-track/src/manifest.ts +438 -0
- package/packages/deck-track/src/program.ts +367 -0
- package/packages/deck-track/src/surface.ts +286 -0
- package/packages/deck-track/src/types.ts +119 -0
- package/packages/deck-track-studio/README.md +3 -0
- package/packages/deck-track-studio/package.json +14 -0
- package/packages/deck-track-studio/src/activation.ts +7 -0
- package/packages/deck-track-studio/src/index.ts +134 -0
- package/packages/driver-node/README.md +23 -0
- package/packages/driver-node/package.json +18 -0
- package/packages/driver-node/src/driver.ts +616 -0
- package/packages/driver-node/src/index.ts +10 -0
- package/packages/driver-node/src/planning.ts +67 -0
- package/packages/driver-node/src/registry.ts +234 -0
- package/packages/driver-node/src/resources.ts +36 -0
- package/packages/driver-node/src/types.ts +69 -0
- package/packages/elaborator/README.md +74 -0
- package/packages/elaborator/package.json +16 -0
- package/packages/elaborator/src/author.ts +308 -0
- package/packages/elaborator/src/fragment.ts +505 -0
- package/packages/elaborator/src/frontend-facet.ts +30 -0
- package/packages/elaborator/src/index.ts +78 -0
- package/packages/elaborator/src/source.ts +608 -0
- package/packages/endpoint-kit/README.md +111 -0
- package/packages/endpoint-kit/package.json +14 -0
- package/packages/endpoint-kit/src/index.ts +488 -0
- package/packages/estimate/README.md +32 -0
- package/packages/estimate/package.json +20 -0
- package/packages/estimate/src/activation.ts +11 -0
- package/packages/estimate/src/index.ts +16 -0
- package/packages/estimate/src/manifest.ts +34 -0
- package/packages/estimate/src/policy.ts +70 -0
- package/packages/estimate/src/program.ts +196 -0
- package/packages/estimate/src/types.ts +15 -0
- package/packages/film/README.md +49 -0
- package/packages/film/package.json +34 -0
- package/packages/film/src/activation.ts +16 -0
- package/packages/film/src/component.ts +61 -0
- package/packages/film/src/fragment.ts +83 -0
- package/packages/film/src/index.ts +11 -0
- package/packages/film/src/manifest.ts +152 -0
- package/packages/film/src/program.ts +110 -0
- package/packages/film/src/recipe.ts +24 -0
- package/packages/film/src/surface.ts +146 -0
- package/packages/film/src/types.ts +26 -0
- package/packages/film-studio/package.json +16 -0
- package/packages/film-studio/src/activation.ts +8 -0
- package/packages/film-studio/src/index.ts +17 -0
- package/packages/fonts-open/README.md +77 -0
- package/packages/fonts-open/package.json +130 -0
- package/packages/fonts-open/src/activation.ts +30 -0
- package/packages/fonts-open/src/catalog.ts +317 -0
- package/packages/fonts-open/src/index.ts +13 -0
- package/packages/fonts-open/src/manifest.ts +83 -0
- package/packages/fonts-open/src/surface.ts +239 -0
- package/packages/generation/README.md +19 -0
- package/packages/generation/package.json +23 -0
- package/packages/generation/src/activation.ts +9 -0
- package/packages/generation/src/component.ts +77 -0
- package/packages/generation/src/identity.ts +80 -0
- package/packages/generation/src/index.ts +79 -0
- package/packages/generation/src/manifest.ts +65 -0
- package/packages/generation/src/mapping.ts +231 -0
- package/packages/generation/src/ports.ts +222 -0
- package/packages/generation/src/request.ts +427 -0
- package/packages/generation/src/schema.ts +62 -0
- package/packages/generation/src/types.ts +17 -0
- package/packages/gpt-image/README.md +54 -0
- package/packages/gpt-image/package.json +34 -0
- package/packages/gpt-image/src/activation.ts +39 -0
- package/packages/gpt-image/src/fragment.ts +101 -0
- package/packages/gpt-image/src/index.ts +203 -0
- package/packages/gpt-image/src/surface.ts +194 -0
- package/packages/gpt-image-kits/README.md +44 -0
- package/packages/gpt-image-kits/kits/phone-ugc-v1.svs +34 -0
- package/packages/gpt-image-kits/package.json +15 -0
- package/packages/grok-imagine/README.md +21 -0
- package/packages/grok-imagine/package.json +21 -0
- package/packages/grok-imagine/src/activation.ts +29 -0
- package/packages/grok-imagine/src/index.ts +174 -0
- package/packages/grok-imagine/src/surface.ts +149 -0
- package/packages/host/README.md +5 -0
- package/packages/host/package.json +10 -0
- package/packages/host/src/facet.ts +6 -0
- package/packages/host/src/frontend.ts +56 -0
- package/packages/host/src/index.ts +9 -0
- package/packages/hyperframes/README.md +69 -0
- package/packages/hyperframes/package.json +36 -0
- package/packages/hyperframes/src/activation.ts +8 -0
- package/packages/hyperframes/src/browser-program.ts +79 -0
- package/packages/hyperframes/src/component.ts +32 -0
- package/packages/hyperframes/src/document.ts +827 -0
- package/packages/hyperframes/src/fragment.ts +32 -0
- package/packages/hyperframes/src/index.ts +13 -0
- package/packages/hyperframes/src/manifest.ts +67 -0
- package/packages/hyperframes/src/project.ts +118 -0
- package/packages/hyperframes/src/text.ts +1179 -0
- package/packages/hyperframes/src/types.ts +38 -0
- package/packages/image-compose/README.md +25 -0
- package/packages/image-compose/package.json +18 -0
- package/packages/image-compose/src/activation.ts +21 -0
- package/packages/image-compose/src/component.ts +100 -0
- package/packages/image-compose/src/fragment.ts +54 -0
- package/packages/image-compose/src/index.ts +10 -0
- package/packages/image-compose/src/manifest.ts +119 -0
- package/packages/image-compose/src/program.ts +75 -0
- package/packages/image-compose/src/surface.ts +83 -0
- package/packages/image-compose/src/types.ts +22 -0
- package/packages/image-transform/README.md +29 -0
- package/packages/image-transform/package.json +21 -0
- package/packages/image-transform/src/activation.ts +33 -0
- package/packages/image-transform/src/component.ts +67 -0
- package/packages/image-transform/src/fragment.ts +25 -0
- package/packages/image-transform/src/index.ts +13 -0
- package/packages/image-transform/src/manifest.ts +209 -0
- package/packages/image-transform/src/program.ts +23 -0
- package/packages/image-transform/src/surface.ts +216 -0
- package/packages/image-transform/src/types.ts +20 -0
- package/packages/interview-emoji-reveal/README.md +39 -0
- package/packages/interview-emoji-reveal/package.json +23 -0
- package/packages/interview-emoji-reveal/preview/Track.png +0 -0
- package/packages/interview-emoji-reveal/src/activation.ts +14 -0
- package/packages/interview-emoji-reveal/src/component.ts +45 -0
- package/packages/interview-emoji-reveal/src/fragment.ts +62 -0
- package/packages/interview-emoji-reveal/src/index.ts +16 -0
- package/packages/interview-emoji-reveal/src/manifest.ts +174 -0
- package/packages/interview-emoji-reveal/src/program.ts +242 -0
- package/packages/interview-emoji-reveal/src/style.ts +47 -0
- package/packages/interview-emoji-reveal/src/surface.ts +110 -0
- package/packages/interview-emoji-reveal/src/types.ts +52 -0
- package/packages/markup/README.md +81 -0
- package/packages/markup/package.json +16 -0
- package/packages/markup/src/element.ts +39 -0
- package/packages/markup/src/error.ts +20 -0
- package/packages/markup/src/frontend.ts +518 -0
- package/packages/markup/src/host-facet.ts +115 -0
- package/packages/markup/src/index.ts +25 -0
- package/packages/markup/src/registry.ts +83 -0
- package/packages/markup/src/syntax.ts +271 -0
- package/packages/markup/src/types.ts +246 -0
- package/packages/media/README.md +37 -0
- package/packages/media/package.json +19 -0
- package/packages/media/src/activation.ts +38 -0
- package/packages/media/src/component.ts +16 -0
- package/packages/media/src/frame-range.ts +33 -0
- package/packages/media/src/identity.ts +227 -0
- package/packages/media/src/index.ts +15 -0
- package/packages/media/src/manifest.ts +122 -0
- package/packages/media/src/render.ts +140 -0
- package/packages/media/src/schema.ts +69 -0
- package/packages/media/src/surface.ts +150 -0
- package/packages/media/src/types.ts +121 -0
- package/packages/media-execution/README.md +28 -0
- package/packages/media-execution/package.json +17 -0
- package/packages/media-execution/src/execute.ts +1322 -0
- package/packages/media-execution/src/index.ts +16 -0
- package/packages/media-execution/src/probe.ts +315 -0
- package/packages/media-execution/src/surface.ts +286 -0
- package/packages/media-execution/src/toolchain.ts +81 -0
- package/packages/media-execution/src/webp.ts +200 -0
- package/packages/media-pipeline/README.md +113 -0
- package/packages/media-pipeline/package.json +27 -0
- package/packages/media-pipeline/src/activation.ts +47 -0
- package/packages/media-pipeline/src/audio-plan.ts +113 -0
- package/packages/media-pipeline/src/component.ts +373 -0
- package/packages/media-pipeline/src/fragment.ts +167 -0
- package/packages/media-pipeline/src/index.ts +46 -0
- package/packages/media-pipeline/src/manifest.ts +653 -0
- package/packages/media-pipeline/src/operations.ts +248 -0
- package/packages/media-pipeline/src/selection.ts +110 -0
- package/packages/media-pipeline/src/surface.ts +389 -0
- package/packages/media-pipeline/src/types.ts +175 -0
- package/packages/media-track/README.md +197 -0
- package/packages/media-track/package.json +29 -0
- package/packages/media-track/preview/Track.png +0 -0
- package/packages/media-track/preview/build.svrun +5 -0
- package/packages/media-track/preview/flush.png +0 -0
- package/packages/media-track/preview/preview.svml +47 -0
- package/packages/media-track/preview/recipes.svs +23 -0
- package/packages/media-track/preview/rounded.png +0 -0
- package/packages/media-track/src/activation.ts +20 -0
- package/packages/media-track/src/author.ts +317 -0
- package/packages/media-track/src/component.ts +162 -0
- package/packages/media-track/src/fragment.ts +57 -0
- package/packages/media-track/src/index.ts +65 -0
- package/packages/media-track/src/layers.ts +308 -0
- package/packages/media-track/src/lower.ts +335 -0
- package/packages/media-track/src/manifest.ts +624 -0
- package/packages/media-track/src/motion.ts +387 -0
- package/packages/media-track/src/performance.ts +37 -0
- package/packages/media-track/src/presentation.ts +35 -0
- package/packages/media-track/src/program.ts +565 -0
- package/packages/media-track/src/sampling.ts +118 -0
- package/packages/media-track/src/sequence.ts +403 -0
- package/packages/media-track/src/sounds.ts +71 -0
- package/packages/media-track/src/surface.ts +668 -0
- package/packages/media-track/src/types.ts +311 -0
- package/packages/media-track-studio/README.md +3 -0
- package/packages/media-track-studio/package.json +15 -0
- package/packages/media-track-studio/src/activation.ts +7 -0
- package/packages/media-track-studio/src/index.ts +235 -0
- package/packages/mimo-speech/README.md +33 -0
- package/packages/mimo-speech/package.json +21 -0
- package/packages/mimo-speech/src/activation.ts +32 -0
- package/packages/mimo-speech/src/fragment.ts +11 -0
- package/packages/mimo-speech/src/index.ts +160 -0
- package/packages/mimo-speech/src/surface.ts +193 -0
- package/packages/minimax-h3/README.md +21 -0
- package/packages/minimax-h3/package.json +21 -0
- package/packages/minimax-h3/src/activation.ts +14 -0
- package/packages/minimax-h3/src/index.ts +188 -0
- package/packages/minimax-h3/src/surface.ts +87 -0
- package/packages/model-kit/README.md +52 -0
- package/packages/model-kit/package.json +19 -0
- package/packages/model-kit/src/index.ts +728 -0
- package/packages/nano-banana/README.md +23 -0
- package/packages/nano-banana/package.json +21 -0
- package/packages/nano-banana/src/activation.ts +14 -0
- package/packages/nano-banana/src/index.ts +172 -0
- package/packages/nano-banana/src/surface.ts +120 -0
- package/packages/narrative/README.md +7 -0
- package/packages/narrative/package.json +17 -0
- package/packages/narrative/src/activation.ts +7 -0
- package/packages/narrative/src/component.ts +33 -0
- package/packages/narrative/src/identity.ts +131 -0
- package/packages/narrative/src/index.ts +11 -0
- package/packages/narrative/src/manifest.ts +30 -0
- package/packages/narrative/src/schema.ts +89 -0
- package/packages/narrative/src/types.ts +141 -0
- package/packages/package-loader-node/README.md +23 -0
- package/packages/package-loader-node/package.json +15 -0
- package/packages/package-loader-node/src/contribution.ts +97 -0
- package/packages/package-loader-node/src/distribution-resolution.ts +146 -0
- package/packages/package-loader-node/src/index.ts +27 -0
- package/packages/package-loader-node/src/loader.ts +301 -0
- package/packages/package-loader-node/src/location.ts +279 -0
- package/packages/package-loader-node/src/types.ts +60 -0
- package/packages/program-space/README.md +20 -0
- package/packages/program-space/package.json +17 -0
- package/packages/program-space/src/activation.ts +19 -0
- package/packages/program-space/src/index.ts +107 -0
- package/packages/program-space/src/surface.ts +55 -0
- package/packages/protocol/README.md +11 -0
- package/packages/protocol/package.json +10 -0
- package/packages/protocol/src/build-id.ts +52 -0
- package/packages/protocol/src/build.ts +265 -0
- package/packages/protocol/src/canonical.ts +37 -0
- package/packages/protocol/src/error.ts +11 -0
- package/packages/protocol/src/identity.ts +59 -0
- package/packages/protocol/src/index.ts +9 -0
- package/packages/protocol/src/module.ts +67 -0
- package/packages/protocol/src/value.ts +88 -0
- package/packages/provider-hyperframes-aws-lambda/README.md +30 -0
- package/packages/provider-hyperframes-aws-lambda/package.json +30 -0
- package/packages/provider-hyperframes-aws-lambda/src/activation.ts +97 -0
- package/packages/provider-hyperframes-aws-lambda/src/client.ts +114 -0
- package/packages/provider-hyperframes-aws-lambda/src/index.ts +21 -0
- package/packages/provider-hyperframes-aws-lambda/src/provider.ts +522 -0
- package/packages/provider-hyperframes-local/README.md +129 -0
- package/packages/provider-hyperframes-local/package.json +34 -0
- package/packages/provider-hyperframes-local/src/activation.ts +107 -0
- package/packages/provider-hyperframes-local/src/capture-process.ts +110 -0
- package/packages/provider-hyperframes-local/src/capture-worker.ts +17 -0
- package/packages/provider-hyperframes-local/src/capture.ts +184 -0
- package/packages/provider-hyperframes-local/src/index.ts +10 -0
- package/packages/provider-hyperframes-local/src/options.ts +19 -0
- package/packages/provider-hyperframes-local/src/output.ts +73 -0
- package/packages/provider-hyperframes-local/src/process.ts +83 -0
- package/packages/provider-hyperframes-local/src/program.ts +58 -0
- package/packages/provider-hyperframes-local/src/provider.ts +62 -0
- package/packages/provider-hyperframes-local/src/render.ts +114 -0
- package/packages/provider-hyperframes-local/src/sampling.ts +89 -0
- package/packages/provider-hypihub/README.md +143 -0
- package/packages/provider-hypihub/package.json +26 -0
- package/packages/provider-hypihub/src/activation.ts +91 -0
- package/packages/provider-hypihub/src/index.ts +2 -0
- package/packages/provider-hypihub/src/mapping.ts +145 -0
- package/packages/provider-hypihub/src/oauth.ts +113 -0
- package/packages/provider-hypihub/src/provider.ts +566 -0
- package/packages/provider-hypihub/src/routes.ts +134 -0
- package/packages/provider-hypihub/src/upload.ts +402 -0
- package/packages/provider-image-opencv-local/README.md +16 -0
- package/packages/provider-image-opencv-local/package.json +27 -0
- package/packages/provider-image-opencv-local/runtime/raster_execute.py +299 -0
- package/packages/provider-image-opencv-local/src/activation.ts +61 -0
- package/packages/provider-image-opencv-local/src/deployment.ts +68 -0
- package/packages/provider-image-opencv-local/src/index.ts +2 -0
- package/packages/provider-image-opencv-local/src/program.ts +60 -0
- package/packages/provider-image-opencv-local/src/provider.ts +155 -0
- package/packages/provider-kie/README.md +134 -0
- package/packages/provider-kie/package.json +43 -0
- package/packages/provider-kie/src/activation.ts +71 -0
- package/packages/provider-kie/src/index.ts +10 -0
- package/packages/provider-kie/src/mapping.ts +182 -0
- package/packages/provider-kie/src/provider.ts +657 -0
- package/packages/provider-kie/src/routes.ts +150 -0
- package/packages/provider-media-local/README.md +58 -0
- package/packages/provider-media-local/package.json +28 -0
- package/packages/provider-media-local/src/activation.ts +65 -0
- package/packages/provider-media-local/src/index.ts +2 -0
- package/packages/provider-media-local/src/program.ts +19 -0
- package/packages/provider-media-local/src/provider.ts +150 -0
- package/packages/provider-whisperx-local/README.md +44 -0
- package/packages/provider-whisperx-local/package.json +27 -0
- package/packages/provider-whisperx-local/src/activation.ts +93 -0
- package/packages/provider-whisperx-local/src/index.ts +5 -0
- package/packages/provider-whisperx-local/src/program.ts +157 -0
- package/packages/provider-whisperx-local/src/provider.ts +191 -0
- package/packages/provider-xiaomi-mimo/README.md +32 -0
- package/packages/provider-xiaomi-mimo/package.json +24 -0
- package/packages/provider-xiaomi-mimo/src/activation.ts +57 -0
- package/packages/provider-xiaomi-mimo/src/index.ts +5 -0
- package/packages/provider-xiaomi-mimo/src/provider.ts +214 -0
- package/packages/ranking/README.md +67 -0
- package/packages/ranking/package.json +33 -0
- package/packages/ranking/preview/Column.svg +29 -0
- package/packages/ranking/preview/TierBoard.png +0 -0
- package/packages/ranking/preview/TierBoard.svg +36 -0
- package/packages/ranking/preview/TopThree.png +0 -0
- package/packages/ranking/src/activation.ts +38 -0
- package/packages/ranking/src/component.ts +271 -0
- package/packages/ranking/src/fragment.ts +206 -0
- package/packages/ranking/src/index.ts +26 -0
- package/packages/ranking/src/manifest.ts +807 -0
- package/packages/ranking/src/render.ts +698 -0
- package/packages/ranking/src/schedule.ts +895 -0
- package/packages/ranking/src/style.ts +272 -0
- package/packages/ranking/src/surface.ts +322 -0
- package/packages/ranking/src/tier.ts +176 -0
- package/packages/ranking/src/types.ts +277 -0
- package/packages/ranking-studio/README.md +3 -0
- package/packages/ranking-studio/package.json +14 -0
- package/packages/ranking-studio/src/activation.ts +7 -0
- package/packages/ranking-studio/src/index.ts +255 -0
- package/packages/raster/README.md +7 -0
- package/packages/raster/package.json +14 -0
- package/packages/raster/src/activation.ts +7 -0
- package/packages/raster/src/index.ts +7 -0
- package/packages/raster/src/manifest.ts +14 -0
- package/packages/raster/src/program.ts +128 -0
- package/packages/raster/src/schema.ts +53 -0
- package/packages/raster/src/types.ts +61 -0
- package/packages/render-hyperframes/README.md +58 -0
- package/packages/render-hyperframes/package.json +33 -0
- package/packages/render-hyperframes/src/activation.ts +18 -0
- package/packages/render-hyperframes/src/component.ts +37 -0
- package/packages/render-hyperframes/src/fragment.ts +73 -0
- package/packages/render-hyperframes/src/index.ts +6 -0
- package/packages/render-hyperframes/src/manifest.ts +100 -0
- package/packages/render-hyperframes/src/product.ts +29 -0
- package/packages/render-hyperframes/src/surface.ts +65 -0
- package/packages/resource-store-fs/README.md +13 -0
- package/packages/resource-store-fs/package.json +14 -0
- package/packages/resource-store-fs/src/index.ts +2 -0
- package/packages/resource-store-fs/src/store.ts +154 -0
- package/packages/resource-store-s3/README.md +15 -0
- package/packages/resource-store-s3/package.json +15 -0
- package/packages/resource-store-s3/src/client.ts +138 -0
- package/packages/resource-store-s3/src/index.ts +10 -0
- package/packages/resource-store-s3/src/store.ts +258 -0
- package/packages/run/README.md +23 -0
- package/packages/run/package.json +16 -0
- package/packages/run/src/candidate.ts +33 -0
- package/packages/run/src/facet.ts +59 -0
- package/packages/run/src/frontend-facet.ts +23 -0
- package/packages/run/src/frontend.ts +62 -0
- package/packages/run/src/graph.ts +65 -0
- package/packages/run/src/index.ts +33 -0
- package/packages/run/src/registry.ts +24 -0
- package/packages/run/src/resolve.ts +213 -0
- package/packages/run/src/types.ts +147 -0
- package/packages/run-markup/README.md +60 -0
- package/packages/run-markup/package.json +22 -0
- package/packages/run-markup/src/activation.ts +10 -0
- package/packages/run-markup/src/frontend.ts +16 -0
- package/packages/run-markup/src/index.ts +5 -0
- package/packages/run-markup/src/syntax.ts +304 -0
- package/packages/runtime/README.md +39 -0
- package/packages/runtime/package.json +15 -0
- package/packages/runtime/src/capacity.ts +51 -0
- package/packages/runtime/src/catalog.ts +30 -0
- package/packages/runtime/src/credentials.ts +124 -0
- package/packages/runtime/src/environment.ts +6 -0
- package/packages/runtime/src/execution.ts +125 -0
- package/packages/runtime/src/index.ts +24 -0
- package/packages/runtime/src/operations.ts +99 -0
- package/packages/runtime/src/scheduler.ts +281 -0
- package/packages/runtime/src/submission.ts +24 -0
- package/packages/runtime/src/types.ts +157 -0
- package/packages/runtime-host-node/README.md +25 -0
- package/packages/runtime-host-node/package.json +19 -0
- package/packages/runtime-host-node/src/index.ts +421 -0
- package/packages/runtime-host-node/src/packages.ts +158 -0
- package/packages/runtime-kit/README.md +42 -0
- package/packages/runtime-kit/package.json +16 -0
- package/packages/runtime-kit/src/index.ts +307 -0
- package/packages/runtime-kit/src/request-deadline.ts +17 -0
- package/packages/runtime-local/README.md +119 -0
- package/packages/runtime-local/package.json +33 -0
- package/packages/runtime-local/src/actions.ts +20 -0
- package/packages/runtime-local/src/config.ts +1229 -0
- package/packages/runtime-local/src/control.ts +120 -0
- package/packages/runtime-local/src/credentials.ts +61 -0
- package/packages/runtime-local/src/host.ts +174 -0
- package/packages/runtime-local/src/index.ts +36 -0
- package/packages/runtime-local/src/process-control.ts +59 -0
- package/packages/runtime-local/src/process-logs.ts +33 -0
- package/packages/runtime-local/src/programs.ts +441 -0
- package/packages/runtime-local/src/result-writer.ts +246 -0
- package/packages/runtime-local/src/runtime.ts +342 -0
- package/packages/runtime-local/src/types.ts +100 -0
- package/packages/runtime-local/src/worker-process.ts +343 -0
- package/packages/runtime-local/src/worker.ts +449 -0
- package/packages/screen-overlay/README.md +17 -0
- package/packages/screen-overlay/package.json +31 -0
- package/packages/screen-overlay/preview/Track.png +0 -0
- package/packages/screen-overlay/src/activation.ts +15 -0
- package/packages/screen-overlay/src/component.ts +20 -0
- package/packages/screen-overlay/src/fragment.ts +40 -0
- package/packages/screen-overlay/src/index.ts +7 -0
- package/packages/screen-overlay/src/manifest.ts +305 -0
- package/packages/screen-overlay/src/program.ts +321 -0
- package/packages/screen-overlay/src/surface.ts +90 -0
- package/packages/screen-overlay/src/types.ts +69 -0
- package/packages/screen-overlay-studio/README.md +3 -0
- package/packages/screen-overlay-studio/package.json +14 -0
- package/packages/screen-overlay-studio/src/activation.ts +7 -0
- package/packages/screen-overlay-studio/src/index.ts +80 -0
- package/packages/script/README.md +137 -0
- package/packages/script/package.json +22 -0
- package/packages/script/src/activation.ts +20 -0
- package/packages/script/src/edit.ts +174 -0
- package/packages/script/src/error.ts +13 -0
- package/packages/script/src/format.ts +83 -0
- package/packages/script/src/index.ts +20 -0
- package/packages/script/src/lexical.ts +133 -0
- package/packages/script/src/manifest.ts +95 -0
- package/packages/script/src/narrative.ts +232 -0
- package/packages/script/src/parser.ts +850 -0
- package/packages/script/src/surface.ts +132 -0
- package/packages/script/src/types.ts +125 -0
- package/packages/script-studio/package.json +13 -0
- package/packages/script-studio/src/activation.ts +8 -0
- package/packages/script-studio/src/index.ts +61 -0
- package/packages/seedance/README.md +19 -0
- package/packages/seedance/package.json +22 -0
- package/packages/seedance/src/activation.ts +38 -0
- package/packages/seedance/src/fragment.ts +46 -0
- package/packages/seedance/src/index.ts +329 -0
- package/packages/seedance/src/surface.ts +355 -0
- package/packages/seedance-kits/README.md +153 -0
- package/packages/seedance-kits/kits/broll-v1.svs +52 -0
- package/packages/seedance-kits/kits/call-v1.svs +55 -0
- package/packages/seedance-kits/kits/camera-reference-v1.svs +9 -0
- package/packages/seedance-kits/kits/motion-reference-v1.svs +9 -0
- package/packages/seedance-kits/kits/podcast-v1.svs +55 -0
- package/packages/seedance-kits/kits/speaker-v1.svs +136 -0
- package/packages/seedance-kits/kits/street-interview-v1.svs +49 -0
- package/packages/seedance-kits/package.json +24 -0
- package/packages/seedream/README.md +21 -0
- package/packages/seedream/package.json +21 -0
- package/packages/seedream/src/activation.ts +12 -0
- package/packages/seedream/src/index.ts +162 -0
- package/packages/seedream/src/surface.ts +84 -0
- package/packages/semantic-take-adjust/package.json +21 -0
- package/packages/semantic-take-adjust/src/activation.ts +22 -0
- package/packages/semantic-take-adjust/src/component.ts +31 -0
- package/packages/semantic-take-adjust/src/fragment.ts +24 -0
- package/packages/semantic-take-adjust/src/index.ts +12 -0
- package/packages/semantic-take-adjust/src/manifest.ts +57 -0
- package/packages/semantic-take-adjust/src/program.ts +49 -0
- package/packages/semantic-take-adjust/src/surface.ts +96 -0
- package/packages/semantic-take-adjust/src/types.ts +9 -0
- package/packages/semantic-track/README.md +21 -0
- package/packages/semantic-track/package.json +22 -0
- package/packages/semantic-track/src/activation.ts +8 -0
- package/packages/semantic-track/src/component.ts +24 -0
- package/packages/semantic-track/src/identity.ts +58 -0
- package/packages/semantic-track/src/index.ts +6 -0
- package/packages/semantic-track/src/location.ts +81 -0
- package/packages/semantic-track/src/manifest.ts +38 -0
- package/packages/semantic-track/src/projection.ts +71 -0
- package/packages/semantic-track/src/types.ts +26 -0
- package/packages/source/README.md +13 -0
- package/packages/source/package.json +13 -0
- package/packages/source/src/header.ts +80 -0
- package/packages/source/src/index.ts +17 -0
- package/packages/source/src/unit.ts +38 -0
- package/packages/spatial/README.md +77 -0
- package/packages/spatial/package.json +24 -0
- package/packages/spatial/src/activation.ts +43 -0
- package/packages/spatial/src/author.ts +59 -0
- package/packages/spatial/src/component.ts +45 -0
- package/packages/spatial/src/fragment.ts +36 -0
- package/packages/spatial/src/geometry.ts +238 -0
- package/packages/spatial/src/index.ts +37 -0
- package/packages/spatial/src/manifest.ts +341 -0
- package/packages/spatial/src/region-timeline.ts +69 -0
- package/packages/spatial/src/schema.ts +47 -0
- package/packages/spatial/src/surface.ts +319 -0
- package/packages/spatial/src/types.ts +101 -0
- package/packages/speech/README.md +16 -0
- package/packages/speech/package.json +19 -0
- package/packages/speech/src/activation.ts +7 -0
- package/packages/speech/src/component.ts +43 -0
- package/packages/speech/src/identity.ts +73 -0
- package/packages/speech/src/index.ts +6 -0
- package/packages/speech/src/manifest.ts +30 -0
- package/packages/speech/src/materialize.ts +103 -0
- package/packages/speech/src/schema.ts +42 -0
- package/packages/speech/src/types.ts +54 -0
- package/packages/speech-alignment/README.md +29 -0
- package/packages/speech-alignment/package.json +25 -0
- package/packages/speech-alignment/src/activation.ts +8 -0
- package/packages/speech-alignment/src/align.ts +235 -0
- package/packages/speech-alignment/src/component.ts +37 -0
- package/packages/speech-alignment/src/error.ts +9 -0
- package/packages/speech-alignment/src/index.ts +7 -0
- package/packages/speech-alignment/src/local.ts +64 -0
- package/packages/speech-alignment/src/locate.ts +473 -0
- package/packages/speech-alignment/src/manifest.ts +37 -0
- package/packages/speech-alignment/src/normalize.ts +79 -0
- package/packages/speech-alignment/src/types.ts +30 -0
- package/packages/speech-evidence/README.md +3 -0
- package/packages/speech-evidence/package.json +16 -0
- package/packages/speech-evidence/src/activation.ts +3 -0
- package/packages/speech-evidence/src/index.ts +102 -0
- package/packages/speech-track/README.md +51 -0
- package/packages/speech-track/package.json +28 -0
- package/packages/speech-track/preview/Track.png +0 -0
- package/packages/speech-track/src/activation.ts +19 -0
- package/packages/speech-track/src/component.ts +45 -0
- package/packages/speech-track/src/fragment.ts +74 -0
- package/packages/speech-track/src/index.ts +7 -0
- package/packages/speech-track/src/manifest.ts +73 -0
- package/packages/speech-track/src/program.ts +64 -0
- package/packages/speech-track/src/surface.ts +35 -0
- package/packages/speech-track/src/types.ts +6 -0
- package/packages/speech-track-studio/README.md +3 -0
- package/packages/speech-track-studio/package.json +14 -0
- package/packages/speech-track-studio/src/activation.ts +7 -0
- package/packages/speech-track-studio/src/index.ts +40 -0
- package/packages/store-sqlite/README.md +14 -0
- package/packages/store-sqlite/package.json +18 -0
- package/packages/store-sqlite/src/index.ts +2 -0
- package/packages/store-sqlite/src/store.ts +1101 -0
- package/packages/studio/README.md +125 -0
- package/packages/studio/index.html +10 -0
- package/packages/studio/package.json +50 -0
- package/packages/studio/src/build-library.ts +281 -0
- package/packages/studio/src/companion-assembly.ts +39 -0
- package/packages/studio/src/compile.ts +166 -0
- package/packages/studio/src/domain.ts +139 -0
- package/packages/studio/src/execute.ts +57 -0
- package/packages/studio/src/fallback-companions.ts +98 -0
- package/packages/studio/src/observe.ts +202 -0
- package/packages/studio/src/parameter-values.ts +81 -0
- package/packages/studio/src/parameters.ts +550 -0
- package/packages/studio/src/preview/render.ts +51 -0
- package/packages/studio/src/preview/runtime-shim.ts +184 -0
- package/packages/studio/src/programme.ts +276 -0
- package/packages/studio/src/run.ts +85 -0
- package/packages/studio/src/server.ts +725 -0
- package/packages/studio/src/session.ts +111 -0
- package/packages/studio/src/shared.ts +315 -0
- package/packages/studio/src/snapshot.ts +454 -0
- package/packages/studio/src/source-transaction.ts +57 -0
- package/packages/studio/src/storyboard.ts +133 -0
- package/packages/studio/src/studio-preflight.ts +198 -0
- package/packages/studio/src/studio-registry.ts +406 -0
- package/packages/studio/src/studio-trace.ts +136 -0
- package/packages/studio/src/style.css +1525 -0
- package/packages/studio/src/surface-preview.ts +35 -0
- package/packages/studio/src/temporal-graph.ts +227 -0
- package/packages/studio/src/ui/code.ts +450 -0
- package/packages/studio/src/ui/icons.ts +51 -0
- package/packages/studio/src/ui/library.ts +378 -0
- package/packages/studio/src/ui/main.ts +1001 -0
- package/packages/studio/src/ui/markers.ts +152 -0
- package/packages/studio/src/ui/material-preview.ts +176 -0
- package/packages/studio/src/ui/overlay.ts +144 -0
- package/packages/studio/src/ui/resize.ts +74 -0
- package/packages/studio/src/ui/selection.ts +178 -0
- package/packages/studio/src/ui/stage.ts +231 -0
- package/packages/studio/src/ui/syntax.ts +195 -0
- package/packages/studio/src/ui/timeline.ts +1041 -0
- package/packages/studio/src/ui/writeback.ts +10 -0
- package/packages/studio/src/ui/zoom.ts +129 -0
- package/packages/studio/start.ts +143 -0
- package/packages/studio-adapter/README.md +186 -0
- package/packages/studio-adapter/package.json +14 -0
- package/packages/studio-adapter/src/index.ts +850 -0
- package/packages/svs/README.md +37 -0
- package/packages/svs/package.json +21 -0
- package/packages/svs/src/activation.ts +11 -0
- package/packages/svs/src/format.ts +16 -0
- package/packages/svs/src/frontend.ts +33 -0
- package/packages/svs/src/index.ts +5 -0
- package/packages/svs/src/manifest.ts +17 -0
- package/packages/svs/src/parser.ts +279 -0
- package/packages/svs/src/types.ts +26 -0
- package/packages/temporal/README.md +31 -0
- package/packages/temporal/package.json +20 -0
- package/packages/temporal/src/activation.ts +9 -0
- package/packages/temporal/src/component.ts +68 -0
- package/packages/temporal/src/index.ts +110 -0
- package/packages/temporal/src/location.ts +67 -0
- package/packages/temporal/src/projection.ts +280 -0
- package/packages/temporal/src/rational.ts +80 -0
- package/packages/temporal/src/sample.ts +43 -0
- package/packages/temporal/src/schedule.ts +52 -0
- package/packages/temporal/src/types.ts +124 -0
- package/packages/temporal-markup/README.md +75 -0
- package/packages/temporal-markup/package.json +18 -0
- package/packages/temporal-markup/src/index.ts +537 -0
- package/packages/temporal-markup/src/space.ts +59 -0
- package/packages/text/README.md +59 -0
- package/packages/text/package.json +21 -0
- package/packages/text/src/activation.ts +33 -0
- package/packages/text/src/component.ts +72 -0
- package/packages/text/src/fragment.ts +57 -0
- package/packages/text/src/frontend.ts +39 -0
- package/packages/text/src/index.ts +27 -0
- package/packages/text/src/manifest.ts +170 -0
- package/packages/text/src/program.ts +418 -0
- package/packages/text/src/surface.ts +212 -0
- package/packages/text/src/svs.ts +189 -0
- package/packages/text/src/types.ts +82 -0
- package/packages/transport-aws-lambda/README.md +20 -0
- package/packages/transport-aws-lambda/package.json +14 -0
- package/packages/transport-aws-lambda/src/index.ts +131 -0
- package/packages/typography-track/README.md +50 -0
- package/packages/typography-track/package.json +34 -0
- package/packages/typography-track/preview/Mask.png +0 -0
- package/packages/typography-track/preview/Track.png +0 -0
- package/packages/typography-track/src/activation.ts +36 -0
- package/packages/typography-track/src/component.ts +93 -0
- package/packages/typography-track/src/fragment.ts +30 -0
- package/packages/typography-track/src/index.ts +11 -0
- package/packages/typography-track/src/manifest.ts +556 -0
- package/packages/typography-track/src/program.ts +622 -0
- package/packages/typography-track/src/surface.ts +842 -0
- package/packages/typography-track/src/types.ts +109 -0
- package/packages/typography-track-studio/README.md +3 -0
- package/packages/typography-track-studio/package.json +14 -0
- package/packages/typography-track-studio/src/activation.ts +7 -0
- package/packages/typography-track-studio/src/index.ts +116 -0
- package/packages/validation/README.md +11 -0
- package/packages/validation/package.json +15 -0
- package/packages/validation/src/index.ts +100 -0
- package/packages/video-cli/README.md +181 -0
- package/packages/video-cli/package.json +37 -0
- package/packages/video-cli/src/capture.ts +174 -0
- package/packages/video-cli/src/cli.ts +109 -0
- package/packages/video-cli/src/compiler.ts +32 -0
- package/packages/video-cli/src/creation.ts +449 -0
- package/packages/video-cli/src/distribution.ts +88 -0
- package/packages/video-cli/src/index.ts +50 -0
- package/packages/video-cli/src/media.ts +701 -0
- package/packages/video-cli/src/package-selection.ts +34 -0
- package/packages/video-cli/src/process.ts +71 -0
- package/packages/video-cli/src/studio-distribution.ts +19 -0
- package/packages/video-cli/src/transcript.ts +71 -0
- package/packages/video-cli/src/vocabulary.ts +386 -0
- package/packages/visual-ir/README.md +36 -0
- package/packages/visual-ir/package.json +16 -0
- package/packages/visual-ir/src/activation.ts +3 -0
- package/packages/visual-ir/src/index.ts +7 -0
- package/packages/visual-ir/src/style.ts +222 -0
- package/packages/volcengine-matting/README.md +89 -0
- package/packages/volcengine-matting/package.json +16 -0
- package/packages/volcengine-matting/src/activation.ts +13 -0
- package/packages/volcengine-matting/src/index.ts +45 -0
- package/packages/volcengine-matting/src/surface.ts +48 -0
- package/packages/whisperx/README.md +34 -0
- package/packages/whisperx/package.json +28 -0
- package/packages/whisperx/src/activation.ts +18 -0
- package/packages/whisperx/src/component.ts +64 -0
- package/packages/whisperx/src/evidence.ts +69 -0
- package/packages/whisperx/src/fragment.ts +76 -0
- package/packages/whisperx/src/index.ts +14 -0
- package/packages/whisperx/src/manifest.ts +92 -0
- package/packages/whisperx/src/surface.ts +90 -0
- package/packages/whisperx/src/transcript.ts +97 -0
- package/packages/whisperx/src/types.ts +9 -0
- package/packages/workspace/README.md +4 -0
- package/packages/workspace/package.json +14 -0
- package/packages/workspace/src/index.ts +38 -0
- package/packages/workspace-fs-node/README.md +13 -0
- package/packages/workspace-fs-node/package.json +15 -0
- package/packages/workspace-fs-node/src/index.ts +6 -0
- package/packages/workspace-fs-node/src/workspace.ts +226 -0
- package/packages/yt-dlp/README.md +31 -0
- package/packages/yt-dlp/package.json +10 -0
- package/packages/yt-dlp/src/download.ts +104 -0
- package/packages/yt-dlp/src/index.ts +1 -0
- package/services/image-opencv/README.md +33 -0
- package/services/image-opencv/package.json +14 -0
- package/services/image-opencv/pyproject.toml +13 -0
- package/services/image-opencv/uv.lock +56 -0
- package/services/whisperx/README.md +82 -0
- package/services/whisperx/package.json +15 -0
- package/services/whisperx/pyproject.toml +26 -0
- package/services/whisperx/src/hypit_whisperx_service/__init__.py +6 -0
- package/services/whisperx/src/hypit_whisperx_service/__main__.py +29 -0
- package/services/whisperx/src/hypit_whisperx_service/application.py +88 -0
- package/services/whisperx/src/hypit_whisperx_service/audio.py +66 -0
- package/services/whisperx/src/hypit_whisperx_service/check.py +35 -0
- package/services/whisperx/src/hypit_whisperx_service/config.py +81 -0
- package/services/whisperx/src/hypit_whisperx_service/engine.py +173 -0
- package/services/whisperx/src/hypit_whisperx_service/prepare.py +19 -0
- package/services/whisperx/src/hypit_whisperx_service/resources.py +41 -0
- package/services/whisperx/src/hypit_whisperx_service/server.py +101 -0
- package/services/whisperx/uv.lock +3381 -0
- package/services/yt-dlp/README.md +19 -0
- package/services/yt-dlp/package.json +14 -0
- package/services/yt-dlp/pyproject.toml +13 -0
- package/services/yt-dlp/uv.lock +23 -0
- package/index.js +0 -1
|
@@ -0,0 +1,1041 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
SemanticToken,
|
|
3
|
+
StudioSnapshot,
|
|
4
|
+
} from "../shared.js";
|
|
5
|
+
import type { StudioEditHandle } from "@hypit/studio-adapter";
|
|
6
|
+
import { icon, setIcon } from "./icons.js";
|
|
7
|
+
import { mountMaterialPreview } from "./material-preview.js";
|
|
8
|
+
import type { State, Store } from "./selection.js";
|
|
9
|
+
import { createHandle } from "./resize.js";
|
|
10
|
+
import { createZoom } from "./zoom.js";
|
|
11
|
+
import { applyStudioMutation } from "./writeback.js";
|
|
12
|
+
|
|
13
|
+
export type Timeline = {
|
|
14
|
+
readonly element: HTMLElement;
|
|
15
|
+
readonly zoomIn: () => void;
|
|
16
|
+
readonly zoomOut: () => void;
|
|
17
|
+
readonly fit: () => void;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const opened = new Set<string>();
|
|
21
|
+
const itemMetrics = {
|
|
22
|
+
// Ordinary items fill their rows. Only the semantic lane owns compact word cells.
|
|
23
|
+
insetYPx: 1,
|
|
24
|
+
headerPx: 15,
|
|
25
|
+
contentCellPx: 18,
|
|
26
|
+
gapPx: 1,
|
|
27
|
+
} as const;
|
|
28
|
+
|
|
29
|
+
const labelFont = '500 11px -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif';
|
|
30
|
+
const textMeasure = document.createElement("canvas").getContext("2d");
|
|
31
|
+
const textWidths = new Map<string, number>();
|
|
32
|
+
const wordLabelPaddingPx = 5;
|
|
33
|
+
const wordLabelEnterBufferPx = 1;
|
|
34
|
+
|
|
35
|
+
function measuredText(value: string, font = labelFont): number {
|
|
36
|
+
const key = `${font}\u0000${value}`;
|
|
37
|
+
const cached = textWidths.get(key);
|
|
38
|
+
if (cached !== undefined) return cached;
|
|
39
|
+
if (textMeasure === null) return Array.from(value).length * 7;
|
|
40
|
+
textMeasure.font = font;
|
|
41
|
+
const width = textMeasure.measureText(value).width;
|
|
42
|
+
textWidths.set(key, width);
|
|
43
|
+
return width;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function timecode(seconds: number): string {
|
|
47
|
+
const whole = Math.floor(seconds);
|
|
48
|
+
return `${String(Math.floor(whole / 60)).padStart(2, "0")}:${String(whole % 60).padStart(2, "0")}`;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
function frameTickLabel(frame: number): string {
|
|
52
|
+
return `${frame}f`;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function frameSteps(frameRate: number): readonly number[] {
|
|
56
|
+
const result: number[] = [];
|
|
57
|
+
for (let candidate = 1; candidate <= frameRate; candidate += 1) {
|
|
58
|
+
if (frameRate % candidate === 0) result.push(candidate);
|
|
59
|
+
}
|
|
60
|
+
return result;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function place(frame: number, frameCount: number, shown: { start: number; end: number }): number {
|
|
64
|
+
const span = Math.max(1e-6, shown.end - shown.start);
|
|
65
|
+
return (frame / Math.max(1, frameCount) - shown.start) / span;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function displayTrackName(track: StudioSnapshot["tracks"][number]): string {
|
|
69
|
+
if (track.binding.label !== undefined) return track.binding.label;
|
|
70
|
+
return track.label;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function visibleItemWidth(
|
|
74
|
+
from: number,
|
|
75
|
+
to: number,
|
|
76
|
+
laneWidth: number,
|
|
77
|
+
): number {
|
|
78
|
+
const visibleFrom = Math.max(0, from);
|
|
79
|
+
const visibleTo = Math.min(1, to);
|
|
80
|
+
return Math.max(0, visibleTo - visibleFrom) * laneWidth;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function createTimeline(store: Store): Timeline {
|
|
84
|
+
const element = document.createElement("section");
|
|
85
|
+
element.className = "timeline";
|
|
86
|
+
element.style.setProperty("--timeline-item-inset-y", `${itemMetrics.insetYPx}px`);
|
|
87
|
+
element.style.setProperty("--timeline-item-header-height", `${itemMetrics.headerPx}px`);
|
|
88
|
+
element.style.setProperty("--timeline-content-cell-height", `${itemMetrics.contentCellPx}px`);
|
|
89
|
+
element.innerHTML = `
|
|
90
|
+
<div class="timeline-toolbar">
|
|
91
|
+
<div class="timeline-tools">
|
|
92
|
+
<button type="button" class="tool-button active" aria-label="Select" title="Select">${icon("select")}</button>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="timeline-time" data-timeline-time>00:00:00</div>
|
|
95
|
+
<div class="timeline-view-actions">
|
|
96
|
+
<button type="button" class="icon-button" data-zoom-out aria-label="Zoom out" title="Zoom out">${icon("minus")}</button>
|
|
97
|
+
<button type="button" class="icon-button" data-zoom-fit aria-label="Fit timeline" title="Fit timeline">${icon("fit")}</button>
|
|
98
|
+
<button type="button" class="icon-button" data-zoom-in aria-label="Zoom in" title="Zoom in">${icon("plus")}</button>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="timeline-body" data-timeline-body>
|
|
102
|
+
<div class="timeline-labels" data-labels></div>
|
|
103
|
+
<div class="timeline-lanes" data-lanes>
|
|
104
|
+
<div class="ruler" data-ruler><div class="playhead-grip" data-playhead-grip></div></div>
|
|
105
|
+
<div class="lanes" data-rows></div>
|
|
106
|
+
<div class="timeline-hover" data-hover aria-hidden="true"><span data-hover-time></span></div>
|
|
107
|
+
<div class="playhead" data-playhead></div>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
<div class="timeline-zoom" data-zoom></div>`;
|
|
111
|
+
|
|
112
|
+
const labels = element.querySelector<HTMLElement>("[data-labels]")!;
|
|
113
|
+
const body = element.querySelector<HTMLElement>("[data-timeline-body]")!;
|
|
114
|
+
const lanes = element.querySelector<HTMLElement>("[data-lanes]")!;
|
|
115
|
+
const ruler = element.querySelector<HTMLElement>("[data-ruler]")!;
|
|
116
|
+
const rows = element.querySelector<HTMLElement>("[data-rows]")!;
|
|
117
|
+
const hover = element.querySelector<HTMLElement>("[data-hover]")!;
|
|
118
|
+
const hoverTime = element.querySelector<HTMLElement>("[data-hover-time]")!;
|
|
119
|
+
const playhead = element.querySelector<HTMLElement>("[data-playhead]")!;
|
|
120
|
+
const playheadGrip = element.querySelector<HTMLElement>("[data-playhead-grip]")!;
|
|
121
|
+
const timelineTime = element.querySelector<HTMLElement>("[data-timeline-time]")!;
|
|
122
|
+
const zoom = createZoom();
|
|
123
|
+
element.querySelector<HTMLElement>("[data-zoom]")!.append(zoom.element);
|
|
124
|
+
|
|
125
|
+
// The label column is part of the timeline's reading surface, not a fixed
|
|
126
|
+
// application chrome width. Keep enough room for the longest built-in
|
|
127
|
+
// facet name while leaving a usable canvas, and remember the author's choice.
|
|
128
|
+
const labelHandle = createHandle({
|
|
129
|
+
axis: "column",
|
|
130
|
+
initial: 188,
|
|
131
|
+
minimum: 156,
|
|
132
|
+
// createTimeline is constructed before it is attached to the document, so
|
|
133
|
+
// clientWidth is initially zero. Keep the preferred default valid during
|
|
134
|
+
// that first pass; on a real viewport the canvas-aware ceiling applies,
|
|
135
|
+
// with 260px as the hard visual cap on a wide timeline.
|
|
136
|
+
maximum: () => Math.min(260, Math.max(188, body.clientWidth - 360)),
|
|
137
|
+
apply: (size) => { element.style.setProperty("--timeline-label-width", `${size}px`); },
|
|
138
|
+
remember: "hypit-studio.v4.timeline-label-width",
|
|
139
|
+
});
|
|
140
|
+
labelHandle.classList.add("timeline-label-handle");
|
|
141
|
+
labelHandle.setAttribute("aria-label", "Resize timeline track labels");
|
|
142
|
+
labelHandle.title = "Resize track labels";
|
|
143
|
+
body.insertBefore(labelHandle, lanes);
|
|
144
|
+
|
|
145
|
+
let state: State | undefined;
|
|
146
|
+
let built = -1;
|
|
147
|
+
let paintFrame = 0;
|
|
148
|
+
let rebuildFrame = 0;
|
|
149
|
+
const readableWordLabels = new Set<string>();
|
|
150
|
+
let clipNodes: readonly {
|
|
151
|
+
readonly node: HTMLElement;
|
|
152
|
+
readonly start: number;
|
|
153
|
+
readonly end: number;
|
|
154
|
+
readonly id: string;
|
|
155
|
+
}[] = [];
|
|
156
|
+
let semanticNodes: readonly {
|
|
157
|
+
readonly node: HTMLElement;
|
|
158
|
+
readonly id: string;
|
|
159
|
+
readonly start: number;
|
|
160
|
+
readonly end: number;
|
|
161
|
+
readonly kind: "segment" | "word" | "selection" | "moment";
|
|
162
|
+
}[] = [];
|
|
163
|
+
|
|
164
|
+
const playheadFraction = (): number => {
|
|
165
|
+
if (state === undefined) return 0.5;
|
|
166
|
+
const shown = zoom.window();
|
|
167
|
+
const at = state.playhead.frame / Math.max(1, state.snapshot.space.frameCount);
|
|
168
|
+
return Math.max(0, Math.min(1, (at - shown.start) / Math.max(1e-6, shown.end - shown.start)));
|
|
169
|
+
};
|
|
170
|
+
const zoomOut = (): void => zoom.pinch(playheadFraction(), 1.25);
|
|
171
|
+
const zoomIn = (): void => zoom.pinch(playheadFraction(), 0.8);
|
|
172
|
+
const fit = (): void => zoom.fit();
|
|
173
|
+
element.querySelector<HTMLButtonElement>("[data-zoom-out]")!.addEventListener("click", zoomOut);
|
|
174
|
+
element.querySelector<HTMLButtonElement>("[data-zoom-in]")!.addEventListener("click", zoomIn);
|
|
175
|
+
element.querySelector<HTMLButtonElement>("[data-zoom-fit]")!.addEventListener("click", fit);
|
|
176
|
+
|
|
177
|
+
const fps = (snapshot: StudioSnapshot): number =>
|
|
178
|
+
snapshot.space.frameRate.numerator / snapshot.space.frameRate.denominator;
|
|
179
|
+
|
|
180
|
+
const snapFrame = (frame: number): number => {
|
|
181
|
+
if (state === undefined || lanes.clientWidth <= 0) return frame;
|
|
182
|
+
const shown = zoom.window();
|
|
183
|
+
const threshold = Math.max(1, Math.ceil(
|
|
184
|
+
(shown.end - shown.start) * state.snapshot.space.frameCount / lanes.clientWidth * 6,
|
|
185
|
+
));
|
|
186
|
+
let nearest = frame;
|
|
187
|
+
let distance = threshold + 1;
|
|
188
|
+
const consider = (candidate: number): void => {
|
|
189
|
+
const next = Math.abs(candidate - frame);
|
|
190
|
+
if (next < distance) { nearest = candidate; distance = next; }
|
|
191
|
+
};
|
|
192
|
+
for (const anchor of state.snapshot.semantic?.anchors ?? []) consider(anchor.frame);
|
|
193
|
+
for (const clip of state.snapshot.tracks.flatMap((track) => track.clips)) {
|
|
194
|
+
consider(clip.startFrame);
|
|
195
|
+
consider(clip.endFrameExclusive);
|
|
196
|
+
}
|
|
197
|
+
return distance <= threshold ? nearest : frame;
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
const rawFrameAt = (clientX: number): number => {
|
|
201
|
+
const box = lanes.getBoundingClientRect();
|
|
202
|
+
if (box.width === 0 || state === undefined) return 0;
|
|
203
|
+
const across = Math.max(0, Math.min(1, (clientX - box.left) / box.width));
|
|
204
|
+
const shown = zoom.window();
|
|
205
|
+
return Math.floor(
|
|
206
|
+
(shown.start + across * (shown.end - shown.start)) * state.snapshot.space.frameCount,
|
|
207
|
+
);
|
|
208
|
+
};
|
|
209
|
+
const frameAt = (clientX: number): number => snapFrame(rawFrameAt(clientX));
|
|
210
|
+
|
|
211
|
+
const frameTimecode = (snapshot: StudioSnapshot, frame: number): string => {
|
|
212
|
+
const rate = Math.max(1, Math.round(fps(snapshot)));
|
|
213
|
+
const seconds = Math.floor(frame / fps(snapshot));
|
|
214
|
+
return `${String(Math.floor(seconds / 60)).padStart(2, "0")}:${String(seconds % 60).padStart(2, "0")}:${String(frame % rate).padStart(2, "0")}`;
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
let pointerArmed = false;
|
|
218
|
+
let pointerDownX = 0;
|
|
219
|
+
let pointerDownOnItem = false;
|
|
220
|
+
let activeEdit: {
|
|
221
|
+
readonly clip: StudioSnapshot["tracks"][number]["clips"][number];
|
|
222
|
+
readonly handle: StudioEditHandle;
|
|
223
|
+
readonly startFrame: number;
|
|
224
|
+
readonly pointerAnchorIndex?: number;
|
|
225
|
+
readonly pointerId: number;
|
|
226
|
+
readonly node: HTMLElement;
|
|
227
|
+
readonly originalLeft: string;
|
|
228
|
+
readonly originalWidth: string;
|
|
229
|
+
} | undefined;
|
|
230
|
+
|
|
231
|
+
const nearestAnchorIndex = (
|
|
232
|
+
frame: number,
|
|
233
|
+
indices: readonly number[],
|
|
234
|
+
preferredIndex?: number,
|
|
235
|
+
): number | undefined => {
|
|
236
|
+
if (state === undefined) return undefined;
|
|
237
|
+
const anchors = state.snapshot.semantic?.anchors ?? [];
|
|
238
|
+
const preferredKind = preferredIndex === undefined ? undefined : anchors[preferredIndex]?.kind;
|
|
239
|
+
return [...indices].sort((left, right) => {
|
|
240
|
+
const leftAnchor = anchors[left]!;
|
|
241
|
+
const rightAnchor = anchors[right]!;
|
|
242
|
+
return Math.abs(leftAnchor.frame - frame) - Math.abs(rightAnchor.frame - frame)
|
|
243
|
+
|| Number(leftAnchor.kind !== preferredKind) - Number(rightAnchor.kind !== preferredKind)
|
|
244
|
+
|| Math.abs(left - (preferredIndex ?? left)) - Math.abs(right - (preferredIndex ?? right))
|
|
245
|
+
|| left - right;
|
|
246
|
+
})[0];
|
|
247
|
+
};
|
|
248
|
+
|
|
249
|
+
const semanticTarget = (
|
|
250
|
+
edit: NonNullable<typeof activeEdit>,
|
|
251
|
+
nextFrame: number,
|
|
252
|
+
): { readonly kind: "selection"; readonly startAnchorId: string; readonly endAnchorId: string }
|
|
253
|
+
| { readonly kind: "moment"; readonly anchorId: string }
|
|
254
|
+
| undefined => {
|
|
255
|
+
if (state === undefined || edit.handle.semantic === undefined) return undefined;
|
|
256
|
+
const semantic = edit.handle.semantic;
|
|
257
|
+
const anchors = state.snapshot.semantic?.anchors ?? [];
|
|
258
|
+
if (semantic.kind === "moment") {
|
|
259
|
+
const currentIndex = anchors.findIndex((anchor) => anchor.id === semantic.anchorId);
|
|
260
|
+
const anchorIndex = nearestAnchorIndex(
|
|
261
|
+
nextFrame,
|
|
262
|
+
anchors.map((_, index) => index),
|
|
263
|
+
currentIndex < 0 ? undefined : currentIndex,
|
|
264
|
+
);
|
|
265
|
+
return anchorIndex === undefined ? undefined : { kind: "moment", anchorId: anchors[anchorIndex]!.id };
|
|
266
|
+
}
|
|
267
|
+
const startIndex = anchors.findIndex((anchor) => anchor.id === semantic.startAnchorId);
|
|
268
|
+
const endIndex = anchors.findIndex((anchor) => anchor.id === semantic.endAnchorId);
|
|
269
|
+
if (startIndex < 0 || endIndex < 0 || startIndex >= endIndex) return undefined;
|
|
270
|
+
let nextStart = startIndex;
|
|
271
|
+
let nextEnd = endIndex;
|
|
272
|
+
if (edit.handle.gesture === "trim-start") {
|
|
273
|
+
const allowed = anchors.flatMap((anchor, index) =>
|
|
274
|
+
index < endIndex && anchor.frame < anchors[endIndex]!.frame ? [index] : []);
|
|
275
|
+
nextStart = nearestAnchorIndex(nextFrame, allowed, startIndex) ?? startIndex;
|
|
276
|
+
} else if (edit.handle.gesture === "trim-end") {
|
|
277
|
+
const allowed = anchors.flatMap((anchor, index) =>
|
|
278
|
+
index > startIndex && anchor.frame > anchors[startIndex]!.frame ? [index] : []);
|
|
279
|
+
nextEnd = nearestAnchorIndex(nextFrame, allowed, endIndex) ?? endIndex;
|
|
280
|
+
} else if (edit.handle.gesture === "move") {
|
|
281
|
+
const instantBoundary = edit.handle.temporal?.kind === "instant"
|
|
282
|
+
&& edit.handle.temporal.authority.kind === "semantic"
|
|
283
|
+
&& edit.handle.temporal.authority.source.kind === "selection"
|
|
284
|
+
? edit.handle.temporal.authority.boundary
|
|
285
|
+
: undefined;
|
|
286
|
+
if (instantBoundary === "start") {
|
|
287
|
+
const allowed = anchors.flatMap((anchor, index) =>
|
|
288
|
+
index < endIndex && anchor.frame < anchors[endIndex]!.frame ? [index] : []);
|
|
289
|
+
nextStart = nearestAnchorIndex(nextFrame, allowed, startIndex) ?? startIndex;
|
|
290
|
+
return { kind: "selection", startAnchorId: anchors[nextStart]!.id, endAnchorId: anchors[nextEnd]!.id };
|
|
291
|
+
}
|
|
292
|
+
if (instantBoundary === "end") {
|
|
293
|
+
const allowed = anchors.flatMap((anchor, index) =>
|
|
294
|
+
index > startIndex && anchor.frame > anchors[startIndex]!.frame ? [index] : []);
|
|
295
|
+
nextEnd = nearestAnchorIndex(nextFrame, allowed, endIndex) ?? endIndex;
|
|
296
|
+
return { kind: "selection", startAnchorId: anchors[nextStart]!.id, endAnchorId: anchors[nextEnd]!.id };
|
|
297
|
+
}
|
|
298
|
+
const pointerIndex = edit.pointerAnchorIndex ?? startIndex;
|
|
299
|
+
const deltas = anchors.flatMap((_, index) => {
|
|
300
|
+
const delta = index - pointerIndex;
|
|
301
|
+
const movedStart = startIndex + delta;
|
|
302
|
+
const movedEnd = endIndex + delta;
|
|
303
|
+
return movedStart >= 0 && movedEnd < anchors.length
|
|
304
|
+
&& anchors[movedStart]!.frame < anchors[movedEnd]!.frame
|
|
305
|
+
? [delta]
|
|
306
|
+
: [];
|
|
307
|
+
});
|
|
308
|
+
const targetPointer = nearestAnchorIndex(
|
|
309
|
+
nextFrame,
|
|
310
|
+
deltas.map((delta) => pointerIndex + delta),
|
|
311
|
+
pointerIndex,
|
|
312
|
+
);
|
|
313
|
+
const delta = targetPointer === undefined ? 0 : targetPointer - pointerIndex;
|
|
314
|
+
nextStart += delta;
|
|
315
|
+
nextEnd += delta;
|
|
316
|
+
} else {
|
|
317
|
+
return undefined;
|
|
318
|
+
}
|
|
319
|
+
return {
|
|
320
|
+
kind: "selection",
|
|
321
|
+
startAnchorId: anchors[nextStart]!.id,
|
|
322
|
+
endAnchorId: anchors[nextEnd]!.id,
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
const absoluteWindowTarget = (
|
|
327
|
+
edit: NonNullable<typeof activeEdit>,
|
|
328
|
+
nextFrame: number,
|
|
329
|
+
): { readonly startFrame: number; readonly endFrameExclusive: number } => {
|
|
330
|
+
if (state === undefined) return {
|
|
331
|
+
startFrame: edit.clip.startFrame,
|
|
332
|
+
endFrameExclusive: edit.clip.endFrameExclusive,
|
|
333
|
+
};
|
|
334
|
+
const rawDelta = nextFrame - edit.startFrame;
|
|
335
|
+
const delta = Math.max(-edit.clip.startFrame,
|
|
336
|
+
Math.min(state.snapshot.space.frameCount - edit.clip.endFrameExclusive, rawDelta));
|
|
337
|
+
if (edit.handle.gesture === "move") return {
|
|
338
|
+
startFrame: edit.clip.startFrame + delta,
|
|
339
|
+
endFrameExclusive: edit.clip.endFrameExclusive + delta,
|
|
340
|
+
};
|
|
341
|
+
if (edit.handle.gesture === "trim-start") return {
|
|
342
|
+
startFrame: Math.min(edit.clip.endFrameExclusive - 1, nextFrame),
|
|
343
|
+
endFrameExclusive: edit.clip.endFrameExclusive,
|
|
344
|
+
};
|
|
345
|
+
return {
|
|
346
|
+
startFrame: edit.clip.startFrame,
|
|
347
|
+
endFrameExclusive: Math.max(edit.clip.startFrame + 1, nextFrame),
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
const previewWindow = (
|
|
352
|
+
edit: NonNullable<typeof activeEdit>,
|
|
353
|
+
nextFrame: number,
|
|
354
|
+
): { readonly startFrame: number; readonly endFrameExclusive: number } | undefined => {
|
|
355
|
+
if (state === undefined) return undefined;
|
|
356
|
+
const target = semanticTarget(edit, nextFrame);
|
|
357
|
+
if (target?.kind === "selection" && edit.handle.semantic?.kind === "selection") {
|
|
358
|
+
const current = state.snapshot.semantic?.selections.find((selection) => selection.id === edit.handle.semantic!.id);
|
|
359
|
+
const nextStart = state.snapshot.semantic?.anchors.find((anchor) => anchor.id === target.startAnchorId)?.frame;
|
|
360
|
+
const nextEnd = state.snapshot.semantic?.anchors.find((anchor) => anchor.id === target.endAnchorId)?.frame;
|
|
361
|
+
if (current === undefined || nextStart === undefined || nextEnd === undefined) return undefined;
|
|
362
|
+
const instantBoundary = edit.handle.temporal?.kind === "instant"
|
|
363
|
+
&& edit.handle.temporal.authority.kind === "semantic"
|
|
364
|
+
&& edit.handle.temporal.authority.source.kind === "selection"
|
|
365
|
+
? edit.handle.temporal.authority.boundary
|
|
366
|
+
: undefined;
|
|
367
|
+
if (instantBoundary === "start" || instantBoundary === "end") {
|
|
368
|
+
const frame = instantBoundary === "start" ? nextStart : nextEnd;
|
|
369
|
+
return { startFrame: frame, endFrameExclusive: frame + 1 };
|
|
370
|
+
}
|
|
371
|
+
return {
|
|
372
|
+
startFrame: nextStart + edit.clip.startFrame - current.startFrame,
|
|
373
|
+
endFrameExclusive: nextEnd + edit.clip.endFrameExclusive - current.endFrameExclusive,
|
|
374
|
+
};
|
|
375
|
+
}
|
|
376
|
+
if (target?.kind === "moment" && edit.handle.semantic?.kind === "moment") {
|
|
377
|
+
const current = state.snapshot.semantic?.moments.find((moment) => moment.id === edit.handle.semantic!.id);
|
|
378
|
+
const next = state.snapshot.semantic?.anchors.find((anchor) => anchor.id === target.anchorId)?.frame;
|
|
379
|
+
if (current === undefined || next === undefined) return undefined;
|
|
380
|
+
const delta = next - current.frame;
|
|
381
|
+
if (edit.handle.gesture === "trim-start") {
|
|
382
|
+
return { startFrame: next, endFrameExclusive: edit.clip.endFrameExclusive };
|
|
383
|
+
}
|
|
384
|
+
if (edit.handle.gesture === "trim-end") {
|
|
385
|
+
return { startFrame: edit.clip.startFrame, endFrameExclusive: next };
|
|
386
|
+
}
|
|
387
|
+
return edit.handle.moveEffect === "move-start"
|
|
388
|
+
? { startFrame: edit.clip.startFrame + delta, endFrameExclusive: edit.clip.endFrameExclusive }
|
|
389
|
+
: { startFrame: edit.clip.startFrame + delta, endFrameExclusive: edit.clip.endFrameExclusive + delta };
|
|
390
|
+
}
|
|
391
|
+
return edit.handle.temporal === undefined ? undefined : absoluteWindowTarget(edit, nextFrame);
|
|
392
|
+
};
|
|
393
|
+
lanes.addEventListener("pointerdown", (event) => {
|
|
394
|
+
pointerDownOnItem = (event.target as HTMLElement).closest(
|
|
395
|
+
".clip, .semantic-segment, .semantic-word, .semantic-selection, .semantic-moment",
|
|
396
|
+
) !== null;
|
|
397
|
+
pointerDownX = event.clientX;
|
|
398
|
+
pointerArmed = true;
|
|
399
|
+
// Let semantic children receive their native click. Capturing every
|
|
400
|
+
// pointer here retargets the later click to `.lanes`, which made segment
|
|
401
|
+
// and selection buttons appear to be dead zones. Blank-space scrubbing
|
|
402
|
+
// still uses capture so it can continue outside the lane.
|
|
403
|
+
if (!pointerDownOnItem) {
|
|
404
|
+
try { lanes.setPointerCapture(event.pointerId); } catch { /* pointer remains local */ }
|
|
405
|
+
}
|
|
406
|
+
if (!pointerDownOnItem) {
|
|
407
|
+
store.clearSelection();
|
|
408
|
+
store.seek(frameAt(event.clientX), "timeline");
|
|
409
|
+
}
|
|
410
|
+
});
|
|
411
|
+
lanes.addEventListener("pointermove", (event) => {
|
|
412
|
+
const frame = frameAt(event.clientX);
|
|
413
|
+
const at = place(frame, state?.snapshot.space.frameCount ?? 1, zoom.window()) * lanes.clientWidth;
|
|
414
|
+
hover.style.transform = `translate3d(${at}px,0,0)`;
|
|
415
|
+
hoverTime.textContent = state === undefined ? "" : frameTimecode(state.snapshot, frame);
|
|
416
|
+
hover.classList.add("visible");
|
|
417
|
+
if (activeEdit !== undefined && state !== undefined) {
|
|
418
|
+
const nextFrame = activeEdit.handle.coordinate === "semantic-anchor"
|
|
419
|
+
? rawFrameAt(event.clientX)
|
|
420
|
+
: frameAt(event.clientX);
|
|
421
|
+
const preview = previewWindow(activeEdit, nextFrame);
|
|
422
|
+
if (preview !== undefined) {
|
|
423
|
+
const from = place(preview.startFrame, state.snapshot.space.frameCount, zoom.window());
|
|
424
|
+
const to = place(preview.endFrameExclusive, state.snapshot.space.frameCount, zoom.window());
|
|
425
|
+
activeEdit.node.style.left = `${from * 100}%`;
|
|
426
|
+
activeEdit.node.style.width = `max(2px, calc(${Math.max(0, to - from) * 100}% - ${itemMetrics.gapPx}px))`;
|
|
427
|
+
}
|
|
428
|
+
return;
|
|
429
|
+
}
|
|
430
|
+
if (!pointerArmed || event.buttons !== 1) return;
|
|
431
|
+
if (pointerDownOnItem && Math.abs(event.clientX - pointerDownX) < 3) return;
|
|
432
|
+
store.seek(frame, "timeline");
|
|
433
|
+
});
|
|
434
|
+
const finishPointer = (event: PointerEvent): void => {
|
|
435
|
+
const edit = activeEdit;
|
|
436
|
+
activeEdit = undefined;
|
|
437
|
+
edit?.node.classList.remove("editing");
|
|
438
|
+
if (edit !== undefined) {
|
|
439
|
+
edit.node.style.left = edit.originalLeft;
|
|
440
|
+
edit.node.style.width = edit.originalWidth;
|
|
441
|
+
}
|
|
442
|
+
pointerArmed = false;
|
|
443
|
+
try { lanes.releasePointerCapture(event.pointerId); } catch { /* already released */ }
|
|
444
|
+
if (edit === undefined || state === undefined || event.type === "pointercancel") return;
|
|
445
|
+
const nextFrame = edit.handle.coordinate === "semantic-anchor"
|
|
446
|
+
? rawFrameAt(event.clientX)
|
|
447
|
+
: frameAt(event.clientX);
|
|
448
|
+
const resolvedSemanticTarget = semanticTarget(edit, nextFrame);
|
|
449
|
+
const resolvedWindow = previewWindow(edit, nextFrame);
|
|
450
|
+
if (resolvedWindow === undefined || edit.handle.temporal === undefined) return;
|
|
451
|
+
const target = edit.handle.temporal.kind === "instant"
|
|
452
|
+
? {
|
|
453
|
+
kind: "instant" as const,
|
|
454
|
+
frame: resolvedWindow.startFrame,
|
|
455
|
+
...(resolvedSemanticTarget === undefined ? {} : { semantic: resolvedSemanticTarget }),
|
|
456
|
+
}
|
|
457
|
+
: {
|
|
458
|
+
kind: "window" as const,
|
|
459
|
+
...resolvedWindow,
|
|
460
|
+
...(resolvedSemanticTarget === undefined ? {} : { semantic: resolvedSemanticTarget }),
|
|
461
|
+
};
|
|
462
|
+
if (resolvedSemanticTarget?.kind === "selection"
|
|
463
|
+
&& edit.handle.semantic?.kind === "selection"
|
|
464
|
+
&& resolvedSemanticTarget.startAnchorId === edit.handle.semantic.startAnchorId
|
|
465
|
+
&& resolvedSemanticTarget.endAnchorId === edit.handle.semantic.endAnchorId
|
|
466
|
+
&& (target.kind === "instant"
|
|
467
|
+
? target.frame === edit.clip.startFrame
|
|
468
|
+
: target.startFrame === edit.clip.startFrame && target.endFrameExclusive === edit.clip.endFrameExclusive)) return;
|
|
469
|
+
if (resolvedSemanticTarget?.kind === "moment"
|
|
470
|
+
&& edit.handle.semantic?.kind === "moment"
|
|
471
|
+
&& resolvedSemanticTarget.anchorId === edit.handle.semantic.anchorId
|
|
472
|
+
&& (target.kind === "instant"
|
|
473
|
+
? target.frame === edit.clip.startFrame
|
|
474
|
+
: target.startFrame === edit.clip.startFrame && target.endFrameExclusive === edit.clip.endFrameExclusive)) return;
|
|
475
|
+
if (resolvedSemanticTarget === undefined
|
|
476
|
+
&& (target.kind === "instant"
|
|
477
|
+
? target.frame === edit.clip.startFrame
|
|
478
|
+
: target.startFrame === edit.clip.startFrame && target.endFrameExclusive === edit.clip.endFrameExclusive)) return;
|
|
479
|
+
element.dispatchEvent(new CustomEvent("studio:write", { detail: { state: "saving" } }));
|
|
480
|
+
void applyStudioMutation({
|
|
481
|
+
type: "timeline.adjust",
|
|
482
|
+
revision: state.snapshot.revision,
|
|
483
|
+
entityId: edit.clip.id,
|
|
484
|
+
gesture: edit.handle.gesture,
|
|
485
|
+
target,
|
|
486
|
+
}).then(() => {
|
|
487
|
+
element.dispatchEvent(new CustomEvent("studio:write", { detail: { state: "saved" } }));
|
|
488
|
+
}).catch((error: unknown) => {
|
|
489
|
+
// The next snapshot/error event is the source of truth; a failed gesture
|
|
490
|
+
// must never be represented by a local optimistic rectangle.
|
|
491
|
+
console.error(error);
|
|
492
|
+
element.dispatchEvent(new CustomEvent("studio:write", { detail: { state: "error" } }));
|
|
493
|
+
});
|
|
494
|
+
};
|
|
495
|
+
lanes.addEventListener("pointerup", finishPointer);
|
|
496
|
+
lanes.addEventListener("pointercancel", finishPointer);
|
|
497
|
+
lanes.addEventListener("pointerleave", () => {
|
|
498
|
+
if (!pointerArmed) hover.classList.remove("visible");
|
|
499
|
+
});
|
|
500
|
+
|
|
501
|
+
const drawRuler = (snapshot: StudioSnapshot): void => {
|
|
502
|
+
ruler.replaceChildren();
|
|
503
|
+
const frameCount = Math.max(1, snapshot.space.frameCount);
|
|
504
|
+
const shown = zoom.window();
|
|
505
|
+
const visibleFrames = Math.max(1, (shown.end - shown.start) * frameCount);
|
|
506
|
+
const widthPx = Math.max(1, lanes.clientWidth);
|
|
507
|
+
const exactRate = Math.max(1, fps(snapshot));
|
|
508
|
+
const rate = Math.max(1, Math.round(exactRate));
|
|
509
|
+
const pxPerFrame = widthPx / visibleFrames;
|
|
510
|
+
const pxPerSecond = pxPerFrame * exactRate;
|
|
511
|
+
const startFrame = shown.start * frameCount;
|
|
512
|
+
const endFrame = shown.end * frameCount;
|
|
513
|
+
const startSecond = startFrame / exactRate;
|
|
514
|
+
const endSecond = endFrame / exactRate;
|
|
515
|
+
|
|
516
|
+
const context = document.createElement("span");
|
|
517
|
+
context.className = "ruler-context";
|
|
518
|
+
context.textContent = timecode(startSecond);
|
|
519
|
+
ruler.append(context);
|
|
520
|
+
|
|
521
|
+
const secondCandidates = [1, 2, 5, 10, 15, 30, 60, 120];
|
|
522
|
+
const majorSeconds = secondCandidates.find((candidate) => candidate * pxPerSecond >= 112)
|
|
523
|
+
?? secondCandidates.at(-1)!;
|
|
524
|
+
const firstSecond = Math.max(0, Math.ceil(startSecond - 1e-6));
|
|
525
|
+
const lastSecond = Math.min(Math.floor(snapshot.space.durationSec), Math.floor(endSecond + 1e-6));
|
|
526
|
+
for (let seconds = firstSecond; seconds <= lastSecond; seconds += 1) {
|
|
527
|
+
const frame = Math.min(frameCount, Math.round(seconds * exactRate));
|
|
528
|
+
const at = place(frame, frameCount, shown);
|
|
529
|
+
if (at < 0 || at > 1) continue;
|
|
530
|
+
const major = Math.abs(seconds / majorSeconds - Math.round(seconds / majorSeconds)) < 1e-6;
|
|
531
|
+
const tick = document.createElement("span");
|
|
532
|
+
tick.className = `tick tick-second ${major ? "tick-major" : "tick-minor"}${at > 0.94 ? " tick-last" : ""}`;
|
|
533
|
+
tick.style.left = `${at * 100}%`;
|
|
534
|
+
tick.textContent = major && at * widthPx >= 52 ? timecode(seconds) : "";
|
|
535
|
+
ruler.append(tick);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
const steps = frameSteps(rate);
|
|
539
|
+
// A full-project ruler stays quiet. Once a second occupies enough screen
|
|
540
|
+
// space, minor frame marks enter before their labels. Both densities are
|
|
541
|
+
// selected from the same frame lattice, only with different pixel budgets.
|
|
542
|
+
const tickStep = pxPerSecond < 120
|
|
543
|
+
? rate
|
|
544
|
+
: steps.find((candidate) => candidate * pxPerFrame >= 18) ?? rate;
|
|
545
|
+
const labelStep = steps.find((candidate) => candidate * pxPerFrame >= 68) ?? rate;
|
|
546
|
+
const firstFrame = Math.max(0, Math.ceil(startFrame));
|
|
547
|
+
const lastFrame = Math.min(frameCount, Math.floor(endFrame));
|
|
548
|
+
for (let frame = firstFrame; frame <= lastFrame; frame += 1) {
|
|
549
|
+
const withinSecond = ((frame % rate) + rate) % rate;
|
|
550
|
+
if (withinSecond === 0) continue;
|
|
551
|
+
const at = place(frame, frameCount, shown);
|
|
552
|
+
if (at < 0 || at > 1) continue;
|
|
553
|
+
if (withinSecond % tickStep === 0) {
|
|
554
|
+
const tick = document.createElement("span");
|
|
555
|
+
tick.className = `tick tick-subdivision${tickStep === 1 ? " tick-frame" : ""}`;
|
|
556
|
+
tick.style.left = `${at * 100}%`;
|
|
557
|
+
ruler.append(tick);
|
|
558
|
+
}
|
|
559
|
+
if (labelStep < rate && withinSecond % labelStep === 0 && at * widthPx >= 52) {
|
|
560
|
+
const label = document.createElement("span");
|
|
561
|
+
label.className = "tick-frame-label";
|
|
562
|
+
label.style.left = `${at * 100}%`;
|
|
563
|
+
label.textContent = frameTickLabel(withinSecond);
|
|
564
|
+
ruler.append(label);
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
// The ruler is sticky while tracks scroll. Keeping the grip inside it makes
|
|
568
|
+
// the current-time marker remain attached to the scale instead of leaving
|
|
569
|
+
// its head behind at the top of the scrolled track stack.
|
|
570
|
+
ruler.append(playheadGrip);
|
|
571
|
+
};
|
|
572
|
+
|
|
573
|
+
const createTrackLabel = (
|
|
574
|
+
name: string,
|
|
575
|
+
kind: string,
|
|
576
|
+
iconName: string,
|
|
577
|
+
detail: string,
|
|
578
|
+
height: number,
|
|
579
|
+
attached = false,
|
|
580
|
+
hasState = false,
|
|
581
|
+
): HTMLElement => {
|
|
582
|
+
const label = document.createElement("div");
|
|
583
|
+
label.className = `track-label track-${kind}${hasState ? " track-label-has-state" : ""}`;
|
|
584
|
+
if (attached) label.classList.add("track-label-attached");
|
|
585
|
+
label.style.height = `${height}px`;
|
|
586
|
+
label.title = `${name} · ${detail}`;
|
|
587
|
+
label.innerHTML = `${attached
|
|
588
|
+
? '<span class="track-attachment-mark" aria-hidden="true"></span>'
|
|
589
|
+
: '<span class="track-icon"></span>'}<span class="track-copy"><strong></strong></span>${hasState
|
|
590
|
+
? '<span class="track-state"></span>'
|
|
591
|
+
: ""}`;
|
|
592
|
+
if (!attached) setIcon(label.querySelector(".track-icon")!, iconName);
|
|
593
|
+
label.querySelector("strong")!.textContent = name;
|
|
594
|
+
return label;
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
const attachedTracks = (
|
|
598
|
+
snapshot: StudioSnapshot,
|
|
599
|
+
slot: string,
|
|
600
|
+
groupId?: string,
|
|
601
|
+
): readonly StudioSnapshot["tracks"][number][] => snapshot.tracks
|
|
602
|
+
.filter((track) => track.binding.lane.attachedTo === slot
|
|
603
|
+
&& (groupId === undefined || track.binding.groupId === groupId))
|
|
604
|
+
.sort((left, right) => (left.binding.lane.order ?? 0) - (right.binding.lane.order ?? 0));
|
|
605
|
+
|
|
606
|
+
const buildSemanticLane = (snapshot: StudioSnapshot): void => {
|
|
607
|
+
if (snapshot.semantic === undefined || snapshot.semantic.segments.length === 0) {
|
|
608
|
+
return;
|
|
609
|
+
}
|
|
610
|
+
const presentation = snapshot.semantic.presentation;
|
|
611
|
+
// This is one semantic ruler group, not a regular Film lane. Its three
|
|
612
|
+
// bands share the same inner inset as ordinary items, so the first pixel
|
|
613
|
+
// of the semantic content aligns with the first pixel of the label card.
|
|
614
|
+
const laneHeight = presentation.lane.heightPx;
|
|
615
|
+
const bandHeight = Math.max(1, (laneHeight - itemMetrics.insetYPx * 2) / 3);
|
|
616
|
+
const label = createTrackLabel(
|
|
617
|
+
presentation.label ?? "Semantic",
|
|
618
|
+
presentation.tone,
|
|
619
|
+
presentation.icon,
|
|
620
|
+
`${snapshot.semantic.segments.length} take${snapshot.semantic.segments.length === 1 ? "" : "s"}`,
|
|
621
|
+
laneHeight,
|
|
622
|
+
);
|
|
623
|
+
label.classList.add("track-label-semantic");
|
|
624
|
+
labels.append(label);
|
|
625
|
+
|
|
626
|
+
const lane = document.createElement("div");
|
|
627
|
+
lane.className = `lane semantic-lane track-tone-${presentation.tone}`;
|
|
628
|
+
lane.style.height = `${laneHeight}px`;
|
|
629
|
+
lane.style.setProperty("--semantic-band-height", `${bandHeight}px`);
|
|
630
|
+
const laneWidth = lanes.clientWidth;
|
|
631
|
+
const nextSemanticNodes: {
|
|
632
|
+
node: HTMLElement;
|
|
633
|
+
id: string;
|
|
634
|
+
start: number;
|
|
635
|
+
end: number;
|
|
636
|
+
kind: "segment" | "word" | "selection" | "moment";
|
|
637
|
+
}[] = [];
|
|
638
|
+
|
|
639
|
+
const bands = ["segment", "word", "intent"] as const;
|
|
640
|
+
for (const [index, kind] of bands.entries()) {
|
|
641
|
+
const band = document.createElement("div");
|
|
642
|
+
band.className = `semantic-band semantic-band-${kind}`;
|
|
643
|
+
band.style.top = `${itemMetrics.insetYPx + index * bandHeight}px`;
|
|
644
|
+
lane.append(band);
|
|
645
|
+
}
|
|
646
|
+
const segmentBand = lane.querySelector<HTMLElement>(".semantic-band-segment")!;
|
|
647
|
+
const wordBand = lane.querySelector<HTMLElement>(".semantic-band-word")!;
|
|
648
|
+
const intentBand = lane.querySelector<HTMLElement>(".semantic-band-intent")!;
|
|
649
|
+
|
|
650
|
+
for (const segment of snapshot.semantic.segments) {
|
|
651
|
+
const from = place(segment.startFrame, snapshot.space.frameCount, zoom.window());
|
|
652
|
+
const to = place(segment.endFrameExclusive, snapshot.space.frameCount, zoom.window());
|
|
653
|
+
if (to <= 0 || from >= 1) continue;
|
|
654
|
+
const node = document.createElement("button");
|
|
655
|
+
node.type = "button";
|
|
656
|
+
node.className = "semantic-cell semantic-segment";
|
|
657
|
+
node.tabIndex = 0;
|
|
658
|
+
node.setAttribute("role", "button");
|
|
659
|
+
node.setAttribute("aria-label", `Segment ${segment.id}`);
|
|
660
|
+
node.dataset.semanticSegment = segment.id;
|
|
661
|
+
node.style.left = `${from * 100}%`;
|
|
662
|
+
const segmentWidth = Math.max(0, to - from) * 100;
|
|
663
|
+
node.style.width = `max(2px, calc(${segmentWidth}% - ${itemMetrics.gapPx}px))`;
|
|
664
|
+
node.title = segment.id;
|
|
665
|
+
const segmentLabel = document.createElement("span");
|
|
666
|
+
segmentLabel.className = "semantic-segment-label";
|
|
667
|
+
segmentLabel.textContent = segment.id;
|
|
668
|
+
const head = document.createElement("div");
|
|
669
|
+
head.className = "semantic-cell-content";
|
|
670
|
+
head.append(segmentLabel);
|
|
671
|
+
node.append(head);
|
|
672
|
+
node.addEventListener("click", (event) => {
|
|
673
|
+
event.stopPropagation();
|
|
674
|
+
if ((event.target as Element).closest(".semantic-word") !== null) return;
|
|
675
|
+
store.selectSemanticSegment(segment.id, "timeline");
|
|
676
|
+
store.seek(segment.startFrame, "timeline");
|
|
677
|
+
});
|
|
678
|
+
node.addEventListener("dblclick", (event) => {
|
|
679
|
+
event.stopPropagation();
|
|
680
|
+
zoom.focus(
|
|
681
|
+
segment.startFrame / Math.max(1, snapshot.space.frameCount),
|
|
682
|
+
segment.endFrameExclusive / Math.max(1, snapshot.space.frameCount),
|
|
683
|
+
);
|
|
684
|
+
});
|
|
685
|
+
node.addEventListener("keydown", (event) => {
|
|
686
|
+
if (event.key !== "Enter" && event.key !== " ") return;
|
|
687
|
+
event.preventDefault();
|
|
688
|
+
store.selectSemanticSegment(segment.id, "timeline");
|
|
689
|
+
});
|
|
690
|
+
nextSemanticNodes.push({ node, id: segment.id, start: segment.startFrame, end: segment.endFrameExclusive, kind: "segment" });
|
|
691
|
+
segmentBand.append(node);
|
|
692
|
+
}
|
|
693
|
+
for (const token of snapshot.semantic.tokens) {
|
|
694
|
+
const wordFrom = place(token.startFrame, snapshot.space.frameCount, zoom.window());
|
|
695
|
+
const wordTo = place(token.endFrameExclusive, snapshot.space.frameCount, zoom.window());
|
|
696
|
+
if (wordTo <= 0 || wordFrom >= 1) continue;
|
|
697
|
+
const word = document.createElement("span");
|
|
698
|
+
word.className = "semantic-cell semantic-word";
|
|
699
|
+
word.dataset.semanticToken = token.id;
|
|
700
|
+
word.setAttribute("aria-label", token.text);
|
|
701
|
+
word.style.left = `${wordFrom * 100}%`;
|
|
702
|
+
const wordWidth = Math.max(0, wordTo - wordFrom);
|
|
703
|
+
word.style.width = `max(1px, calc(${wordWidth * 100}% - ${itemMetrics.gapPx}px))`;
|
|
704
|
+
word.title = token.text;
|
|
705
|
+
const text = document.createElement("span");
|
|
706
|
+
text.className = "semantic-word-label";
|
|
707
|
+
text.textContent = token.text;
|
|
708
|
+
const wordWidthPx = Math.max(1, wordWidth * laneWidth - itemMetrics.gapPx);
|
|
709
|
+
const textWidthPx = measuredText(token.text);
|
|
710
|
+
const contentWidthPx = Math.max(0, wordWidthPx - wordLabelPaddingPx * 2);
|
|
711
|
+
const wasReadable = readableWordLabels.has(token.id);
|
|
712
|
+
const textFitsCell = contentWidthPx >= textWidthPx + (wasReadable ? 0 : wordLabelEnterBufferPx);
|
|
713
|
+
if (textFitsCell) readableWordLabels.add(token.id);
|
|
714
|
+
else readableWordLabels.delete(token.id);
|
|
715
|
+
const textFitsViewport = wordFrom >= 0
|
|
716
|
+
&& wordFrom * laneWidth + wordLabelPaddingPx * 2 + textWidthPx <= laneWidth;
|
|
717
|
+
word.classList.toggle("word-label-visible", textFitsCell && textFitsViewport);
|
|
718
|
+
const wordContent = document.createElement("span");
|
|
719
|
+
wordContent.className = "semantic-cell-content";
|
|
720
|
+
wordContent.append(text);
|
|
721
|
+
word.append(wordContent);
|
|
722
|
+
word.addEventListener("click", (event) => {
|
|
723
|
+
event.stopPropagation();
|
|
724
|
+
store.seek(token.startFrame, "timeline");
|
|
725
|
+
});
|
|
726
|
+
nextSemanticNodes.push({ node: word, id: token.id, start: token.startFrame, end: token.endFrameExclusive, kind: "word" });
|
|
727
|
+
wordBand.append(word);
|
|
728
|
+
}
|
|
729
|
+
for (const selection of snapshot.semantic.selections) {
|
|
730
|
+
const from = place(selection.startFrame, snapshot.space.frameCount, zoom.window());
|
|
731
|
+
const to = place(selection.endFrameExclusive, snapshot.space.frameCount, zoom.window());
|
|
732
|
+
if (to <= 0 || from >= 1) continue;
|
|
733
|
+
const node = document.createElement("button");
|
|
734
|
+
node.type = "button";
|
|
735
|
+
node.className = "semantic-cell semantic-selection";
|
|
736
|
+
node.tabIndex = 0;
|
|
737
|
+
node.setAttribute("aria-label", `Selection ${selection.id}`);
|
|
738
|
+
node.style.left = `${from * 100}%`;
|
|
739
|
+
node.style.width = `max(2px, calc(${Math.max(0, to - from) * 100}% - ${itemMetrics.gapPx}px))`;
|
|
740
|
+
node.title = selection.id;
|
|
741
|
+
const selectionLabel = document.createElement("span");
|
|
742
|
+
selectionLabel.className = "semantic-selection-label";
|
|
743
|
+
selectionLabel.textContent = selection.id;
|
|
744
|
+
const selectionContent = document.createElement("div");
|
|
745
|
+
selectionContent.className = "semantic-cell-content";
|
|
746
|
+
selectionContent.append(selectionLabel);
|
|
747
|
+
node.append(selectionContent);
|
|
748
|
+
node.addEventListener("click", (event) => {
|
|
749
|
+
event.stopPropagation();
|
|
750
|
+
store.selectSemanticSelection(selection.id, "timeline");
|
|
751
|
+
store.seek(selection.startFrame, "timeline");
|
|
752
|
+
});
|
|
753
|
+
intentBand.append(node);
|
|
754
|
+
nextSemanticNodes.push({ node, id: selection.id, start: selection.startFrame, end: selection.endFrameExclusive, kind: "selection" });
|
|
755
|
+
}
|
|
756
|
+
for (const moment of snapshot.semantic.moments) {
|
|
757
|
+
const at = place(moment.frame, snapshot.space.frameCount, zoom.window());
|
|
758
|
+
if (at < 0 || at > 1) continue;
|
|
759
|
+
const node = document.createElement("button");
|
|
760
|
+
node.type = "button";
|
|
761
|
+
node.className = "semantic-moment";
|
|
762
|
+
node.tabIndex = 0;
|
|
763
|
+
node.setAttribute("aria-label", `Moment ${moment.id}`);
|
|
764
|
+
node.style.left = `${at * 100}%`;
|
|
765
|
+
node.title = moment.id;
|
|
766
|
+
node.addEventListener("click", (event) => {
|
|
767
|
+
event.stopPropagation();
|
|
768
|
+
store.selectSemanticMoment(moment.id, "timeline");
|
|
769
|
+
});
|
|
770
|
+
intentBand.append(node);
|
|
771
|
+
nextSemanticNodes.push({ node, id: moment.id, start: moment.frame, end: moment.frame + 1, kind: "moment" });
|
|
772
|
+
}
|
|
773
|
+
rows.append(lane);
|
|
774
|
+
semanticNodes = nextSemanticNodes;
|
|
775
|
+
};
|
|
776
|
+
|
|
777
|
+
const buildTrack = (
|
|
778
|
+
snapshot: StudioSnapshot,
|
|
779
|
+
track: StudioSnapshot["tracks"][number],
|
|
780
|
+
nextClipNodes: { node: HTMLElement; start: number; end: number; id: string }[],
|
|
781
|
+
attached = false,
|
|
782
|
+
): void => {
|
|
783
|
+
const tone = track.binding.tone;
|
|
784
|
+
const freeFrom: number[] = [];
|
|
785
|
+
const rowOf = new Map<string, number>();
|
|
786
|
+
for (const clip of [...track.clips].sort((a, b) => b.stackOrder - a.stackOrder || a.startFrame - b.startFrame)) {
|
|
787
|
+
let row = freeFrom.findIndex((free) => free <= clip.startFrame);
|
|
788
|
+
if (row < 0) { row = freeFrom.length; freeFrom.push(0); }
|
|
789
|
+
freeFrom[row] = clip.endFrameExclusive;
|
|
790
|
+
rowOf.set(clip.id, row);
|
|
791
|
+
}
|
|
792
|
+
const depth = Math.max(1, freeFrom.length);
|
|
793
|
+
const folded = depth > 1 && !opened.has(track.id);
|
|
794
|
+
const shownRows = folded ? 1 : depth;
|
|
795
|
+
const laneHeight = track.binding.lane.heightPx;
|
|
796
|
+
const displayedItems = track.clips.length;
|
|
797
|
+
const label = createTrackLabel(
|
|
798
|
+
displayTrackName(track),
|
|
799
|
+
tone,
|
|
800
|
+
track.binding.icon,
|
|
801
|
+
`${displayedItems} item${displayedItems === 1 ? "" : "s"}`,
|
|
802
|
+
shownRows * laneHeight,
|
|
803
|
+
attached,
|
|
804
|
+
depth > 1,
|
|
805
|
+
);
|
|
806
|
+
label.classList.add(`track-facet-${track.binding.facet}`);
|
|
807
|
+
if (depth > 1) {
|
|
808
|
+
const fold = document.createElement("button");
|
|
809
|
+
fold.type = "button";
|
|
810
|
+
fold.className = "track-fold";
|
|
811
|
+
fold.textContent = folded ? `+${depth - 1}` : "−";
|
|
812
|
+
fold.title = folded ? `Show ${depth} rows` : "Collapse rows";
|
|
813
|
+
fold.setAttribute("aria-expanded", String(!folded));
|
|
814
|
+
fold.addEventListener("click", (event) => {
|
|
815
|
+
event.stopPropagation();
|
|
816
|
+
if (opened.has(track.id)) opened.delete(track.id);
|
|
817
|
+
else opened.add(track.id);
|
|
818
|
+
build(snapshot);
|
|
819
|
+
paint();
|
|
820
|
+
});
|
|
821
|
+
label.querySelector(".track-state")!.append(fold);
|
|
822
|
+
}
|
|
823
|
+
labels.append(label);
|
|
824
|
+
|
|
825
|
+
const lane = document.createElement("div");
|
|
826
|
+
lane.className = `lane track-tone-${tone} track-facet-${track.binding.facet}${attached ? " lane-attached" : ""}`;
|
|
827
|
+
lane.style.height = `${shownRows * laneHeight}px`;
|
|
828
|
+
lane.style.setProperty("--lane-height", `${laneHeight}px`);
|
|
829
|
+
const laneWidth = lanes.clientWidth;
|
|
830
|
+
const materialMounts: {
|
|
831
|
+
readonly target: HTMLElement;
|
|
832
|
+
readonly preview: Extract<StudioSnapshot["tracks"][number]["clips"][number]["display"]["layers"][number], { readonly kind: "preview" }>["preview"];
|
|
833
|
+
}[] = [];
|
|
834
|
+
for (const clip of track.clips) {
|
|
835
|
+
const from = place(clip.startFrame, snapshot.space.frameCount, zoom.window());
|
|
836
|
+
const to = place(clip.endFrameExclusive, snapshot.space.frameCount, zoom.window());
|
|
837
|
+
if (to <= 0 || from >= 1) continue;
|
|
838
|
+
const row = rowOf.get(clip.id) ?? 0;
|
|
839
|
+
if (folded && row > 0) continue;
|
|
840
|
+
const node = document.createElement("button");
|
|
841
|
+
node.type = "button";
|
|
842
|
+
node.className = `clip clip-tone-${tone} clip-facet-${track.binding.facet} clip-chrome-${clip.presentation.chrome}`;
|
|
843
|
+
node.classList.toggle("clip-editable", clip.editHandles.some((handle) => handle.enabled));
|
|
844
|
+
node.dataset.clip = clip.id;
|
|
845
|
+
node.setAttribute("aria-label", clip.display.title);
|
|
846
|
+
node.style.left = `${from * 100}%`;
|
|
847
|
+
node.style.width = `max(2px, calc(${Math.max(0, to - from) * 100}% - ${itemMetrics.gapPx}px))`;
|
|
848
|
+
const visibleWidthPx = visibleItemWidth(from, to, laneWidth);
|
|
849
|
+
node.classList.toggle("clip-preview-wide", visibleWidthPx >= 92);
|
|
850
|
+
node.style.top = `${row * laneHeight}px`;
|
|
851
|
+
node.title = `${clip.display.title} · ${clip.startFrame}-${clip.endFrameExclusive}f`;
|
|
852
|
+
node.innerHTML = `<span class="clip-head"><span class="clip-name"></span><span class="clip-meta"></span></span><span class="clip-body"><span class="clip-layers" aria-hidden="true"></span><span class="clip-phases"></span></span><span class="clip-selection" aria-hidden="true"></span>`;
|
|
853
|
+
const layers = node.querySelector<HTMLElement>(".clip-layers")!;
|
|
854
|
+
clip.display.layers.forEach((layer, index) => {
|
|
855
|
+
const layerNode = document.createElement("span");
|
|
856
|
+
layerNode.className = `clip-layer clip-layer-${layer.kind} clip-layer-role-${layer.role}`;
|
|
857
|
+
layerNode.style.zIndex = String(index + 1);
|
|
858
|
+
if (layer.kind === "text") {
|
|
859
|
+
layerNode.textContent = layer.text;
|
|
860
|
+
} else {
|
|
861
|
+
layerNode.classList.add(`clip-layer-layout-${layer.layout}`);
|
|
862
|
+
materialMounts.push({ target: layerNode, preview: layer.preview });
|
|
863
|
+
}
|
|
864
|
+
layers.append(layerNode);
|
|
865
|
+
});
|
|
866
|
+
const phaseLayer = node.querySelector<HTMLElement>(".clip-phases")!;
|
|
867
|
+
for (const phase of clip.temporal?.phases ?? []) {
|
|
868
|
+
if (phase.endFrameExclusive <= clip.startFrame || phase.startFrame >= clip.endFrameExclusive) continue;
|
|
869
|
+
const phaseNode = document.createElement("span");
|
|
870
|
+
phaseNode.className = `clip-phase clip-phase-${phase.role}`;
|
|
871
|
+
phaseNode.style.left = `${(phase.startFrame - clip.startFrame) / Math.max(1, clip.endFrameExclusive - clip.startFrame) * 100}%`;
|
|
872
|
+
phaseNode.style.width = `${(phase.endFrameExclusive - phase.startFrame) / Math.max(1, clip.endFrameExclusive - clip.startFrame) * 100}%`;
|
|
873
|
+
phaseLayer.append(phaseNode);
|
|
874
|
+
}
|
|
875
|
+
const metaText = clip.presentation.chrome === "point"
|
|
876
|
+
? `${(clip.startFrame / fps(snapshot)).toFixed(2)}s`
|
|
877
|
+
: `${((clip.endFrameExclusive - clip.startFrame) / fps(snapshot)).toFixed(2)}s`;
|
|
878
|
+
const headerLabel = node.querySelector<HTMLElement>(".clip-name")!;
|
|
879
|
+
node.querySelector(".clip-meta")!.textContent = metaText;
|
|
880
|
+
headerLabel.textContent = clip.display.title;
|
|
881
|
+
node.addEventListener("pointerdown", (event) => {
|
|
882
|
+
const rect = node.getBoundingClientRect();
|
|
883
|
+
const edge = Math.min(8, Math.max(4, rect.width / 3));
|
|
884
|
+
const nearStart = event.clientX - rect.left <= edge;
|
|
885
|
+
const nearEnd = rect.right - event.clientX <= edge;
|
|
886
|
+
const handle = clip.editHandles.find((candidate) =>
|
|
887
|
+
candidate.enabled
|
|
888
|
+
&& ((candidate.gesture === "trim-start" && nearStart)
|
|
889
|
+
|| (candidate.gesture === "trim-end" && nearEnd)
|
|
890
|
+
|| (candidate.gesture === "move" && !nearStart && !nearEnd)));
|
|
891
|
+
if (handle !== undefined
|
|
892
|
+
&& (handle.gesture === "move" || handle.gesture === "trim-start" || handle.gesture === "trim-end")) {
|
|
893
|
+
event.stopPropagation();
|
|
894
|
+
const pointerFrame = handle.coordinate === "semantic-anchor"
|
|
895
|
+
? rawFrameAt(event.clientX)
|
|
896
|
+
: frameAt(event.clientX);
|
|
897
|
+
const pointerAnchorIndex = handle.semantic !== undefined
|
|
898
|
+
? nearestAnchorIndex(
|
|
899
|
+
pointerFrame,
|
|
900
|
+
state?.snapshot.semantic?.anchors.map((_, index) => index) ?? [],
|
|
901
|
+
)
|
|
902
|
+
: undefined;
|
|
903
|
+
activeEdit = {
|
|
904
|
+
clip,
|
|
905
|
+
handle,
|
|
906
|
+
startFrame: pointerFrame,
|
|
907
|
+
...(pointerAnchorIndex === undefined ? {} : { pointerAnchorIndex }),
|
|
908
|
+
pointerId: event.pointerId,
|
|
909
|
+
node,
|
|
910
|
+
originalLeft: node.style.left,
|
|
911
|
+
originalWidth: node.style.width,
|
|
912
|
+
};
|
|
913
|
+
node.classList.add("editing");
|
|
914
|
+
try { lanes.setPointerCapture(event.pointerId); } catch { /* local pointer */ }
|
|
915
|
+
store.select(clip.id, "timeline");
|
|
916
|
+
return;
|
|
917
|
+
}
|
|
918
|
+
store.select(clip.id, "timeline");
|
|
919
|
+
});
|
|
920
|
+
node.addEventListener("dblclick", () => store.seek(clip.startFrame, "timeline"));
|
|
921
|
+
nextClipNodes.push({ node, start: clip.startFrame, end: clip.endFrameExclusive, id: clip.id });
|
|
922
|
+
lane.append(node);
|
|
923
|
+
}
|
|
924
|
+
rows.append(lane);
|
|
925
|
+
for (const item of materialMounts) mountMaterialPreview(item.target, item.preview);
|
|
926
|
+
};
|
|
927
|
+
|
|
928
|
+
const build = (snapshot: StudioSnapshot): void => {
|
|
929
|
+
const scrollTop = body.scrollTop;
|
|
930
|
+
labels.replaceChildren();
|
|
931
|
+
rows.replaceChildren();
|
|
932
|
+
semanticNodes = [];
|
|
933
|
+
const corner = document.createElement("div");
|
|
934
|
+
corner.className = "label-corner";
|
|
935
|
+
corner.textContent = "";
|
|
936
|
+
labels.append(corner);
|
|
937
|
+
buildSemanticLane(snapshot);
|
|
938
|
+
const nextClipNodes: { node: HTMLElement; start: number; end: number; id: string }[] = [];
|
|
939
|
+
for (const track of snapshot.tracks) {
|
|
940
|
+
const attachedTo = track.binding.lane.attachedTo;
|
|
941
|
+
if (attachedTo !== undefined) continue;
|
|
942
|
+
buildTrack(snapshot, track, nextClipNodes);
|
|
943
|
+
const slot = track.binding.lane.groupId;
|
|
944
|
+
if (slot === undefined) continue;
|
|
945
|
+
const attachments = attachedTracks(snapshot, slot, track.binding.groupId);
|
|
946
|
+
for (const attachment of attachments) {
|
|
947
|
+
buildTrack(snapshot, attachment, nextClipNodes, true);
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
clipNodes = nextClipNodes;
|
|
951
|
+
drawRuler(snapshot);
|
|
952
|
+
// Replacing every row briefly collapses the scroll surface. Preserve the
|
|
953
|
+
// vertical reading position when a horizontal pan rebuilds the window.
|
|
954
|
+
body.scrollTop = scrollTop;
|
|
955
|
+
};
|
|
956
|
+
|
|
957
|
+
const paint = (): void => {
|
|
958
|
+
if (state === undefined) return;
|
|
959
|
+
const { snapshot, selection, playhead: head } = state;
|
|
960
|
+
const position = place(head.frame, snapshot.space.frameCount, zoom.window()) * lanes.clientWidth;
|
|
961
|
+
if (head.origin === "play" && position > lanes.clientWidth * 0.88 && zoom.window().end < 0.9999) {
|
|
962
|
+
zoom.slide(Math.max(0.25, position / Math.max(1, lanes.clientWidth) - 0.18));
|
|
963
|
+
return;
|
|
964
|
+
}
|
|
965
|
+
playhead.style.transform = `translate3d(${position}px,0,0)`;
|
|
966
|
+
playheadGrip.style.transform = `translate3d(${position - 5}px,0,0)`;
|
|
967
|
+
playhead.classList.toggle("outside", position < 0 || position > lanes.clientWidth);
|
|
968
|
+
playheadGrip.classList.toggle("outside", position < 0 || position > lanes.clientWidth);
|
|
969
|
+
timelineTime.textContent = frameTimecode(snapshot, head.frame);
|
|
970
|
+
for (const item of clipNodes) {
|
|
971
|
+
const selected = selection.kind === "clip" && selection.clipId === item.id;
|
|
972
|
+
item.node.classList.toggle("selected", selected);
|
|
973
|
+
item.node.setAttribute("aria-pressed", String(selected));
|
|
974
|
+
item.node.classList.toggle("live", head.frame >= item.start && head.frame < item.end);
|
|
975
|
+
}
|
|
976
|
+
for (const item of semanticNodes) {
|
|
977
|
+
item.node.classList.toggle("live",
|
|
978
|
+
(item.kind === "segment" || item.kind === "selection")
|
|
979
|
+
&& head.frame >= item.start && head.frame < item.end);
|
|
980
|
+
item.node.classList.toggle("current", item.kind === "word" && head.frame >= item.start && head.frame < item.end);
|
|
981
|
+
const selected = (item.kind === "segment"
|
|
982
|
+
&& selection.kind === "semantic-segment" && selection.segmentId === item.id)
|
|
983
|
+
|| (item.kind === "selection"
|
|
984
|
+
&& selection.kind === "semantic-selection" && selection.selectionId === item.id)
|
|
985
|
+
|| (item.kind === "moment"
|
|
986
|
+
&& selection.kind === "semantic-moment" && selection.momentId === item.id);
|
|
987
|
+
item.node.classList.toggle("selected", selected);
|
|
988
|
+
if (item.kind !== "word") item.node.setAttribute("aria-pressed", String(selected));
|
|
989
|
+
}
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
const schedulePaint = (): void => {
|
|
993
|
+
if (paintFrame !== 0) return;
|
|
994
|
+
paintFrame = requestAnimationFrame(() => {
|
|
995
|
+
paintFrame = 0;
|
|
996
|
+
paint();
|
|
997
|
+
});
|
|
998
|
+
};
|
|
999
|
+
|
|
1000
|
+
const scheduleBuild = (): void => {
|
|
1001
|
+
if (rebuildFrame !== 0 || state === undefined) return;
|
|
1002
|
+
rebuildFrame = requestAnimationFrame(() => {
|
|
1003
|
+
rebuildFrame = 0;
|
|
1004
|
+
if (state === undefined) return;
|
|
1005
|
+
build(state.snapshot);
|
|
1006
|
+
paint();
|
|
1007
|
+
});
|
|
1008
|
+
};
|
|
1009
|
+
|
|
1010
|
+
lanes.addEventListener("wheel", (event) => {
|
|
1011
|
+
if (event.ctrlKey || event.metaKey || event.altKey) {
|
|
1012
|
+
event.preventDefault();
|
|
1013
|
+
const box = lanes.getBoundingClientRect();
|
|
1014
|
+
const at = box.width === 0 ? 0.5 : (event.clientX - box.left) / box.width;
|
|
1015
|
+
zoom.pinch(at, Math.exp(event.deltaY * 0.004));
|
|
1016
|
+
return;
|
|
1017
|
+
}
|
|
1018
|
+
if (event.shiftKey || Math.abs(event.deltaX) > Math.abs(event.deltaY)) {
|
|
1019
|
+
event.preventDefault();
|
|
1020
|
+
const delta = event.shiftKey ? event.deltaY : event.deltaX;
|
|
1021
|
+
zoom.slide(delta / Math.max(1, lanes.clientWidth));
|
|
1022
|
+
}
|
|
1023
|
+
}, { passive: false });
|
|
1024
|
+
|
|
1025
|
+
zoom.subscribe(scheduleBuild);
|
|
1026
|
+
store.subscribe((value) => {
|
|
1027
|
+
state = value;
|
|
1028
|
+
if (value.snapshot.revision !== built) {
|
|
1029
|
+
built = value.snapshot.revision;
|
|
1030
|
+
build(value.snapshot);
|
|
1031
|
+
}
|
|
1032
|
+
schedulePaint();
|
|
1033
|
+
});
|
|
1034
|
+
const resizeObserver = new ResizeObserver(() => {
|
|
1035
|
+
if (state !== undefined) scheduleBuild();
|
|
1036
|
+
});
|
|
1037
|
+
resizeObserver.observe(element);
|
|
1038
|
+
resizeObserver.observe(lanes);
|
|
1039
|
+
|
|
1040
|
+
return { element, zoomIn, zoomOut, fit };
|
|
1041
|
+
}
|