2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
<template>
|
2023-01-06 02:41:14 +02:00
|
|
|
<MkModalWindow
|
2022-07-20 16:24:26 +03:00
|
|
|
ref="dialog"
|
2023-05-18 12:45:49 +03:00
|
|
|
:width="400"
|
|
|
|
@close="dialog.close()"
|
2020-10-17 14:12:00 +03:00
|
|
|
@closed="$emit('closed')"
|
|
|
|
>
|
2023-05-18 12:45:49 +03:00
|
|
|
<template v-if="emoji" #header>:{{ emoji.name }}:</template>
|
|
|
|
<template v-else #header>New emoji</template>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
|
|
|
<div class="_gaps_m">
|
|
|
|
<div v-if="imgUrl != null" :class="$style.imgs">
|
|
|
|
<div style="background: #000;" :class="$style.imgContainer">
|
|
|
|
<img :src="imgUrl" :class="$style.img"/>
|
|
|
|
</div>
|
|
|
|
<div style="background: #222;" :class="$style.imgContainer">
|
|
|
|
<img :src="imgUrl" :class="$style.img"/>
|
|
|
|
</div>
|
|
|
|
<div style="background: #ddd;" :class="$style.imgContainer">
|
|
|
|
<img :src="imgUrl" :class="$style.img"/>
|
|
|
|
</div>
|
|
|
|
<div style="background: #fff;" :class="$style.imgContainer">
|
|
|
|
<img :src="imgUrl" :class="$style.img"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<MkButton rounded style="margin: 0 auto;" @click="changeImage">{{ i18n.ts.selectFile }}</MkButton>
|
2023-07-20 11:29:21 +03:00
|
|
|
<MkInput v-model="name" pattern="[a-z0-9_]">
|
2023-05-18 12:45:49 +03:00
|
|
|
<template #label>{{ i18n.ts.name }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInput v-model="category" :datalist="customEmojiCategories">
|
|
|
|
<template #label>{{ i18n.ts.category }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInput v-model="aliases">
|
|
|
|
<template #label>{{ i18n.ts.tags }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.setMultipleBySeparatingWithSpace }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkInput v-model="license">
|
|
|
|
<template #label>{{ i18n.ts.license }}</template>
|
|
|
|
</MkInput>
|
|
|
|
<MkFolder>
|
|
|
|
<template #label>{{ i18n.ts.rolesThatCanBeUsedThisEmojiAsReaction }}</template>
|
2023-05-18 14:17:32 +03:00
|
|
|
<template #suffix>{{ rolesThatCanBeUsedThisEmojiAsReaction.length === 0 ? i18n.ts.all : rolesThatCanBeUsedThisEmojiAsReaction.length }}</template>
|
2023-05-18 12:45:49 +03:00
|
|
|
|
2023-05-18 14:17:32 +03:00
|
|
|
<div class="_gaps">
|
2023-05-18 12:45:49 +03:00
|
|
|
<MkButton rounded @click="addRole"><i class="ti ti-plus"></i> {{ i18n.ts.add }}</MkButton>
|
|
|
|
|
|
|
|
<div v-for="role in rolesThatCanBeUsedThisEmojiAsReaction" :key="role.id" :class="$style.roleItem">
|
2023-05-18 14:17:32 +03:00
|
|
|
<MkRolePreview :class="$style.role" :role="role" :forModeration="true" :detailed="false" style="pointer-events: none;"/>
|
2023-05-18 12:45:49 +03:00
|
|
|
<button v-if="role.target === 'manual'" class="_button" :class="$style.roleUnassign" @click="removeRole(role, $event)"><i class="ti ti-x"></i></button>
|
|
|
|
<button v-else class="_button" :class="$style.roleUnassign" disabled><i class="ti ti-ban"></i></button>
|
|
|
|
</div>
|
2023-05-18 14:17:32 +03:00
|
|
|
|
|
|
|
<MkInfo>{{ i18n.ts.rolesThatCanBeUsedThisEmojiAsReactionEmptyDescription }}</MkInfo>
|
|
|
|
<MkInfo warn>{{ i18n.ts.rolesThatCanBeUsedThisEmojiAsReactionPublicRoleWarn }}</MkInfo>
|
2023-05-18 12:45:49 +03:00
|
|
|
</div>
|
|
|
|
</MkFolder>
|
|
|
|
<MkSwitch v-model="isSensitive">isSensitive</MkSwitch>
|
|
|
|
<MkSwitch v-model="localOnly">{{ i18n.ts.localOnly }}</MkSwitch>
|
2023-08-13 14:12:29 +03:00
|
|
|
<MkButton v-if="emoji" danger @click="del()"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>
|
2023-05-18 12:45:49 +03:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
<div :class="$style.footer">
|
|
|
|
<MkButton primary rounded style="margin: 0 auto;" @click="done"><i class="ti ti-check"></i> {{ props.emoji ? i18n.ts.update : i18n.ts.create }}</MkButton>
|
2021-04-21 06:06:02 +03:00
|
|
|
</div>
|
2023-05-18 12:45:49 +03:00
|
|
|
</div>
|
2023-01-06 02:41:14 +02:00
|
|
|
</MkModalWindow>
|
2020-10-17 14:12:00 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
<script lang="ts" setup>
|
2023-05-18 12:45:49 +03:00
|
|
|
import { computed, watch } from 'vue';
|
2023-09-04 07:33:38 +03:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-06 02:41:14 +02:00
|
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-05-18 12:45:49 +03:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-05-15 16:20:01 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2023-01-16 12:36:29 +02:00
|
|
|
import { customEmojiCategories } from '@/custom-emojis';
|
2023-05-18 12:45:49 +03:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
import { selectFile, selectFiles } from '@/scripts/select-file';
|
|
|
|
import MkRolePreview from '@/components/MkRolePreview.vue';
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
const props = defineProps<{
|
2023-05-18 12:45:49 +03:00
|
|
|
emoji?: any,
|
2022-05-15 16:20:01 +03:00
|
|
|
}>();
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
let dialog = $ref(null);
|
2023-05-18 12:45:49 +03:00
|
|
|
let name: string = $ref(props.emoji ? props.emoji.name : '');
|
|
|
|
let category: string = $ref(props.emoji ? props.emoji.category : '');
|
|
|
|
let aliases: string = $ref(props.emoji ? props.emoji.aliases.join(' ') : '');
|
|
|
|
let license: string = $ref(props.emoji ? (props.emoji.license ?? '') : '');
|
|
|
|
let isSensitive = $ref(props.emoji ? props.emoji.isSensitive : false);
|
|
|
|
let localOnly = $ref(props.emoji ? props.emoji.localOnly : false);
|
|
|
|
let roleIdsThatCanBeUsedThisEmojiAsReaction = $ref(props.emoji ? props.emoji.roleIdsThatCanBeUsedThisEmojiAsReaction : []);
|
|
|
|
let rolesThatCanBeUsedThisEmojiAsReaction = $ref([]);
|
2023-09-04 07:33:38 +03:00
|
|
|
let file = $ref<Misskey.entities.DriveFile>();
|
2023-05-18 12:45:49 +03:00
|
|
|
|
|
|
|
watch($$(roleIdsThatCanBeUsedThisEmojiAsReaction), async () => {
|
|
|
|
rolesThatCanBeUsedThisEmojiAsReaction = (await Promise.all(roleIdsThatCanBeUsedThisEmojiAsReaction.map((id) => os.api('admin/roles/show', { roleId: id }).catch(() => null)))).filter(x => x != null);
|
|
|
|
}, { immediate: true });
|
|
|
|
|
|
|
|
const imgUrl = computed(() => file ? file.url : props.emoji ? `/emoji/${props.emoji.name}.webp` : null);
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
const emit = defineEmits<{
|
2023-05-18 12:45:49 +03:00
|
|
|
(ev: 'done', v: { deleted?: boolean; updated?: any; created?: any }): void,
|
2022-05-15 16:20:01 +03:00
|
|
|
(ev: 'closed'): void
|
|
|
|
}>();
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-05-18 12:45:49 +03:00
|
|
|
async function changeImage(ev) {
|
|
|
|
file = await selectFile(ev.currentTarget ?? ev.target, null);
|
2023-07-20 11:29:21 +03:00
|
|
|
const candidate = file.name.replace(/\.(.+)$/, '');
|
|
|
|
if (candidate.match(/^[a-z0-9_]+$/)) {
|
|
|
|
name = candidate;
|
|
|
|
}
|
2022-05-15 16:20:01 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-05-18 12:45:49 +03:00
|
|
|
async function addRole() {
|
|
|
|
const roles = await os.api('admin/roles/list');
|
|
|
|
const currentRoleIds = rolesThatCanBeUsedThisEmojiAsReaction.map(x => x.id);
|
|
|
|
|
|
|
|
const { canceled, result: role } = await os.select({
|
2023-05-19 03:14:54 +03:00
|
|
|
items: roles.filter(r => r.isPublic).filter(r => !currentRoleIds.includes(r.id)).map(r => ({ text: r.name, value: r })),
|
2023-05-18 12:45:49 +03:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
rolesThatCanBeUsedThisEmojiAsReaction.push(role);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function removeRole(role, ev) {
|
|
|
|
rolesThatCanBeUsedThisEmojiAsReaction = rolesThatCanBeUsedThisEmojiAsReaction.filter(x => x.id !== role.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function done() {
|
|
|
|
const params = {
|
2022-05-15 16:20:01 +03:00
|
|
|
name,
|
2023-05-18 14:17:32 +03:00
|
|
|
category: category === '' ? null : category,
|
|
|
|
aliases: aliases.split(' ').filter(x => x !== ''),
|
2023-03-16 08:08:48 +02:00
|
|
|
license: license === '' ? null : license,
|
2023-05-18 12:45:49 +03:00
|
|
|
isSensitive,
|
|
|
|
localOnly,
|
|
|
|
roleIdsThatCanBeUsedThisEmojiAsReaction: rolesThatCanBeUsedThisEmojiAsReaction.map(x => x.id),
|
|
|
|
};
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-05-18 12:45:49 +03:00
|
|
|
if (file) {
|
|
|
|
params.fileId = file.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.emoji) {
|
|
|
|
await os.apiWithDialog('admin/emoji/update', {
|
2022-05-15 16:20:01 +03:00
|
|
|
id: props.emoji.id,
|
2023-05-18 12:45:49 +03:00
|
|
|
...params,
|
|
|
|
});
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2023-05-18 12:45:49 +03:00
|
|
|
emit('done', {
|
|
|
|
updated: {
|
|
|
|
id: props.emoji.id,
|
|
|
|
...params,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.close();
|
|
|
|
} else {
|
|
|
|
const created = await os.apiWithDialog('admin/emoji/add', params);
|
|
|
|
|
|
|
|
emit('done', {
|
|
|
|
created: created,
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.close();
|
|
|
|
}
|
2022-05-15 16:20:01 +03:00
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
async function del() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('removeAreYouSure', { x: name }),
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2020-10-17 14:12:00 +03:00
|
|
|
|
2022-05-15 16:20:01 +03:00
|
|
|
os.api('admin/emoji/delete', {
|
2022-07-20 16:24:26 +03:00
|
|
|
id: props.emoji.id,
|
2022-05-15 16:20:01 +03:00
|
|
|
}).then(() => {
|
|
|
|
emit('done', {
|
2022-07-20 16:24:26 +03:00
|
|
|
deleted: true,
|
2022-05-15 16:20:01 +03:00
|
|
|
});
|
|
|
|
dialog.close();
|
|
|
|
});
|
|
|
|
}
|
2020-10-17 14:12:00 +03:00
|
|
|
</script>
|
|
|
|
|
2023-05-14 04:21:56 +03:00
|
|
|
<style lang="scss" module>
|
2023-05-18 12:45:49 +03:00
|
|
|
.imgs {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.imgContainer {
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2023-05-14 04:21:56 +03:00
|
|
|
.img {
|
|
|
|
display: block;
|
|
|
|
height: 64px;
|
2023-05-18 12:45:49 +03:00
|
|
|
width: 64px;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roleItem {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.role {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roleUnassign {
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
margin-left: 8px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 12px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
2020-10-17 14:12:00 +03:00
|
|
|
}
|
|
|
|
</style>
|