118 lines
3.4 KiB
Vue
118 lines
3.4 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<PageWithHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs" :swipable="true">
|
|
<div class="_spacer" style="--MI_SPACER-w: 1400px;">
|
|
<div v-if="tab === 'explore'">
|
|
<MkFoldableSection class="_margin">
|
|
<template #header><i class="ti ti-clock"></i>{{ i18n.ts.recentPosts }}</template>
|
|
<MkPagination v-slot="{items}" :paginator="recentPostsPaginator">
|
|
<div :class="$style.items">
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
</div>
|
|
</MkPagination>
|
|
</MkFoldableSection>
|
|
<MkFoldableSection class="_margin">
|
|
<template #header><i class="ti ti-comet"></i>{{ i18n.ts.popularPosts }}</template>
|
|
<MkPagination v-slot="{items}" :paginator="popularPostsPaginator">
|
|
<div :class="$style.items">
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
</div>
|
|
</MkPagination>
|
|
</MkFoldableSection>
|
|
</div>
|
|
<div v-else-if="tab === 'liked'">
|
|
<MkPagination v-slot="{items}" :paginator="likedPostsPaginator">
|
|
<div :class="$style.items">
|
|
<MkGalleryPostPreview v-for="like in items" :key="like.id" :post="like.post" class="post"/>
|
|
</div>
|
|
</MkPagination>
|
|
</div>
|
|
<div v-else-if="tab === 'my'">
|
|
<MkA to="/gallery/new" class="_link" style="margin: 16px;"><i class="ti ti-plus"></i> {{ i18n.ts.postToGallery }}</MkA>
|
|
<MkPagination v-slot="{items}" :paginator="myPostsPaginator">
|
|
<div :class="$style.items">
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
</div>
|
|
</MkPagination>
|
|
</div>
|
|
</div>
|
|
</PageWithHeader>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { watch, ref, computed, markRaw } from 'vue';
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkGalleryPostPreview from '@/components/MkGalleryPostPreview.vue';
|
|
import { definePage } from '@/page.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { useRouter } from '@/router.js';
|
|
import { Paginator } from '@/utility/paginator.js';
|
|
|
|
const router = useRouter();
|
|
|
|
const props = defineProps<{
|
|
tag?: string;
|
|
}>();
|
|
|
|
const tab = ref('explore');
|
|
const tagsRef = ref();
|
|
|
|
const recentPostsPaginator = markRaw(new Paginator('gallery/posts', {
|
|
limit: 6,
|
|
}));
|
|
const popularPostsPaginator = markRaw(new Paginator('gallery/featured', {
|
|
noPaging: true,
|
|
}));
|
|
const myPostsPaginator = markRaw(new Paginator('i/gallery/posts', {
|
|
limit: 5,
|
|
}));
|
|
const likedPostsPaginator = markRaw(new Paginator('i/gallery/likes', {
|
|
limit: 5,
|
|
}));
|
|
|
|
watch(() => props.tag, () => {
|
|
if (tagsRef.value) tagsRef.value.tags.toggleContent(props.tag == null);
|
|
});
|
|
|
|
const headerActions = computed(() => [{
|
|
icon: 'ti ti-plus',
|
|
text: i18n.ts.create,
|
|
handler: () => {
|
|
router.push('/gallery/new');
|
|
},
|
|
}]);
|
|
|
|
const headerTabs = computed(() => [{
|
|
key: 'explore',
|
|
title: i18n.ts.gallery,
|
|
icon: 'ti ti-icons',
|
|
}, {
|
|
key: 'liked',
|
|
title: i18n.ts._gallery.liked,
|
|
icon: 'ti ti-heart',
|
|
}, {
|
|
key: 'my',
|
|
title: i18n.ts._gallery.my,
|
|
icon: 'ti ti-edit',
|
|
}]);
|
|
|
|
definePage(() => ({
|
|
title: i18n.ts.gallery,
|
|
icon: 'ti ti-icons',
|
|
}));
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.items {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
grid-gap: 12px;
|
|
margin: 0 var(--MI-margin);
|
|
}
|
|
</style>
|