mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-03 13:53:19 +09:00
167 lines
4.0 KiB
Vue
167 lines
4.0 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkFolder :defaultOpen="true">
|
|
<template #icon><i class="ti ti-palette"></i></template>
|
|
<template #label>{{ palette.name === '' ? '(' + i18n.ts.noName + ')' : palette.name }}</template>
|
|
<template #footer>
|
|
<div class="_buttons">
|
|
<MkButton @click="rename"><i class="ti ti-pencil"></i> {{ i18n.ts.rename }}</MkButton>
|
|
<MkButton @click="copy"><i class="ti ti-copy"></i> {{ i18n.ts.copy }}</MkButton>
|
|
<MkButton danger @click="paste"><i class="ti ti-clipboard"></i> {{ i18n.ts.paste }}</MkButton>
|
|
<MkButton danger iconOnly style="margin-left: auto;" @click="del"><i class="ti ti-trash"></i></MkButton>
|
|
</div>
|
|
</template>
|
|
|
|
<div>
|
|
<div v-panel style="border-radius: 6px;">
|
|
<Sortable
|
|
v-model="emojis"
|
|
:class="$style.emojis"
|
|
:itemKey="item => item"
|
|
:animation="150"
|
|
:delay="100"
|
|
:delayOnTouchOnly="true"
|
|
:group="{ name: 'SortableEmojiPalettes' }"
|
|
>
|
|
<template #item="{element}">
|
|
<button class="_button" :class="$style.emojisItem" @click="remove(element, $event)">
|
|
<MkCustomEmoji v-if="element[0] === ':'" :name="element" :normal="true" :fallbackToImage="true"/>
|
|
<MkEmoji v-else :emoji="element" :normal="true"/>
|
|
</button>
|
|
</template>
|
|
<template #footer>
|
|
<button class="_button" :class="$style.emojisAdd" @click="pick">
|
|
<i class="ti ti-plus"></i>
|
|
</button>
|
|
</template>
|
|
</Sortable>
|
|
</div>
|
|
<div :class="$style.editorCaption">{{ i18n.ts.reactionSettingDescription2 }}</div>
|
|
</div>
|
|
</MkFolder>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from 'vue';
|
|
import Sortable from 'vuedraggable';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { deepClone } from '@/utility/clone.js';
|
|
import MkCustomEmoji from '@/components/global/MkCustomEmoji.vue';
|
|
import MkEmoji from '@/components/global/MkEmoji.vue';
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
import { copyToClipboard } from '@/utility/copy-to-clipboard.js';
|
|
|
|
const props = defineProps<{
|
|
palette: {
|
|
id: string;
|
|
name: string;
|
|
emojis: string[];
|
|
};
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'updateEmojis', emojis: string[]): void,
|
|
(ev: 'updateName', name: string): void,
|
|
(ev: 'del'): void,
|
|
}>();
|
|
|
|
const emojis = ref<string[]>(deepClone(props.palette.emojis));
|
|
|
|
watch(emojis, () => {
|
|
emit('updateEmojis', emojis.value);
|
|
}, { deep: true });
|
|
|
|
function remove(reaction: string, ev: MouseEvent) {
|
|
os.popupMenu([{
|
|
text: i18n.ts.remove,
|
|
action: () => {
|
|
emojis.value = emojis.value.filter(x => x !== reaction);
|
|
},
|
|
}], getHTMLElement(ev));
|
|
}
|
|
|
|
function pick(ev: MouseEvent) {
|
|
os.pickEmoji(getHTMLElement(ev), {
|
|
showPinned: false,
|
|
}).then(it => {
|
|
const emoji = it;
|
|
if (!emojis.value.includes(emoji)) {
|
|
emojis.value.push(emoji);
|
|
}
|
|
});
|
|
}
|
|
|
|
function getHTMLElement(ev: MouseEvent): HTMLElement {
|
|
const target = ev.currentTarget ?? ev.target;
|
|
return target as HTMLElement;
|
|
}
|
|
|
|
function rename() {
|
|
os.inputText({
|
|
title: i18n.ts.rename,
|
|
default: props.palette.name,
|
|
}).then(({ canceled, result: name }) => {
|
|
if (canceled) return;
|
|
if (name != null) {
|
|
emit('updateName', name);
|
|
}
|
|
});
|
|
}
|
|
|
|
function copy() {
|
|
copyToClipboard(emojis.value.join(' '));
|
|
}
|
|
|
|
function paste() {
|
|
// TODO: validate
|
|
navigator.clipboard.readText().then(text => {
|
|
emojis.value = text.split(' ');
|
|
});
|
|
}
|
|
|
|
function del(ev: MouseEvent) {
|
|
os.popupMenu([{
|
|
text: i18n.ts.delete,
|
|
action: () => {
|
|
emit('del');
|
|
},
|
|
}], ev.currentTarget ?? ev.target);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.tab {
|
|
margin: calc(var(--MI-margin) / 2) 0;
|
|
padding: calc(var(--MI-margin) / 2) 0;
|
|
background: var(--MI_THEME-bg);
|
|
}
|
|
|
|
.emojis {
|
|
padding: 12px;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.emojisItem {
|
|
display: inline-block;
|
|
padding: 8px;
|
|
cursor: move;
|
|
}
|
|
|
|
.emojisAdd {
|
|
display: inline-block;
|
|
padding: 8px;
|
|
}
|
|
|
|
.editorCaption {
|
|
font-size: 0.85em;
|
|
padding: 8px 0 0 0;
|
|
color: var(--MI_THEME-fgTransparentWeak);
|
|
}
|
|
</style>
|