2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-09-17 13:39:15 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<button class="_button" :class="$style.root" @click="menu">
|
|
|
|
<img :src="emoji.url" :class="$style.img" loading="lazy"/>
|
|
|
|
<div :class="$style.body">
|
|
|
|
<div :class="$style.name" class="_monospace">{{ emoji.name }}</div>
|
|
|
|
<div :class="$style.info">{{ emoji.aliases.join(' ') }}</div>
|
2021-09-17 13:39:15 +00:00
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2022-01-12 17:36:51 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2022-01-12 17:36:51 +00:00
|
|
|
const props = defineProps<{
|
2023-01-23 07:19:13 +00:00
|
|
|
emoji: {
|
|
|
|
name: string;
|
|
|
|
aliases: string[];
|
|
|
|
category: string;
|
|
|
|
url: string;
|
|
|
|
};
|
2022-01-12 17:36:51 +00:00
|
|
|
}>();
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2022-01-12 17:36:51 +00:00
|
|
|
function menu(ev) {
|
|
|
|
os.popupMenu([{
|
|
|
|
type: 'label',
|
|
|
|
text: ':' + props.emoji.name + ':',
|
|
|
|
}, {
|
2022-01-28 02:39:49 +00:00
|
|
|
text: i18n.ts.copy,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-copy',
|
2022-01-12 17:36:51 +00:00
|
|
|
action: () => {
|
|
|
|
copyToClipboard(`:${props.emoji.name}:`);
|
|
|
|
os.success();
|
2022-12-22 07:01:59 +00:00
|
|
|
},
|
2023-03-17 11:24:47 +00:00
|
|
|
}, {
|
|
|
|
text: i18n.ts.info,
|
|
|
|
icon: 'ti ti-info-circle',
|
|
|
|
action: () => {
|
|
|
|
os.apiGet('emoji', { name: props.emoji.name }).then(res => {
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
|
|
|
text: `License: ${res.license}`,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2022-01-28 02:53:12 +00:00
|
|
|
}], ev.currentTarget ?? ev.target);
|
2022-01-12 17:36:51 +00:00
|
|
|
}
|
2021-09-17 13:39:15 +00:00
|
|
|
</script>
|
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-09-17 13:39:15 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 12px;
|
|
|
|
text-align: left;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: var(--accent);
|
|
|
|
}
|
2023-05-19 07:20:53 +00:00
|
|
|
}
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
.img {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
.body {
|
|
|
|
padding: 0 0 0 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
.name {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2021-09-17 13:39:15 +00:00
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
.info {
|
|
|
|
opacity: 0.5;
|
|
|
|
font-size: 0.9em;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2021-09-17 13:39:15 +00:00
|
|
|
}
|
|
|
|
</style>
|