2023-08-21 11:23:09 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MkSpacer :contentMax="700">
|
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
|
|
|
<MkFlashPreview v-for="flash in items" :key="flash.id" :flash="flash" class="_margin"/>
|
|
|
|
</MkPagination>
|
|
|
|
</MkSpacer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-08-21 11:23:09 +00:00
|
|
|
import MkFlashPreview from '@/components/MkFlashPreview.vue';
|
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
user: Misskey.entities.User;
|
2023-08-21 11:23:09 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/flashs' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
</script>
|