import ClientApp from "./components/ClientApp.svelte" import { builderStore } from "./store" let app const loadBudibase = () => { // Update builder store with any builder flags builderStore.set({ inBuilder: !!window["##BUDIBASE_IN_BUILDER##"], appId: window["##BUDIBASE_APP_ID##"], layout: window["##BUDIBASE_PREVIEW_LAYOUT##"], screen: window["##BUDIBASE_PREVIEW_SCREEN##"], selectedComponentId: window["##BUDIBASE_SELECTED_COMPONENT_ID##"], previewId: window["##BUDIBASE_PREVIEW_ID##"], previewType: window["##BUDIBASE_PREVIEW_TYPE##"], }) // Create app if one hasn't been created yet if (!app) { app = new ClientApp({ target: window.document.body, }) } } // Attach to window so the HTML template can call this when it loads window.loadBudibase = loadBudibase