2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-04-24 16:38:24 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
2022-06-30 15:38:34 +03:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkSpacer :contentMax="1400">
|
2022-06-20 11:38:49 +03:00
|
|
|
<div class="_root">
|
|
|
|
<div v-if="tab === 'explore'">
|
2023-01-09 02:41:25 +02:00
|
|
|
<MkFoldableSection class="_margin">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #header><i class="ti ti-clock"></i>{{ i18n.ts.recentPosts }}</template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkPagination v-slot="{items}" :pagination="recentPostsPagination" :disableAutoLoad="true">
|
2023-05-14 04:21:56 +03:00
|
|
|
<div :class="$style.items">
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2023-01-09 02:41:25 +02:00
|
|
|
</MkFoldableSection>
|
|
|
|
<MkFoldableSection class="_margin">
|
2022-12-20 01:35:49 +02:00
|
|
|
<template #header><i class="ti ti-comet"></i>{{ i18n.ts.popularPosts }}</template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkPagination v-slot="{items}" :pagination="popularPostsPagination" :disableAutoLoad="true">
|
2023-05-14 04:21:56 +03:00
|
|
|
<div :class="$style.items">
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2023-01-09 02:41:25 +02:00
|
|
|
</MkFoldableSection>
|
2021-04-24 16:38:24 +03:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
<div v-else-if="tab === 'liked'">
|
|
|
|
<MkPagination v-slot="{items}" :pagination="likedPostsPagination">
|
2023-05-14 04:21:56 +03:00
|
|
|
<div :class="$style.items">
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkGalleryPostPreview v-for="like in items" :key="like.id" :post="like.post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2021-04-24 16:38:24 +03:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
<div v-else-if="tab === 'my'">
|
2022-12-19 12:01:30 +02:00
|
|
|
<MkA to="/gallery/new" class="_link" style="margin: 16px;"><i class="ti ti-plus"></i> {{ i18n.ts.postToGallery }}</MkA>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkPagination v-slot="{items}" :pagination="myPostsPagination">
|
2023-05-14 04:21:56 +03:00
|
|
|
<div :class="$style.items">
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-24 16:38:24 +03:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 16:09:41 +02:00
|
|
|
import { watch } from 'vue';
|
2023-01-09 02:41:25 +02:00
|
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkGalleryPostPreview from '@/components/MkGalleryPostPreview.vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-30 15:38:34 +03:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
|
|
|
|
const router = useRouter();
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const props = defineProps<{
|
|
|
|
tag?: string;
|
|
|
|
}>();
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
let tab = $ref('explore');
|
|
|
|
let tags = $ref([]);
|
|
|
|
let tagsRef = $ref();
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const recentPostsPagination = {
|
|
|
|
endpoint: 'gallery/posts' as const,
|
|
|
|
limit: 6,
|
|
|
|
};
|
|
|
|
const popularPostsPagination = {
|
|
|
|
endpoint: 'gallery/featured' as const,
|
2023-04-11 09:49:19 +03:00
|
|
|
noPaging: true,
|
2022-06-20 11:38:49 +03:00
|
|
|
};
|
|
|
|
const myPostsPagination = {
|
|
|
|
endpoint: 'i/gallery/posts' as const,
|
|
|
|
limit: 5,
|
|
|
|
};
|
|
|
|
const likedPostsPagination = {
|
|
|
|
endpoint: 'i/gallery/likes' as const,
|
|
|
|
limit: 5,
|
|
|
|
};
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const tagUsersPagination = $computed(() => ({
|
|
|
|
endpoint: 'hashtags/users' as const,
|
|
|
|
limit: 30,
|
|
|
|
params: {
|
2023-08-13 14:12:29 +03:00
|
|
|
tag: props.tag,
|
2022-06-20 11:38:49 +03:00
|
|
|
origin: 'combined',
|
|
|
|
sort: '+follower',
|
2021-04-24 16:38:24 +03:00
|
|
|
},
|
2022-06-20 11:38:49 +03:00
|
|
|
}));
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
watch(() => props.tag, () => {
|
|
|
|
if (tagsRef) tagsRef.tags.toggleContent(props.tag == null);
|
|
|
|
});
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-30 15:38:34 +03:00
|
|
|
const headerActions = $computed(() => [{
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-plus',
|
2022-06-30 15:38:34 +03:00
|
|
|
text: i18n.ts.create,
|
|
|
|
handler: () => {
|
|
|
|
router.push('/gallery/new');
|
|
|
|
},
|
|
|
|
}]);
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-30 15:38:34 +03:00
|
|
|
const headerTabs = $computed(() => [{
|
|
|
|
key: 'explore',
|
|
|
|
title: i18n.ts.gallery,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-icons',
|
2022-06-30 15:38:34 +03:00
|
|
|
}, {
|
|
|
|
key: 'liked',
|
|
|
|
title: i18n.ts._gallery.liked,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-heart',
|
2022-06-30 15:38:34 +03:00
|
|
|
}, {
|
|
|
|
key: 'my',
|
|
|
|
title: i18n.ts._gallery.my,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-edit',
|
2022-06-30 15:38:34 +03:00
|
|
|
}]);
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.gallery,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-icons',
|
2021-04-24 16:38:24 +03:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-14 04:21:56 +03:00
|
|
|
<style lang="scss" module>
|
|
|
|
.items {
|
2021-04-24 16:38:24 +03:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: 0 var(--margin);
|
|
|
|
}
|
|
|
|
</style>
|