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"
|
2020-11-18 20:18:18 +01:00
|
|
|
import SDK from "../sdk"
|
2021-01-28 15:29:35 +01:00
|
|
|
import { createDataStore, initialise, screenStore, authStore } from "../store"
|
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({}))
|
2020-11-24 12:02:10 +01:00
|
|
|
setContext("data", createDataStore())
|
2020-11-13 16:42:32 +01:00
|
|
|
|
2020-11-19 19:39:22 +01:00
|
|
|
let loaded = false
|
|
|
|
|
|
|
|
// 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()
|
2020-11-19 19:39:22 +01:00
|
|
|
loaded = true
|
|
|
|
})
|
2020-11-13 16:42:32 +01:00
|
|
|
</script>
|
|
|
|
|
2020-12-02 19:10:46 +01:00
|
|
|
{#if loaded && $screenStore.activeLayout}
|
2020-11-27 17:36:31 +01:00
|
|
|
<Component definition={$screenStore.activeLayout.props} />
|
2021-01-27 16:52:12 +01:00
|
|
|
<NotificationDisplay />
|
2021-01-22 12:31:56 +01:00
|
|
|
{/if}
|