rudeshark.net/packages/client/src/pages/user/gallery.vue

46 lines
934 B
Vue
Raw Normal View History

<template>
2023-04-08 02:01:42 +02:00
<MkSpacer :content-max="800">
<MkPagination v-slot="{ items }" :pagination="pagination">
<div class="jrnovfpt">
<MkGalleryPostPreview
v-for="post in items"
:key="post.id"
:post="post"
class="post"
/>
</div>
</MkPagination>
</MkSpacer>
</template>
2022-06-30 14:38:34 +02:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { computed } from "vue";
import * as misskey from "calckey-js";
import MkGalleryPostPreview from "@/components/MkGalleryPostPreview.vue";
import MkPagination from "@/components/MkPagination.vue";
2023-04-08 02:01:42 +02:00
const props = withDefaults(
defineProps<{
user: misskey.entities.User;
}>(),
{}
);
2022-06-30 14:38:34 +02:00
const pagination = {
2023-04-08 02:01:42 +02:00
endpoint: "users/gallery/posts" as const,
2022-06-30 14:38:34 +02:00
limit: 6,
params: computed(() => ({
userId: props.user.id,
})),
};
</script>
<style lang="scss" scoped>
.jrnovfpt {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
grid-gap: 12px;
margin: var(--margin);
}
</style>