101 lines
2.1 KiB
Vue
101 lines
2.1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkTooltip ref="tooltip" :showing="showing" :targetElement="targetElement" :maxWidth="340" @closed="emit('closed')">
|
|
<div :class="$style.root">
|
|
<div :class="$style.reaction">
|
|
<MkReactionIcon :reaction="reaction" :class="$style.reactionIcon" :noStyle="true"/>
|
|
<div :class="$style.reactionName">{{ getReactionName(reaction) }}</div>
|
|
</div>
|
|
<div :class="$style.users">
|
|
<div v-for="u in users" :key="u.id" :class="$style.user">
|
|
<MkAvatar :class="$style.avatar" :user="u"/>
|
|
<MkUserName :user="u" :nowrap="true"/>
|
|
</div>
|
|
<div v-if="users.length > 10" :class="$style.more">+{{ count - 10 }}</div>
|
|
</div>
|
|
</div>
|
|
</MkTooltip>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import MkTooltip from './MkTooltip.vue';
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|
import { getEmojiName } from '@/scripts/emojilist.js';
|
|
|
|
defineProps<{
|
|
showing: boolean;
|
|
reaction: string;
|
|
users: any[]; // TODO
|
|
count: number;
|
|
targetElement: HTMLElement;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'closed'): void;
|
|
}>();
|
|
|
|
function getReactionName(reaction: string): string {
|
|
const trimLocal = reaction.replace('@.', '');
|
|
if (trimLocal.startsWith(':')) {
|
|
return trimLocal;
|
|
}
|
|
return getEmojiName(reaction) ?? reaction;
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
display: flex;
|
|
}
|
|
|
|
.reaction {
|
|
max-width: 100px;
|
|
padding-right: 10px;
|
|
text-align: center;
|
|
border-right: solid 0.5px var(--divider);
|
|
}
|
|
|
|
.reactionIcon {
|
|
display: block;
|
|
width: 60px;
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
|
object-fit: contain;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.reactionName {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.users {
|
|
contain: content;
|
|
flex: 1;
|
|
min-width: 0;
|
|
margin: -4px 14px 0 10px;
|
|
font-size: 0.95em;
|
|
text-align: left;
|
|
}
|
|
|
|
.user {
|
|
line-height: 24px;
|
|
padding-top: 4px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.avatar {
|
|
width: 24px;
|
|
height: 24px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
.more {
|
|
padding-top: 4px;
|
|
}
|
|
</style>
|