mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 10:14:30 +00:00
119 lines
4.5 KiB
TypeScript
119 lines
4.5 KiB
TypeScript
export type StudioFeatureFlagEnv = Record<string, boolean | string | undefined>;
|
|
|
|
const STUDIO_PREVIEW_MANUAL_DRAGGING_ENV = "VITE_STUDIO_ENABLE_PREVIEW_MANUAL_DRAGGING";
|
|
const STUDIO_INSPECTOR_PANELS_ENV = "VITE_STUDIO_ENABLE_INSPECTOR_PANELS";
|
|
const TRUTHY_ENV_VALUES = new Set(["1", "true", "yes", "on", "enabled"]);
|
|
const FALSY_ENV_VALUES = new Set(["0", "false", "no", "off", "disabled"]);
|
|
|
|
export function resolveStudioBooleanEnvFlag(
|
|
env: StudioFeatureFlagEnv,
|
|
names: string[],
|
|
fallback: boolean,
|
|
): boolean {
|
|
for (const name of names) {
|
|
const value = env[name];
|
|
if (typeof value === "boolean") return value;
|
|
if (typeof value !== "string") continue;
|
|
|
|
const normalized = value.trim().toLowerCase();
|
|
if (!normalized) continue;
|
|
if (TRUTHY_ENV_VALUES.has(normalized)) return true;
|
|
if (FALSY_ENV_VALUES.has(normalized)) return false;
|
|
}
|
|
|
|
return fallback;
|
|
}
|
|
|
|
// `import.meta.env` is a Vite-only extension. In non-Vite ESM hosts
|
|
// (Next.js / Turbopack, Node, jest in some configs) it's undefined,
|
|
// and downstream `env[name]` reads would crash. Fall back to `{}` so
|
|
// every flag resolves to its declared default outside Vite. Direct
|
|
// property access keeps Vite's compile-time transform happy.
|
|
//
|
|
// When the studio is served as a pre-built SPA by the embedded Hono server,
|
|
// `import.meta.env` values were baked at build time. The server injects
|
|
// `window.__HF_STUDIO_ENV__` with any `VITE_STUDIO_*` env vars from the
|
|
// user's shell, so runtime overrides take precedence over baked defaults.
|
|
const runtimeEnv =
|
|
typeof window !== "undefined"
|
|
? ((window as Window & { __HF_STUDIO_ENV__?: StudioFeatureFlagEnv }).__HF_STUDIO_ENV__ ?? {})
|
|
: {};
|
|
const env = { ...(import.meta.env ?? {}), ...runtimeEnv } as StudioFeatureFlagEnv;
|
|
|
|
export const STUDIO_PREVIEW_MANUAL_EDITING_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
[STUDIO_PREVIEW_MANUAL_DRAGGING_ENV, "VITE_STUDIO_PREVIEW_MANUAL_EDITING_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_INSPECTOR_PANELS_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
[STUDIO_INSPECTOR_PANELS_ENV, "VITE_STUDIO_INSPECTOR_PANELS_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_BLOCKS_PANEL_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_ENABLE_BLOCKS_PANEL", "VITE_STUDIO_BLOCKS_PANEL_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_GSAP_PANEL_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_ENABLE_GSAP_PANEL", "VITE_STUDIO_GSAP_PANEL_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_KEYFRAMES_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_ENABLE_KEYFRAMES", "VITE_STUDIO_KEYFRAMES_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_RAZOR_TOOL_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_ENABLE_RAZOR_TOOL", "VITE_STUDIO_RAZOR_TOOL_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_PREVIEW_SELECTION_ENABLED = STUDIO_INSPECTOR_PANELS_ENABLED;
|
|
|
|
// Stage 7 Step 3c: SDK cutover — routes inline-style ops through SDK dispatch
|
|
// instead of the server patch-element API. Default false; enable via
|
|
// VITE_STUDIO_SDK_CUTOVER_ENABLED=true. Requires SDK session to be open.
|
|
export const STUDIO_SDK_CUTOVER_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_SDK_CUTOVER_ENABLED"],
|
|
false,
|
|
);
|
|
|
|
/** Explicit per-operation-family canary selection; the master flag alone enables nothing. */
|
|
export const STUDIO_SDK_CUTOVER_FAMILIES = resolveEnabledSdkFamilies(
|
|
env,
|
|
STUDIO_SDK_CUTOVER_ENABLED,
|
|
);
|
|
|
|
// Resolver-parity tripwire (telemetry-only, decoupled from cutover).
|
|
// Runs the SDK resolver alongside any edit and emits sdk_resolver_shadow on
|
|
// divergence. Default true; disable via VITE_STUDIO_SDK_RESOLVER_SHADOW_ENABLED=false.
|
|
// Soak gate: retire once zero element_not_found divergences over a clean window.
|
|
export const STUDIO_SDK_RESOLVER_SHADOW_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_SDK_RESOLVER_SHADOW_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
// Studio inspector redesign ("Ledger, flat" — design_handoff_studio_inspector):
|
|
// flat identity header/footer/groups. Default true as of v0.7.59+ bug-fix pass
|
|
// (right-aligned values, Stroke select-only, promote-badge overlap, Layout/
|
|
// Style section gating); disable via VITE_STUDIO_FLAT_INSPECTOR_ENABLED=false
|
|
// to fall back to the legacy panel.
|
|
export const STUDIO_FLAT_INSPECTOR_ENABLED = resolveStudioBooleanEnvFlag(
|
|
env,
|
|
["VITE_STUDIO_ENABLE_FLAT_INSPECTOR", "VITE_STUDIO_FLAT_INSPECTOR_ENABLED"],
|
|
true,
|
|
);
|
|
|
|
export const STUDIO_MANUAL_EDITING_DISABLED_TITLE = "Manual editing is temporarily disabled";
|
|
import { resolveEnabledSdkFamilies } from "../../utils/sdkCutoverPolicy";
|