2022-12-06 23:17:58 +01:00
|
|
|
<script setup lang="ts">
|
2022-12-17 17:55:29 +01:00
|
|
|
setupI18n()
|
2022-11-30 01:22:35 +01:00
|
|
|
setupPageHeader()
|
2022-12-09 22:18:21 +01:00
|
|
|
provideGlobalCommands()
|
2022-11-23 03:16:31 +01:00
|
|
|
|
2022-11-27 16:13:04 +01:00
|
|
|
// We want to trigger rerendering the page when account changes
|
2022-12-20 16:56:54 +01:00
|
|
|
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
|
2022-12-22 18:48:41 +01:00
|
|
|
|
2022-12-22 22:10:50 +01:00
|
|
|
const { params, path } = useRoute()
|
2022-11-13 06:34:43 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-24 10:59:07 +01:00
|
|
|
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
|
2022-11-27 16:13:04 +01:00
|
|
|
<NuxtLayout :key="key">
|
2022-12-22 22:10:50 +01:00
|
|
|
<!-- TODO: rework the /[account] routes and the /home (for sign in alias) to remove conditional loading -->
|
|
|
|
<NuxtPage v-if="(!params.account && path === '/home') || isMastoInitialised" />
|
2022-11-13 06:34:43 +01:00
|
|
|
</NuxtLayout>
|
2022-12-18 00:29:16 +01:00
|
|
|
<PWAPrompt />
|
2022-11-13 06:34:43 +01:00
|
|
|
</template>
|