2021-11-07 19:38:48 +01:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkTooltip ref="tooltip" :source="source" :max-width="340" @closed="$emit('closed')">
|
2021-11-07 19:38:48 +01:00
|
|
|
<div class="beeadbfb">
|
|
|
|
<XReactionIcon :reaction="reaction" :custom-emojis="emojis" class="icon" :no-style="true"/>
|
|
|
|
<div class="name">{{ reaction.replace('@.', '') }}</div>
|
|
|
|
</div>
|
|
|
|
</MkTooltip>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import MkTooltip from './ui/tooltip.vue';
|
|
|
|
import XReactionIcon from './reaction-icon.vue';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkTooltip,
|
|
|
|
XReactionIcon,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
reaction: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
emojis: {
|
|
|
|
type: Array,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
source: {
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
emits: ['closed'],
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.beeadbfb {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
width: 60px;
|
2021-12-02 12:09:12 +01:00
|
|
|
font-size: 60px; // unicodeな絵文字についてはwidthが効かないため
|
2021-11-07 19:38:48 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|