mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
406b4bdbe7
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
98 lines
3 KiB
Vue
98 lines
3 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div class="_gaps">
|
|
<MkButton v-if="$i && ($i.isModerator || $i.policies.canManageCustomEmojis)" primary link to="/custom-emojis-manager">{{ i18n.ts.manageCustomEmojis }}</MkButton>
|
|
|
|
<div class="query">
|
|
<MkInput v-model="q" class="" :placeholder="i18n.ts.search" autocapitalize="off">
|
|
<template #prefix><i class="ti ti-search"></i></template>
|
|
</MkInput>
|
|
|
|
<!-- たくさんあると邪魔
|
|
<div class="tags">
|
|
<span class="tag _button" v-for="tag in customEmojiTags" :class="{ active: selectedTags.has(tag) }" @click="toggleTag(tag)">{{ tag }}</span>
|
|
</div>
|
|
-->
|
|
</div>
|
|
|
|
<MkFoldableSection v-if="searchEmojis">
|
|
<template #header>{{ i18n.ts.searchResult }}</template>
|
|
<div :class="$style.emojis">
|
|
<XEmoji v-for="emoji in searchEmojis" :key="emoji.name" :emoji="emoji"/>
|
|
</div>
|
|
</MkFoldableSection>
|
|
|
|
<MkFoldableSection v-for="category in customEmojiCategories" v-once :key="category">
|
|
<template #header>{{ category || i18n.ts.other }}</template>
|
|
<div :class="$style.emojis">
|
|
<XEmoji v-for="emoji in customEmojis.filter(e => e.category === category)" :key="emoji.name" :emoji="emoji"/>
|
|
</div>
|
|
</MkFoldableSection>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { watch, ref } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import XEmoji from './emojis.emoji.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
|
import { customEmojis, customEmojiCategories, getCustomEmojiTags } from '@/custom-emojis.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { $i } from '@/account.js';
|
|
|
|
const customEmojiTags = getCustomEmojiTags();
|
|
const q = ref('');
|
|
const searchEmojis = ref<Misskey.entities.EmojiSimple[]>(null);
|
|
const selectedTags = ref(new Set());
|
|
|
|
function search() {
|
|
if ((q.value === '' || q.value == null) && selectedTags.value.size === 0) {
|
|
searchEmojis.value = null;
|
|
return;
|
|
}
|
|
|
|
if (selectedTags.value.size === 0) {
|
|
const queryarry = q.value.match(/\:([a-z0-9_]*)\:/g);
|
|
|
|
if (queryarry) {
|
|
searchEmojis.value = customEmojis.value.filter(emoji =>
|
|
queryarry.includes(`:${emoji.name}:`),
|
|
);
|
|
} else {
|
|
searchEmojis.value = customEmojis.value.filter(emoji => emoji.name.includes(q.value) || emoji.aliases.includes(q.value));
|
|
}
|
|
} else {
|
|
searchEmojis.value = customEmojis.value.filter(emoji => (emoji.name.includes(q.value) || emoji.aliases.includes(q.value)) && [...selectedTags.value].every(t => emoji.aliases.includes(t)));
|
|
}
|
|
}
|
|
|
|
function toggleTag(tag) {
|
|
if (selectedTags.value.has(tag)) {
|
|
selectedTags.value.delete(tag);
|
|
} else {
|
|
selectedTags.value.add(tag);
|
|
}
|
|
}
|
|
|
|
watch(q, () => {
|
|
search();
|
|
});
|
|
|
|
watch(selectedTags, () => {
|
|
search();
|
|
}, { deep: true });
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.emojis {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
|
|
grid-gap: 12px;
|
|
}
|
|
</style>
|