summaryrefslogtreecommitdiff
path: root/src/client/pages/user/pages.vue
blob: 34ac9d1ba65649bed3384ea5776ee01577ee099e (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
<template>
<div>
	<MkPagination :pagination="pagination" #default="{items}" ref="list">
		<MkPagePreview v-for="page in items" :page="page" :key="page.id" class="_gap"/>
	</MkPagination>
</div>
</template>

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

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

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

	data() {
		return {
			pagination: {
				endpoint: 'users/pages',
				limit: 20,
				params: {
					userId: this.user.id,
				}
			},
		};
	},

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

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

<style lang="scss" scoped>

</style>