2022-11-15 13:50:41 +00:00
|
|
|
<script setup lang="ts">
|
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-15 13:50:41 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent>
|
|
|
|
<template #title>
|
2022-11-23 08:08:49 +00:00
|
|
|
<span text-lg font-bold>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-15 13:54:13 +00:00
|
|
|
<TimelinePaginator :paginator="paginator" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</slot>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|