import { WORLDSHAPER_THEME_PRESETS } from "./themePresets"; import { WORLDSHAPER_STUDIO_MARKUP_SHELL, WORLDSHAPER_STUDIO_MARKUP_SIDEBAR, WORLDSHAPER_STUDIO_MARKUP_STAGE, } from "./domMarkupSections"; export function buildWorldshaperStudioPopupMarkup(): string { const themePresetButtons = WORLDSHAPER_THEME_PRESETS.map((preset) => ` `).join(""); return ( WORLDSHAPER_STUDIO_MARKUP_SHELL.replace("__THEME_PRESET_BUTTONS__", themePresetButtons) + WORLDSHAPER_STUDIO_MARKUP_SIDEBAR + WORLDSHAPER_STUDIO_MARKUP_STAGE ); } export function getWorldshaperStudioBodyMarkup(): string { return buildWorldshaperStudioPopupMarkup() .replace(/^/i, "") .replace(/<\/body>\s*$/i, ""); }