mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
36 lines
1 KiB
Vue
36 lines
1 KiB
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
name: 'list',
|
|
})
|
|
|
|
const params = useRoute().params
|
|
const listId = $(computedEager(() => params.list as string))
|
|
|
|
const { client } = $(useMasto())
|
|
const { data: listInfo, refresh } = $(await useAsyncData(() => client.v1.lists.fetch(listId), { default: () => shallowRef() }))
|
|
|
|
const paginator = client.v1.timelines.listList(listId)
|
|
const stream = useStreaming(client => client.v1.stream.streamListTimeline(listId))
|
|
|
|
if (listInfo) {
|
|
useHeadFixed({
|
|
title: () => `${listInfo.title}`,
|
|
})
|
|
}
|
|
|
|
onReactivated(() => {
|
|
// Silently update data when reentering the page
|
|
// The user will see the previous content first, and any changes will be updated to the UI when the request is completed
|
|
refresh()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back>
|
|
<template #title>
|
|
<span text-lg font-bold>{{ listInfo ? listInfo.title : $t('nav.list') }}</span>
|
|
</template>
|
|
<TimelinePaginator v-bind="{ paginator, stream }" :preprocess="reorderedTimeline" context="home" />
|
|
</MainContent>
|
|
</template>
|