2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
2022-11-28 10:14:58 +00:00
|
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
|
2022-11-15 13:54:13 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
2022-11-27 15:13:04 +00:00
|
|
|
alias: ['/signin/callback'],
|
2022-11-15 13:54:13 +00:00
|
|
|
})
|
2022-11-15 13:50:41 +00:00
|
|
|
|
2022-11-27 15:13:04 +00:00
|
|
|
if (useRoute().path === '/signin/callback') {
|
|
|
|
// This only cleans up the URL; page content should stay the same
|
|
|
|
useRouter().push('/home')
|
|
|
|
}
|
|
|
|
|
2022-11-26 15:42:58 +00:00
|
|
|
const paginator = useMasto().timelines.getHomeIterable()
|
2022-11-28 11:18:45 +00:00
|
|
|
const stream = await useMasto().stream.streamUser()
|
|
|
|
onBeforeUnmount(() => stream.disconnect())
|
2022-11-28 10:14:58 +00:00
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
useHead({
|
|
|
|
title: () => t('nav_side.home'),
|
|
|
|
})
|
2022-11-15 13:50:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-28 10:14:58 +00:00
|
|
|
<span text-lg font-bold>{{ $t('nav_side.home') }}</span>
|
2022-11-15 13:50:41 +00:00
|
|
|
</template>
|
|
|
|
<slot>
|
2022-11-24 07:53:27 +00:00
|
|
|
<PublishWidget draft-key="home" border="b base" />
|
2022-11-28 11:18:45 +00:00
|
|
|
<TimelinePaginator v-bind="{ paginator, stream }" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|