2020-11-29 04:34:39 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-12-02 12:09:12 +01:00
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkPagePreview v-for="page in items" :key="page.id" :page="page" class="_gap"/>
|
2020-11-29 04:34:39 +01:00
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
|
|
|
import * as misskey from 'misskey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkPagePreview from '@/components/page-preview.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
}>();
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/pages' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
2020-11-29 04:34:39 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|