2020-11-29 04:34:39 +01:00
|
|
|
<template>
|
2022-12-27 06:19:43 +01:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
|
|
|
<MkPagePreview v-for="page in items" :key="page.id" :page="page" class="_gap"/>
|
|
|
|
</MkPagination>
|
|
|
|
</MkSpacer>
|
2020-11-29 04:34:39 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2022-12-12 04:24:12 +01:00
|
|
|
import * as misskey from 'calckey-js';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkPagePreview from '@/components/MkPagePreview.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkPagination from '@/components/MkPagination.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>
|