Files
hyperframes/docs/public/catalog/components/morph-text.json
Miguel Ángel 9734578e60 feat(registry): bring back the video-primitive moves (#3169)
Restores the 208 catalog items reverted after their previews 404'd in
production, this time on the payload mechanism rather than the .html files
that caused the outage.

The generator no longer writes a preview document to docs/public. That writer,
and the machinery under it, existed only to produce files the docs host
discards, so it is gone rather than bypassed. Items now embed the composition
itself via a payload, which is what the previous change already does for the
items that were already in the catalog.

The variables explorer is parked, not restored: it drove its preview through
the same unpublished .html path, so it would have shown an empty frame. Items
that declare variables get the live player plus the static variables table, and
reconnecting the explorer to payloads is a follow-up.
2026-08-10 18:46:03 -04:00

1 line
7.6 KiB
JSON

{"html":"<!-- demo.html - used by scripts/generate-catalog-previews.ts to render the\n catalog preview video. Not installed by `hyperframes add morph-text`.\n Keep in sync with morph-text.html. -->\n<!doctype html>\n<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\" />\n <meta name=\"viewport\" content=\"width=1920, height=1080\" />\n <title>Morph Text</title>\n <link rel=\"preconnect\" href=\"https://fonts.googleapis.com\" />\n <link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin />\n <link\n href=\"https://fonts.googleapis.com/css2?family=Figtree:wght@900&display=block\"\n rel=\"stylesheet\"\n />\n <script src=\"https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js\"></script>\n <style>\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n html,\n body {\n margin: 0;\n width: 1920px;\n height: 1080px;\n overflow: hidden;\n background: var(--bg, #fff);\n }\n\n #morph-text {\n position: relative;\n width: 1920px;\n height: 1080px;\n }\n\n /* Word list: hidden source of truth - edit <li> items in Studio. */\n #morph-words {\n display: none;\n list-style: none;\n margin: 0;\n padding: 0;\n }\n\n #morph-filter {\n position: absolute;\n width: 0;\n height: 0;\n overflow: hidden;\n pointer-events: none;\n }\n\n #morph-wrapper {\n position: absolute;\n top: 50%;\n left: 0;\n transform: translateY(-50%);\n width: 1920px;\n height: 210px;\n filter: drop-shadow(0 10px 44px rgba(0, 0, 0, 0.5))\n drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25));\n }\n\n #morph-display {\n width: 100%;\n height: 100%;\n filter: none;\n }\n\n #morph-a,\n #morph-b {\n position: absolute;\n width: 100%;\n display: inline-block;\n text-align: center;\n font-size: 120pt;\n font-weight: 900;\n line-height: 1;\n user-select: none;\n }\n </style>\n </head>\n <body>\n <div\n id=\"morph-text\"\n data-composition-id=\"morph-text\"\n data-timeline-locked\n data-width=\"1920\"\n data-height=\"1080\"\n data-duration=\"15\"\n data-fps=\"30\"\n data-morph-speed=\"1\"\n data-morph-pause=\"1.5\"\n >\n <!--\n Edit words here - one <li> per word or phrase.\n data-font : CSS font-family (e.g. \"'Figtree', sans-serif\")\n data-color : text color hex (e.g. \"#000000\")\n Adjust data-morph-speed (seconds per morph) and data-morph-pause (hold time) above.\n -->\n <ol id=\"morph-words\" aria-hidden=\"true\">\n <li data-font=\"'Figtree', sans-serif\" data-color=\"#000000\">Do more with less.</li>\n <li data-font=\"'Figtree', sans-serif\" data-color=\"#000000\">Built for what's next.</li>\n <li data-font=\"'Figtree', sans-serif\" data-color=\"#000000\">Fast. Focused. Powerful.</li>\n <li data-font=\"'Figtree', sans-serif\" data-color=\"#000000\">Your work, amplified.</li>\n <li data-font=\"'Figtree', sans-serif\" data-color=\"#000000\">Start free today.</li>\n </ol>\n\n <svg id=\"morph-filter\" aria-hidden=\"true\" focusable=\"false\">\n <defs>\n <filter id=\"morph-threshold\">\n <feColorMatrix\n in=\"SourceGraphic\"\n type=\"matrix\"\n values=\"1 0 0 0 0\n 0 1 0 0 0\n 0 0 1 0 0\n 0 0 0 255 -100\"\n />\n </filter>\n </defs>\n </svg>\n\n <div id=\"morph-wrapper\">\n <div id=\"morph-display\">\n <span id=\"morph-a\"></span>\n <span id=\"morph-b\"></span>\n </div>\n </div>\n </div>\n\n <script>\n (function () {\n \"use strict\";\n\n var container = document.getElementById(\"morph-text\");\n var display = document.getElementById(\"morph-display\");\n var elA = document.getElementById(\"morph-a\");\n var elB = document.getElementById(\"morph-b\");\n\n var words = Array.from(document.querySelectorAll(\"#morph-words li\"))\n .map(function (el) {\n return {\n text: el.textContent.trim(),\n font: el.dataset.font || \"'Figtree', sans-serif\",\n color: el.dataset.color || \"#111111\",\n };\n })\n .filter(function (w) {\n return w.text;\n });\n\n if (words.length < 2) {\n words = [\n { text: \"Morph\", font: \"'Figtree', sans-serif\", color: \"#111111\" },\n { text: \"Text\", font: \"'Figtree', sans-serif\", color: \"#111111\" },\n ];\n }\n\n var morphSpeed = parseFloat(container.dataset.morphSpeed || \"1\");\n var morphPause = parseFloat(container.dataset.morphPause || \"1.5\");\n var duration = parseFloat(container.dataset.duration || \"9\");\n var stepDur = morphSpeed + morphPause;\n var totalWordDur = words.length * stepDur;\n\n function applyMorph(T) {\n var t = T % totalWordDur;\n var stepIdx = Math.floor(t / stepDur);\n var stepT = t - stepIdx * stepDur;\n var frac = Math.min(stepT / morphSpeed, 1);\n\n var wA = words[stepIdx % words.length];\n var wB = words[(stepIdx + 1) % words.length];\n\n elA.textContent = wA.text;\n elA.style.fontFamily = \"var(--font-display, \" + wA.font + \")\";\n elA.style.color = \"var(--fg, \" + wA.color + \")\";\n\n elB.textContent = wB.text;\n elB.style.fontFamily = \"var(--font-display, \" + wB.font + \")\";\n elB.style.color = \"var(--fg, \" + wB.color + \")\";\n\n if (frac <= 0) {\n display.style.filter = \"none\";\n elA.style.filter = \"\";\n elA.style.opacity = \"1\";\n elB.style.filter = \"\";\n elB.style.opacity = \"0\";\n } else if (frac >= 1) {\n display.style.filter = \"none\";\n elA.style.filter = \"\";\n elA.style.opacity = \"0\";\n elB.style.filter = \"\";\n elB.style.opacity = \"1\";\n } else {\n display.style.filter = \"url(#morph-threshold)\";\n var blurB = Math.max(0, Math.min(8 / frac - 8, 100));\n var blurA = Math.max(0, Math.min(8 / (1 - frac) - 8, 100));\n elB.style.filter = \"blur(\" + blurB + \"px)\";\n elB.style.opacity = frac;\n elA.style.filter = \"blur(\" + blurA + \"px)\";\n elA.style.opacity = 1 - frac;\n }\n }\n\n if (matchMedia(\"(prefers-reduced-motion: reduce)\").matches) {\n elA.textContent = words[0].text;\n elA.style.fontFamily = \"var(--font-display, \" + words[0].font + \")\";\n elA.style.color = \"var(--fg, \" + words[0].color + \")\";\n elA.style.opacity = \"1\";\n display.style.filter = \"none\";\n return;\n }\n\n var proxy = { t: 0 };\n var tl = gsap.timeline({ paused: true });\n\n tl.to(proxy, {\n t: duration,\n duration: duration,\n ease: \"none\",\n onUpdate: function () {\n applyMorph(proxy.t);\n },\n });\n\n applyMorph(0);\n tl.seek(0);\n\n window.__timelines = window.__timelines || {};\n window.__timelines[\"morph-text\"] = tl;\n })();\n </script>\n </body>\n</html>\n"}