2020-11-28 21:34:39 -06:00
|
|
|
<template>
|
2022-12-26 23:19:43 -06:00
|
|
|
<MkSpacer :content-max="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';
|
|
|
|
import * as misskey from 'misskey-js';
|
2022-08-30 10:24:33 -05:00
|
|
|
import MkPagePreview from '@/components/MkPagePreview.vue';
|
2022-09-06 04:21:49 -05:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2020-11-28 21:34:39 -06:00
|
|
|
|
2022-01-12 11:46:14 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
}>();
|
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,
|
|
|
|
})),
|
|
|
|
};
|
2020-11-28 21:34:39 -06:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 03:29:39 -06:00
|
|
|
<style lang="scss" scoped>
|
2020-11-28 21:34:39 -06:00
|
|
|
|
|
|
|
</style>
|