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