egirlskey/packages/frontend/src/components/MkReactionTooltip.vue

48 lines
1013 B
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-05-19 04:58:09 +00:00
<MkTooltip ref="tooltip" :showing="showing" :targetElement="targetElement" :maxWidth="340" @closed="emit('closed')">
2023-01-14 08:23:49 +00:00
<div :class="$style.root">
2023-05-19 04:58:09 +00:00
<MkReactionIcon :reaction="reaction" :class="$style.icon" :noStyle="true"/>
2023-01-14 08:23:49 +00:00
<div :class="$style.name">{{ reaction.replace('@.', '') }}</div>
</div>
</MkTooltip>
</template>
<script lang="ts" setup>
import { } from 'vue';
import MkTooltip from './MkTooltip.vue';
2023-01-08 05:22:04 +00:00
import MkReactionIcon from '@/components/MkReactionIcon.vue';
defineProps<{
showing: boolean;
reaction: string;
targetElement: HTMLElement;
}>();
const emit = defineEmits<{
(ev: 'closed'): void;
}>();
</script>
2023-01-14 08:23:49 +00:00
<style lang="scss" module>
.root {
text-align: center;
2023-01-14 08:23:49 +00:00
}
2023-01-14 08:23:49 +00:00
.icon {
display: block;
width: 60px;
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
margin: 0 auto;
object-fit: contain;
}
2023-01-14 08:23:49 +00:00
.name {
font-size: 0.9em;
}
</style>