2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-29 03:34:39 +00:00
|
|
|
<template>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSpacer :contentMax="700">
|
2021-12-02 11:09:12 +00:00
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkPagePreview v-for="page in items" :key="page.id" :page="page" class="_margin"/>
|
2020-11-29 03:34:39 +00:00
|
|
|
</MkPagination>
|
2022-12-27 05:19:43 +00:00
|
|
|
</MkSpacer>
|
2020-11-29 03:34:39 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 17:46:14 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkPagePreview from '@/components/MkPagePreview.vue';
|
2023-12-26 12:40:27 +00:00
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
2020-11-29 03:34:39 +00:00
|
|
|
|
2022-01-12 17:46:14 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
user: Misskey.entities.User;
|
2022-01-12 17:46:14 +00:00
|
|
|
}>();
|
2020-11-29 03:34:39 +00:00
|
|
|
|
2022-01-12 17:46:14 +00:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/pages' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
2023-12-26 12:40:27 +00:00
|
|
|
} satisfies Paging;
|
2020-11-29 03:34:39 +00:00
|
|
|
</script>
|