mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 15:56:25 +01:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
47 lines
1,013 B
Vue
47 lines
1,013 B
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">
|
|
<MkReactionIcon :reaction="reaction" :class="$style.icon" :noStyle="true"/>
|
|
<div :class="$style.name">{{ reaction.replace('@.', '') }}</div>
|
|
</div>
|
|
</MkTooltip>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import MkTooltip from './MkTooltip.vue';
|
|
import MkReactionIcon from '@/components/MkReactionIcon.vue';
|
|
|
|
defineProps<{
|
|
showing: boolean;
|
|
reaction: string;
|
|
targetElement: HTMLElement;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'closed'): void;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
text-align: center;
|
|
}
|
|
|
|
.icon {
|
|
display: block;
|
|
width: 60px;
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
|
margin: 0 auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.name {
|
|
font-size: 0.9em;
|
|
}
|
|
</style>
|