2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-10-16 18:33:15 +02:00
|
|
|
<template>
|
2023-05-19 13:52:15 +02:00
|
|
|
<MkSpacer :contentMax="700">
|
2021-12-02 12:09:12 +01:00
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
2023-05-19 13:52:15 +02:00
|
|
|
<div v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="_panel _margin">
|
|
|
|
<div :class="$style.header">
|
|
|
|
<MkAvatar :class="$style.avatar" :user="user"/>
|
|
|
|
<MkReactionIcon :class="$style.reaction" :reaction="item.type" :noStyle="true"/>
|
|
|
|
<MkTime :time="item.createdAt" :class="$style.createdAt"/>
|
2021-10-16 18:33:15 +02:00
|
|
|
</div>
|
2022-01-14 02:25:51 +01:00
|
|
|
<MkNote :key="item.id" :note="item.note"/>
|
2021-10-16 18:33:15 +02:00
|
|
|
</div>
|
|
|
|
</MkPagination>
|
2022-12-27 06:19:43 +01:00
|
|
|
</MkSpacer>
|
2021-10-16 18:33:15 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkNote from '@/components/MkNote.vue';
|
|
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
2021-10-16 18:33:15 +02:00
|
|
|
|
2022-01-12 18:46:14 +01:00
|
|
|
const props = defineProps<{
|
2023-09-04 06:33:38 +02:00
|
|
|
user: Misskey.entities.User;
|
2022-01-12 18:46:14 +01:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/reactions' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
2021-10-16 18:33:15 +02:00
|
|
|
</script>
|
|
|
|
|
2023-05-19 13:52:15 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 8px 16px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
border-bottom: solid 2px var(--divider);
|
|
|
|
}
|
2021-10-16 18:33:15 +02:00
|
|
|
|
2023-05-19 13:52:15 +02:00
|
|
|
.avatar {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2021-10-16 18:33:15 +02:00
|
|
|
|
2023-05-19 13:52:15 +02:00
|
|
|
.reaction {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
2021-10-16 18:33:15 +02:00
|
|
|
|
2023-05-19 13:52:15 +02:00
|
|
|
.createdAt {
|
|
|
|
margin-left: auto;
|
2021-10-16 18:33:15 +02:00
|
|
|
}
|
|
|
|
</style>
|