2021-04-24 15:38:24 +02:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2022-06-30 14:38:34 +02:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkSpacer :content-max="1400">
|
|
|
|
<div class="_root">
|
|
|
|
<div v-if="tab === 'explore'">
|
|
|
|
<MkFolder class="_gap">
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #header><i class="fas fa-clock"></i>{{ i18n.ts.recentPosts }}</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkPagination v-slot="{items}" :pagination="recentPostsPagination" :disable-auto-load="true">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</MkFolder>
|
|
|
|
<MkFolder class="_gap">
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #header><i class="fas fa-fire-alt"></i>{{ i18n.ts.popularPosts }}</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkPagination v-slot="{items}" :pagination="popularPostsPagination" :disable-auto-load="true">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</MkFolder>
|
2021-04-24 15:38:24 +02:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
<div v-else-if="tab === 'liked'">
|
|
|
|
<MkPagination v-slot="{items}" :pagination="likedPostsPagination">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="like in items" :key="like.id" :post="like.post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2021-04-24 15:38:24 +02:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
<div v-else-if="tab === 'my'">
|
2022-07-20 15:24:26 +02:00
|
|
|
<MkA to="/gallery/new" class="_link" style="margin: 16px;"><i class="fas fa-plus"></i> {{ i18n.ts.postToGallery }}</MkA>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkPagination v-slot="{items}" :pagination="myPostsPagination">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-24 15:38:24 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, defineComponent, watch } from 'vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XUserList from '@/components/MkUserList.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkFolder from '@/components/ui/folder.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkTab from '@/components/MkTab.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkGalleryPostPreview from '@/components/MkGalleryPostPreview.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as os from '@/os';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-30 14:38:34 +02:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
|
|
|
|
const router = useRouter();
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
tag?: string;
|
|
|
|
}>();
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
let tab = $ref('explore');
|
|
|
|
let tags = $ref([]);
|
|
|
|
let tagsRef = $ref();
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const recentPostsPagination = {
|
|
|
|
endpoint: 'gallery/posts' as const,
|
|
|
|
limit: 6,
|
|
|
|
};
|
|
|
|
const popularPostsPagination = {
|
|
|
|
endpoint: 'gallery/featured' as const,
|
|
|
|
limit: 5,
|
|
|
|
};
|
|
|
|
const myPostsPagination = {
|
|
|
|
endpoint: 'i/gallery/posts' as const,
|
|
|
|
limit: 5,
|
|
|
|
};
|
|
|
|
const likedPostsPagination = {
|
|
|
|
endpoint: 'i/gallery/likes' as const,
|
|
|
|
limit: 5,
|
|
|
|
};
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const tagUsersPagination = $computed(() => ({
|
|
|
|
endpoint: 'hashtags/users' as const,
|
|
|
|
limit: 30,
|
|
|
|
params: {
|
|
|
|
tag: this.tag,
|
|
|
|
origin: 'combined',
|
|
|
|
sort: '+follower',
|
2021-04-24 15:38:24 +02:00
|
|
|
},
|
2022-06-20 10:38:49 +02:00
|
|
|
}));
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => props.tag, () => {
|
|
|
|
if (tagsRef) tagsRef.tags.toggleContent(props.tag == null);
|
|
|
|
});
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-30 14:38:34 +02:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
icon: 'fas fa-plus',
|
|
|
|
text: i18n.ts.create,
|
|
|
|
handler: () => {
|
|
|
|
router.push('/gallery/new');
|
|
|
|
},
|
|
|
|
}]);
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-30 14:38:34 +02:00
|
|
|
const headerTabs = $computed(() => [{
|
|
|
|
key: 'explore',
|
|
|
|
title: i18n.ts.gallery,
|
|
|
|
icon: 'fas fa-icons',
|
|
|
|
}, {
|
|
|
|
key: 'liked',
|
|
|
|
title: i18n.ts._gallery.liked,
|
|
|
|
icon: 'fas fa-heart',
|
|
|
|
}, {
|
|
|
|
key: 'my',
|
|
|
|
title: i18n.ts._gallery.my,
|
|
|
|
icon: 'fas fa-edit',
|
|
|
|
}]);
|
2021-04-24 15:38:24 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.gallery,
|
|
|
|
icon: 'fas fa-icons',
|
2021-04-24 15:38:24 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.vfpdbgtk {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: 0 var(--margin);
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|