2021-09-17 15:39:15 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<button class="zuvgdzyu _button" @click="menu">
|
|
|
|
<img :src="emoji.url" class="img" :alt="emoji.name" />
|
|
|
|
<div class="body">
|
|
|
|
<div class="name _monospace">{{ emoji.name }}</div>
|
|
|
|
<div class="info">{{ emoji.aliases.join(" ") }}</div>
|
|
|
|
</div>
|
|
|
|
</button>
|
2021-09-17 15:39:15 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 18:36:51 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {} from "vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import copyToClipboard from "@/scripts/copy-to-clipboard";
|
|
|
|
import { i18n } from "@/i18n";
|
2021-09-17 15:39:15 +02:00
|
|
|
|
2022-01-12 18:36:51 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
emoji: Record<string, unknown>; // TODO
|
|
|
|
}>();
|
2021-09-17 15:39:15 +02:00
|
|
|
|
2022-01-12 18:36:51 +01:00
|
|
|
function menu(ev) {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.popupMenu(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
type: "label",
|
|
|
|
text: ":" + props.emoji.name + ":",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.copy,
|
|
|
|
icon: "ph-clipboard-text ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
copyToClipboard(`:${props.emoji.name}:`);
|
|
|
|
os.success();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.license,
|
|
|
|
icon: "ph-info ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
os.apiGet("emoji", { name: props.emoji.name }).then(
|
|
|
|
(res) => {
|
|
|
|
os.alert({
|
|
|
|
type: "info",
|
|
|
|
text: `${res.license || i18n.ts.notSet}`,
|
|
|
|
});
|
2023-07-06 03:28:27 +02:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2023-07-06 03:28:27 +02:00
|
|
|
ev.currentTarget ?? ev.target,
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2022-01-12 18:36:51 +01:00
|
|
|
}
|
2021-09-17 15:39:15 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.zuvgdzyu {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 12px;
|
|
|
|
text-align: left;
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .img {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
padding: 0 0 0 8px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
opacity: 0.5;
|
|
|
|
font-size: 0.9em;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|