summaryrefslogtreecommitdiff
path: root/src/client/pages/user/gallery.vue
blob: 2a4c4e03f40a5dab4584df27b28fb2677727eef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<template>
<div>
	<MkPagination :pagination="pagination" #default="{items}">
		<div class="jrnovfpt">
			<MkGalleryPostPreview v-for="post in items" :post="post" :key="post.id" class="post"/>
		</div>
	</MkPagination>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import MkGalleryPostPreview from '@client/components/gallery-post-preview.vue';
import MkPagination from '@client/components/ui/pagination.vue';
import { userPage, acct } from '../../filters/user';

export default defineComponent({
	components: {
		MkPagination,
		MkGalleryPostPreview,
	},

	props: {
		user: {
			type: Object,
			required: true
		},
	},

	data() {
		return {
			pagination: {
				endpoint: 'users/gallery/posts',
				limit: 6,
				params: () => ({
					userId: this.user.id
				})
			},
		};
	},

	watch: {
		user() {
			this.$refs.list.reload();
		}
	},

	methods: {
		userPage,
		
		acct
	}
});
</script>

<style lang="scss" scoped>
.jrnovfpt {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	grid-gap: 12px;
	margin: var(--margin);
}
</style>