mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 08:23:09 +02:00
61 lines
1.3 KiB
Vue
61 lines
1.3 KiB
Vue
<template>
|
|
<MkSpacer :content-max="700">
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
|
<div v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _margin afdcfbfb">
|
|
<div class="header">
|
|
<MkAvatar class="avatar" :user="user"/>
|
|
<MkReactionIcon class="reaction" :reaction="item.type" :no-style="true"/>
|
|
<MkTime :time="item.createdAt" class="createdAt"/>
|
|
</div>
|
|
<MkNote :key="item.id" :note="item.note"/>
|
|
</div>
|
|
</MkPagination>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
import MkNote from '@/components/MkNote.vue';
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|
|
|
const props = defineProps<{
|
|
user: misskey.entities.User;
|
|
}>();
|
|
|
|
const pagination = {
|
|
endpoint: 'users/reactions' as const,
|
|
limit: 20,
|
|
params: computed(() => ({
|
|
userId: props.user.id,
|
|
})),
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.afdcfbfb {
|
|
> .header {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
margin-bottom: 8px;
|
|
border-bottom: solid 2px var(--divider);
|
|
|
|
> .avatar {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
> .reaction {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
|
|
> .createdAt {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
</style>
|