2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-04-24 16:38:24 +03:00
|
|
|
<template>
|
2023-05-19 14:52:15 +03:00
|
|
|
<MkSpacer :contentMax="700">
|
2021-12-02 13:09:12 +02:00
|
|
|
<MkPagination v-slot="{items}" :pagination="pagination">
|
2023-05-19 14:52:15 +03:00
|
|
|
<div :class="$style.root">
|
2021-11-19 12:36:12 +02:00
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
2021-04-24 16:38:24 +03:00
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2022-12-27 07:19:43 +02:00
|
|
|
</MkSpacer>
|
2021-04-24 16:38:24 +03:00
|
|
|
</template>
|
|
|
|
|
2022-06-30 15:38:34 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-09-04 07:33:38 +03:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkGalleryPostPreview from '@/components/MkGalleryPostPreview.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2021-04-24 16:38:24 +03:00
|
|
|
|
2022-06-30 15:38:34 +03:00
|
|
|
const props = withDefaults(defineProps<{
|
2023-09-04 07:33:38 +03:00
|
|
|
user: Misskey.entities.User;
|
2022-06-30 15:38:34 +03:00
|
|
|
}>(), {
|
2021-04-24 16:38:24 +03:00
|
|
|
});
|
2022-06-30 15:38:34 +03:00
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/gallery/posts' as const,
|
|
|
|
limit: 6,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
2021-04-24 16:38:24 +03:00
|
|
|
</script>
|
|
|
|
|
2023-05-19 14:52:15 +03:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-04-24 16:38:24 +03:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: var(--margin);
|
|
|
|
}
|
|
|
|
</style>
|