2021-04-24 15:38:24 +02:00
|
|
|
<template>
|
|
|
|
<div class="xprsixdl _root">
|
2021-09-29 17:50:45 +02:00
|
|
|
<MkTab v-model="tab" v-if="$i">
|
2021-04-24 15:38:24 +02:00
|
|
|
<option value="explore"><i class="fas fa-icons"></i> {{ $ts.gallery }}</option>
|
|
|
|
<option value="liked"><i class="fas fa-heart"></i> {{ $ts._gallery.liked }}</option>
|
|
|
|
<option value="my"><i class="fas fa-edit"></i> {{ $ts._gallery.my }}</option>
|
|
|
|
</MkTab>
|
|
|
|
|
|
|
|
<div v-if="tab === 'explore'">
|
|
|
|
<MkFolder class="_gap">
|
|
|
|
<template #header><i class="fas fa-clock"></i>{{ $ts.recentPosts }}</template>
|
|
|
|
<MkPagination :pagination="recentPostsPagination" #default="{items}" :disable-auto-load="true">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :post="post" :key="post.id" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</MkFolder>
|
|
|
|
<MkFolder class="_gap">
|
|
|
|
<template #header><i class="fas fa-fire-alt"></i>{{ $ts.popularPosts }}</template>
|
|
|
|
<MkPagination :pagination="popularPostsPagination" #default="{items}" :disable-auto-load="true">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :post="post" :key="post.id" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</MkFolder>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'liked'">
|
|
|
|
<MkPagination :pagination="likedPostsPagination" #default="{items}">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="like in items" :post="like.post" :key="like.id" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'my'">
|
|
|
|
<MkA to="/gallery/new" class="_link" style="margin: 16px;"><i class="fas fa-plus"></i> {{ $ts.postToGallery }}</MkA>
|
|
|
|
<MkPagination :pagination="myPostsPagination" #default="{items}">
|
|
|
|
<div class="vfpdbgtk">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :post="post" :key="post.id" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XUserList from '@/components/user-list.vue';
|
|
|
|
import MkFolder from '@/components/ui/folder.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkTab from '@/components/tab.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import MkGalleryPostPreview from '@/components/gallery-post-preview.vue';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2021-04-24 15:38:24 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XUserList,
|
|
|
|
MkFolder,
|
|
|
|
MkInput,
|
|
|
|
MkButton,
|
|
|
|
MkTab,
|
|
|
|
MkPagination,
|
|
|
|
MkGalleryPostPreview,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
tag: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.gallery,
|
|
|
|
icon: 'fas fa-icons'
|
|
|
|
},
|
|
|
|
tab: 'explore',
|
|
|
|
recentPostsPagination: {
|
|
|
|
endpoint: 'gallery/posts',
|
|
|
|
limit: 6,
|
|
|
|
},
|
|
|
|
popularPostsPagination: {
|
|
|
|
endpoint: 'gallery/featured',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
myPostsPagination: {
|
|
|
|
endpoint: 'i/gallery/posts',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
likedPostsPagination: {
|
|
|
|
endpoint: 'i/gallery/likes',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
tags: [],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
meta() {
|
|
|
|
return this.$instance;
|
|
|
|
},
|
|
|
|
tagUsers(): any {
|
|
|
|
return {
|
|
|
|
endpoint: 'hashtags/users',
|
|
|
|
limit: 30,
|
|
|
|
params: {
|
|
|
|
tag: this.tag,
|
|
|
|
origin: 'combined',
|
|
|
|
sort: '+follower',
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
tag() {
|
|
|
|
if (this.$refs.tags) this.$refs.tags.toggleContent(this.tag == null);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.xprsixdl {
|
|
|
|
max-width: 1400px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vfpdbgtk {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: 0 var(--margin);
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|