2020-11-13 16:42:32 +01:00
|
|
|
<script>
|
2020-11-25 10:50:51 +01:00
|
|
|
import { writable } from "svelte/store"
|
2020-11-19 19:39:22 +01:00
|
|
|
import { setContext, onMount } from "svelte"
|
2020-11-13 16:42:32 +01:00
|
|
|
import Component from "./Component.svelte"
|
2021-01-27 16:52:12 +01:00
|
|
|
import NotificationDisplay from "./NotificationDisplay.svelte"
|
2021-02-05 12:44:33 +01:00
|
|
|
import Provider from "./Provider.svelte"
|
2020-11-18 20:18:18 +01:00
|
|
|
import SDK from "../sdk"
|
2021-02-01 19:51:22 +01:00
|
|
|
import {
|
|
|
|
createContextStore,
|
|
|
|
initialise,
|
|
|
|
screenStore,
|
|
|
|
authStore,
|
2021-05-20 15:47:17 +02:00
|
|
|
routeStore,
|
|
|
|
builderStore,
|
2021-02-01 19:51:22 +01:00
|
|
|
} from "../store"
|
2021-02-26 15:04:31 +01:00
|
|
|
import { TableNames, ActionTypes } from "../constants"
|
2021-06-10 19:42:41 +02:00
|
|
|
import SettingsBar from "./preview/SettingsBar.svelte"
|
|
|
|
import SelectionIndicator from "./preview/SelectionIndicator.svelte"
|
|
|
|
import HoverIndicator from "./preview/HoverIndicator.svelte"
|
2020-11-13 16:42:32 +01:00
|
|
|
|
2020-11-20 10:50:10 +01:00
|
|
|
// Provide contexts
|
|
|
|
setContext("sdk", SDK)
|
2020-11-25 10:50:51 +01:00
|
|
|
setContext("component", writable({}))
|
2021-02-01 19:51:22 +01:00
|
|
|
setContext("context", createContextStore())
|
2020-11-13 16:42:32 +01:00
|
|
|
|
2021-05-20 15:47:17 +02:00
|
|
|
let dataLoaded = false
|
2020-11-19 19:39:22 +01:00
|
|
|
|
|
|
|
// Load app config
|
|
|
|
onMount(async () => {
|
2020-12-11 15:24:19 +01:00
|
|
|
await initialise()
|
2021-01-28 15:29:35 +01:00
|
|
|
await authStore.actions.fetchUser()
|
2021-05-20 15:47:17 +02:00
|
|
|
dataLoaded = true
|
2020-11-19 19:39:22 +01:00
|
|
|
})
|
2021-02-26 15:04:31 +01:00
|
|
|
|
|
|
|
// Register this as a refreshable datasource so that user changes cause
|
|
|
|
// the user object to be refreshed
|
|
|
|
$: actions = [
|
|
|
|
{
|
|
|
|
type: ActionTypes.RefreshDatasource,
|
|
|
|
callback: () => authStore.actions.fetchUser(),
|
2021-03-16 14:54:34 +01:00
|
|
|
metadata: { dataSource: { type: "table", tableId: TableNames.USERS } },
|
2021-02-26 15:04:31 +01:00
|
|
|
},
|
|
|
|
]
|
2021-05-20 15:47:17 +02:00
|
|
|
|
|
|
|
// Redirect to home layout if no matching route
|
|
|
|
$: {
|
|
|
|
if (dataLoaded && $routeStore.routerLoaded && !$routeStore.activeRoute) {
|
|
|
|
if ($authStore) {
|
|
|
|
routeStore.actions.navigate("/")
|
|
|
|
} else {
|
|
|
|
const returnUrl = `${window.location.pathname}${window.location.hash}`
|
|
|
|
const encodedUrl = encodeURIComponent(returnUrl)
|
|
|
|
window.location = `/builder/auth/login?returnUrl=${encodedUrl}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-13 16:42:32 +01:00
|
|
|
</script>
|
|
|
|
|
2021-05-20 15:47:17 +02:00
|
|
|
{#if dataLoaded && $screenStore.activeLayout}
|
2021-06-08 09:00:54 +02:00
|
|
|
<div
|
|
|
|
id="spectrum-root"
|
|
|
|
lang="en"
|
|
|
|
dir="ltr"
|
|
|
|
class="spectrum spectrum--medium spectrum--light"
|
|
|
|
>
|
2021-05-13 17:32:52 +02:00
|
|
|
<Provider key="user" data={$authStore} {actions}>
|
2021-06-08 16:16:37 +02:00
|
|
|
<div id="app-root">
|
|
|
|
<Component definition={$screenStore.activeLayout.props} />
|
|
|
|
</div>
|
2021-05-13 17:32:52 +02:00
|
|
|
<NotificationDisplay />
|
2021-06-10 16:13:51 +02:00
|
|
|
<!-- Key block needs to be outside the if statement or it breaks -->
|
2021-06-08 15:19:03 +02:00
|
|
|
{#key $builderStore.selectedComponentId}
|
2021-06-10 16:13:51 +02:00
|
|
|
{#if $builderStore.inBuilder}
|
2021-06-08 09:00:54 +02:00
|
|
|
<SettingsBar />
|
2021-06-08 15:19:03 +02:00
|
|
|
{/if}
|
|
|
|
{/key}
|
2021-06-10 16:13:51 +02:00
|
|
|
<!--
|
|
|
|
We don't want to key these by componentID as they control their own
|
|
|
|
re-mounting to avoid flashes.
|
|
|
|
-->
|
|
|
|
{#if $builderStore.inBuilder}
|
|
|
|
<SelectionIndicator />
|
|
|
|
<HoverIndicator />
|
|
|
|
{/if}
|
2021-05-13 17:32:52 +02:00
|
|
|
</Provider>
|
|
|
|
</div>
|
2021-01-22 12:31:56 +01:00
|
|
|
{/if}
|
2021-05-13 17:32:52 +02:00
|
|
|
|
|
|
|
<style>
|
2021-06-08 16:16:37 +02:00
|
|
|
#spectrum-root {
|
2021-05-13 17:32:52 +02:00
|
|
|
height: 100%;
|
2021-06-08 16:16:37 +02:00
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#app-root {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2021-05-13 17:32:52 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
</style>
|