egirlskey/packages/frontend/src/pages/user/index.vue

120 lines
3.1 KiB
Vue
Raw Normal View History

<template>
<MkStickyContainer>
2022-07-01 09:55:45 +00:00
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
<div>
2022-12-30 04:37:14 +00:00
<Transition name="fade" mode="out-in">
2022-07-01 09:55:45 +00:00
<div v-if="user">
<XHome v-if="tab === 'home'" :user="user"/>
2023-01-02 01:18:47 +00:00
<XActivity v-else-if="tab === 'activity'" :user="user"/>
2022-07-01 09:55:45 +00:00
<XReactions v-else-if="tab === 'reactions'" :user="user"/>
<XClips v-else-if="tab === 'clips'" :user="user"/>
<XPages v-else-if="tab === 'pages'" :user="user"/>
<XGallery v-else-if="tab === 'gallery'" :user="user"/>
</div>
<MkError v-else-if="error" @retry="fetchUser()"/>
<MkLoading v-else/>
2022-12-30 04:37:14 +00:00
</Transition>
</div>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { defineAsyncComponent, computed, inject, onMounted, onUnmounted, watch } from 'vue';
import calcAge from 's-age';
import * as Acct from 'misskey-js/built/acct';
import * as misskey from 'misskey-js';
2021-11-11 17:02:25 +00:00
import { getScrollPosition } from '@/scripts/scroll';
import number from '@/filters/number';
import { userPage, acct as getAcct } from '@/filters/user';
import * as os from '@/os';
import { useRouter } from '@/router';
import { definePageMetadata } from '@/scripts/page-metadata';
import { i18n } from '@/i18n';
import { $i } from '@/account';
2022-07-01 09:55:45 +00:00
const XHome = defineAsyncComponent(() => import('./home.vue'));
2023-01-02 01:18:47 +00:00
const XActivity = defineAsyncComponent(() => import('./activity.vue'));
const XReactions = defineAsyncComponent(() => import('./reactions.vue'));
const XClips = defineAsyncComponent(() => import('./clips.vue'));
const XPages = defineAsyncComponent(() => import('./pages.vue'));
const XGallery = defineAsyncComponent(() => import('./gallery.vue'));
const props = withDefaults(defineProps<{
acct: string;
page?: string;
}>(), {
2022-07-01 09:55:45 +00:00
page: 'home',
});
const router = useRouter();
2022-07-01 09:55:45 +00:00
let tab = $ref(props.page);
let user = $ref<null | misskey.entities.UserDetailed>(null);
let error = $ref(null);
function fetchUser(): void {
if (props.acct == null) return;
user = null;
os.api('users/show', Acct.parse(props.acct)).then(u => {
user = u;
}).catch(err => {
error = err;
});
}
watch(() => props.acct, fetchUser, {
immediate: true,
});
const headerActions = $computed(() => []);
const headerTabs = $computed(() => user ? [{
2022-07-01 09:55:45 +00:00
key: 'home',
title: i18n.ts.overview,
icon: 'ti ti-home',
2023-01-02 01:18:47 +00:00
}, {
key: 'activity',
title: i18n.ts.activity,
icon: 'ti ti-chart-line',
}, ...($i && ($i.id === user.id)) || user.publicReactions ? [{
2022-07-01 09:55:45 +00:00
key: 'reactions',
title: i18n.ts.reaction,
icon: 'ti ti-mood-happy',
}] : [], {
2022-07-01 09:55:45 +00:00
key: 'clips',
title: i18n.ts.clips,
icon: 'ti ti-paperclip',
}, {
2022-07-01 09:55:45 +00:00
key: 'pages',
title: i18n.ts.pages,
2022-12-19 23:35:49 +00:00
icon: 'ti ti-news',
}, {
2022-07-01 09:55:45 +00:00
key: 'gallery',
title: i18n.ts.gallery,
icon: 'ti ti-icons',
}] : null);
definePageMetadata(computed(() => user ? {
icon: 'ti ti-user',
title: user.name ? `${user.name} (@${user.username})` : `@${user.username}`,
subtitle: `@${getAcct(user)}`,
userName: user,
avatar: user,
path: `/@${user.username}`,
share: {
title: user.name,
},
} : null));
</script>
<style lang="scss" scoped>
2021-04-17 02:40:47 +00:00
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.125s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>