rudeshark.net/packages/client/src/pages/user/index.vue

162 lines
3.8 KiB
Vue
Raw Normal View History

<template>
<MkStickyContainer>
2022-07-01 11:55:45 +02:00
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
2022-09-14 06:33:03 +02:00
<div v-if="user">
<swiper
:modules="[Virtual]"
:space-between="20"
:virtual="true"
:allow-touch-move="!(deviceKind === 'desktop' && !defaultStore.state.swipeOnDesktop)"
2022-09-14 06:33:03 +02:00
@swiper="setSwiperRef"
@slide-change="onSlideChange"
>
<swiper-slide>
<XHome :user="user"/>
</swiper-slide>
<swiper-slide>
<XLikedPosts :user="user"/>
</swiper-slide>
<swiper-slide>
<XReactions :user="user"/>
</swiper-slide>
<swiper-slide>
<XClips :user="user"/>
</swiper-slide>
<swiper-slide>
<XPages :user="user"/>
</swiper-slide>
<swiper-slide>
<XGallery :user="user"/>
</swiper-slide>
</swiper>
</div>
<MkError v-else-if="error" @retry="fetchUser()"/>
<MkLoading v-else/>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { defineAsyncComponent, computed, inject, onMounted, onUnmounted, watch } from 'vue';
2022-09-14 06:33:03 +02:00
import { Virtual } from 'swiper';
import { Swiper, SwiperSlide } from 'swiper/vue';
import * as Acct from 'misskey-js/built/acct';
2022-09-14 06:33:03 +02:00
import type * as misskey from 'misskey-js';
2021-11-11 18:02:25 +01:00
import { userPage, acct as getAcct } from '@/filters/user';
import * as os from '@/os';
import { useRouter } from '@/router';
import { definePageMetadata } from '@/scripts/page-metadata';
2022-09-15 19:43:48 +02:00
import { deviceKind } from '@/scripts/device-kind';
import { i18n } from '@/i18n';
import { $i } from '@/account';
import { defaultStore } from '@/store';
2022-09-14 06:33:03 +02:00
import 'swiper/scss';
import 'swiper/scss/virtual';
2022-07-01 11:55:45 +02:00
const XHome = defineAsyncComponent(() => import('./home.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 11:55:45 +02:00
page: 'home',
});
const router = useRouter();
2022-09-14 06:33:03 +02:00
let tabs = ['home'];
let user = $ref<null | misskey.entities.UserDetailed>(null);
2022-09-14 06:33:03 +02:00
if (($i && ($i.id === user?.id)) || user?.publicReactions) {
tabs.push('reactions');
}
if ((user?.instance != null)) {
tabs.push('clips', 'pages', 'gallery');
}
2022-09-15 23:00:50 +02:00
let tab = $computed({
get: () => tabs[0],
set: (x) => {
syncSlide(tabs.indexOf(x));
},
});
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 11:55:45 +02:00
key: 'home',
title: i18n.ts.overview,
icon: 'fas fa-home',
}, ...($i && ($i.id === user.id)) || user.publicReactions ? [{
2022-07-01 11:55:45 +02:00
key: 'reactions',
title: i18n.ts.reaction,
icon: 'fas fa-laugh',
}] : [], {
2022-07-01 11:55:45 +02:00
key: 'clips',
title: i18n.ts.clips,
icon: 'fas fa-paperclip',
}, {
2022-07-01 11:55:45 +02:00
key: 'pages',
title: i18n.ts.pages,
icon: 'fas fa-file-alt',
}, {
2022-07-01 11:55:45 +02:00
key: 'gallery',
title: i18n.ts.gallery,
icon: 'fas fa-icons',
}] : null);
definePageMetadata(computed(() => user ? {
icon: 'fas fa-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));
2022-09-14 06:33:03 +02:00
let swiperRef = null;
function setSwiperRef(swiper) {
swiperRef = swiper;
syncSlide(tabs.indexOf(tab));
}
function onSlideChange() {
tab = tabs[swiperRef.activeIndex];
}
function syncSlide(index) {
swiperRef.slideTo(index);
}
</script>
<style lang="scss" scoped>
2021-04-17 04:40:47 +02:00
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.125s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>