feat: move timelines to components (#514)

This commit is contained in:
patak 2022-12-22 18:48:41 +01:00 committed by GitHub
parent 6b7a8baa8e
commit fef082af13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 123 additions and 68 deletions

View file

@ -5,12 +5,15 @@ provideGlobalCommands()
// We want to trigger rerendering the page when account changes
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
const { params } = useRoute()
</script>
<template>
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
<NuxtLayout :key="key">
<NuxtPage v-if="isMastoInitialised" />
<!-- TODO: rework the /[account] routes to remove conditional loading -->
<NuxtPage v-if="!params.server || isMastoInitialised" />
</NuxtLayout>
<PWAPrompt />
</template>