2020-11-29 04:34:39 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02: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>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { computed } from "vue";
|
2024-02-12 16:40:46 +01:00
|
|
|
import type { entities } from "firefish-js";
|
2023-04-08 02:01:42 +02:00
|
|
|
import MkPagePreview from "@/components/MkPagePreview.vue";
|
|
|
|
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<{
|
2024-02-12 16:40:46 +01:00
|
|
|
user: entities.User;
|
2022-01-12 18:46:14 +01:00
|
|
|
}>();
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
const pagination = {
|
2023-04-08 02:01:42 +02:00
|
|
|
endpoint: "users/pages" as const,
|
2022-01-12 18:46:14 +01:00
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
2020-11-29 04:34:39 +01:00
|
|
|
</script>
|