1
0
elk/pages/[[server]]/@[account]/index/media.vue

25 lines
667 B
Vue
Raw Normal View History

2022-12-14 06:01:25 +09:00
<script setup lang="ts">
definePageMeta({ name: 'account-media' })
const { t } = useI18n()
const params = useRoute().params
const handle = $(computedEager(() => params.account as string))
const account = await fetchAccountByHandle(handle)
2022-12-14 06:01:25 +09:00
2023-01-08 15:21:09 +09:00
const paginator = useMasto().v1.accounts.listStatuses(account.id, { onlyMedia: true, excludeReplies: false })
2022-12-14 06:01:25 +09:00
if (account) {
useHeadFixed({
title: () => `${t('tab.media')} | ${getDisplayName(account)} (@${account.acct})`,
2022-12-14 06:01:25 +09:00
})
}
</script>
<template>
<div>
<AccountTabs />
<TimelinePaginator :paginator="paginator" :preprocess="reorderedTimeline" context="account" :account="account" />
2022-12-14 06:01:25 +09:00
</div>
</template>