2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-07-01 09:55:45 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<div>
|
2022-06-20 08:38:49 +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"/>
|
|
|
|
<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>
|
2022-07-18 12:43:31 +00:00
|
|
|
<MkError v-else-if="error" @retry="fetchUser()"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkLoading v-else/>
|
|
|
|
</transition>
|
|
|
|
</div>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<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';
|
2022-06-20 08:38:49 +00:00
|
|
|
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'));
|
2022-06-20 08:38:49 +00:00
|
|
|
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',
|
2022-06-20 08:38:49 +00:00
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const router = useRouter();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-07-01 09:55:45 +00:00
|
|
|
let tab = $ref(props.page);
|
2022-06-20 08:38:49 +00:00
|
|
|
let user = $ref<null | misskey.entities.UserDetailed>(null);
|
|
|
|
let error = $ref(null);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
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;
|
|
|
|
});
|
|
|
|
}
|
2020-10-24 16:21:41 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
watch(() => props.acct, fetchUser, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => user ? [{
|
2022-07-01 09:55:45 +00:00
|
|
|
key: 'home',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.overview,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-home',
|
2022-06-20 08:38:49 +00:00
|
|
|
}, ...($i && ($i.id === user.id)) || user.publicReactions ? [{
|
2022-07-01 09:55:45 +00:00
|
|
|
key: 'reactions',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.reaction,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-mood-happy',
|
2022-06-20 08:38:49 +00:00
|
|
|
}] : [], {
|
2022-07-01 09:55:45 +00:00
|
|
|
key: 'clips',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.clips,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-paperclip',
|
2022-06-20 08:38:49 +00:00
|
|
|
}, {
|
2022-07-01 09:55:45 +00:00
|
|
|
key: 'pages',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.pages,
|
|
|
|
icon: 'fas fa-file-alt',
|
|
|
|
}, {
|
2022-07-01 09:55:45 +00:00
|
|
|
key: 'gallery',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.gallery,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-icons',
|
2022-06-20 08:38:49 +00:00
|
|
|
}] : null);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => user ? {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-user',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: user.name ? `${user.name} (@${user.username})` : `@${user.username}`,
|
|
|
|
subtitle: `@${getAcct(user)}`,
|
|
|
|
userName: user,
|
|
|
|
avatar: user,
|
|
|
|
path: `/@${user.username}`,
|
|
|
|
share: {
|
|
|
|
title: user.name,
|
|
|
|
},
|
|
|
|
} : null));
|
2020-01-29 19:37:25 +00:00
|
|
|
</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;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|