2021-04-24 15:38:24 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-12-02 12:09:12 +01:00
|
|
|
<MkPagination v-slot="{items}" :pagination="pagination">
|
2021-04-24 15:38:24 +02:00
|
|
|
<div class="jrnovfpt">
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
2021-04-24 15:38:24 +02:00
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-01-09 19:30:35 +01:00
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkGalleryPostPreview from '@/components/gallery-post-preview.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
2021-04-24 15:38:24 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkPagination,
|
|
|
|
MkGalleryPostPreview,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
user: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
pagination: {
|
2022-01-12 18:26:10 +01:00
|
|
|
endpoint: 'users/gallery/posts' as const,
|
2021-04-24 15:38:24 +02:00
|
|
|
limit: 6,
|
2022-01-09 19:30:35 +01:00
|
|
|
params: computed(() => ({
|
2021-04-24 15:38:24 +02:00
|
|
|
userId: this.user.id
|
2022-01-09 19:30:35 +01:00
|
|
|
})),
|
2021-04-24 15:38:24 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.jrnovfpt {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: var(--margin);
|
|
|
|
}
|
|
|
|
</style>
|