2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
|
|
|
<XModalWindow ref="dialog"
|
|
|
|
:width="370"
|
|
|
|
:with-ok-button="true"
|
|
|
|
@close="$refs.dialog.close()"
|
|
|
|
@closed="$emit('closed')"
|
|
|
|
@ok="ok()"
|
|
|
|
>
|
|
|
|
<template #header>:{{ emoji.name }}:</template>
|
|
|
|
|
2021-04-21 06:06:02 +03:00
|
|
|
<div class="_monolithic_">
|
|
|
|
<div class="yigymqpb _section">
|
|
|
|
<img :src="emoji.url" class="img"/>
|
2021-11-19 12:36:12 +02:00
|
|
|
<MkInput v-model="name" class="_formBlock">
|
2021-08-06 16:29:19 +03:00
|
|
|
<template #label>{{ $ts.name }}</template>
|
|
|
|
</MkInput>
|
2021-11-19 12:36:12 +02:00
|
|
|
<MkInput v-model="category" class="_formBlock" :datalist="categories">
|
2021-08-06 16:29:19 +03:00
|
|
|
<template #label>{{ $ts.category }}</template>
|
|
|
|
</MkInput>
|
2021-11-19 12:36:12 +02:00
|
|
|
<MkInput v-model="aliases" class="_formBlock">
|
2021-08-06 16:29:19 +03:00
|
|
|
<template #label>{{ $ts.tags }}</template>
|
|
|
|
<template #caption>{{ $ts.setMultipleBySeparatingWithSpace }}</template>
|
2021-04-21 06:06:02 +03:00
|
|
|
</MkInput>
|
|
|
|
<MkButton danger @click="del()"><i class="fas fa-trash-alt"></i> {{ $ts.delete }}</MkButton>
|
|
|
|
</div>
|
2020-10-17 14:12:00 +03:00
|
|
|
</div>
|
|
|
|
</XModalWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import XModalWindow from '@/components/ui/modal-window.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { unique } from '@/scripts/array';
|
2020-10-17 14:12:00 +03:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
XModalWindow,
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
emoji: {
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['done', 'closed'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
name: this.emoji.name,
|
|
|
|
category: this.emoji.category,
|
|
|
|
aliases: this.emoji.aliases?.join(' '),
|
|
|
|
categories: [],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
os.api('meta', { detail: false }).then(({ emojis }) => {
|
|
|
|
this.categories = unique(emojis.map((x: any) => x.category || '').filter((x: string) => x !== ''));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
ok() {
|
|
|
|
this.update();
|
|
|
|
},
|
|
|
|
|
|
|
|
async update() {
|
|
|
|
await os.apiWithDialog('admin/emoji/update', {
|
|
|
|
id: this.emoji.id,
|
|
|
|
name: this.name,
|
|
|
|
category: this.category,
|
|
|
|
aliases: this.aliases.split(' '),
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$emit('done', {
|
|
|
|
updated: {
|
|
|
|
name: this.name,
|
|
|
|
category: this.category,
|
|
|
|
aliases: this.aliases.split(' '),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.$refs.dialog.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
async del() {
|
2021-11-18 11:45:58 +02:00
|
|
|
const { canceled } = await os.confirm({
|
2020-10-17 14:12:00 +03:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$t('removeAreYouSure', { x: this.emoji.name }),
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.api('admin/emoji/remove', {
|
|
|
|
id: this.emoji.id
|
|
|
|
}).then(() => {
|
|
|
|
this.$emit('done', {
|
|
|
|
deleted: true
|
|
|
|
});
|
|
|
|
this.$refs.dialog.close();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.yigymqpb {
|
|
|
|
> .img {
|
|
|
|
display: block;
|
|
|
|
height: 64px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|