Skip to content

Commit

Permalink
Feat:emoji picker folder select
Browse files Browse the repository at this point in the history
  • Loading branch information
meronmks committed Oct 21, 2023
1 parent f4970c7 commit b08367b
Show file tree
Hide file tree
Showing 6 changed files with 103 additions and 9 deletions.
1 change: 1 addition & 0 deletions locales/en-US.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ folderName: "Folder name"
createFolder: "Create a folder"
renameFolder: "Rename this folder"
deleteFolder: "Delete this folder"
Folder: "Folder"
addFile: "Add a file"
emptyDrive: "Your Drive is empty"
emptyFolder: "This folder is empty"
Expand Down
1 change: 1 addition & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ export interface Locale {
"createFolder": string;
"renameFolder": string;
"deleteFolder": string;
"Folder": string;
"addFile": string;
"emptyDrive": string;
"emptyFolder": string;
Expand Down
1 change: 1 addition & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ folderName: "フォルダー名"
createFolder: "フォルダーを作成"
renameFolder: "フォルダー名を変更"
deleteFolder: "フォルダーを削除"
Folder: "フォルダー"
addFile: "ファイルを追加"
emptyDrive: "ドライブは空です"
emptyFolder: "フォルダーは空です"
Expand Down
45 changes: 42 additions & 3 deletions packages/frontend/src/components/MkEmojiPicker.section.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ SPDX-License-Identifier: AGPL-3.0-only

<template>
<!-- このコンポーネントの要素のclassは親から利用されるのでむやみに弄らないこと -->
<section>
<!-- フォルダの中にはカスタム絵文字だけ(Unicode絵文字もこっち) -->
<section v-if="!isChildrenExits">
<header class="_acrylic" @click="shown = !shown">
<i class="toggle ti-fw" :class="shown ? 'ti ti-chevron-down' : 'ti ti-chevron-up'"></i> <slot></slot> ({{ emojis.length }})
</header>
Expand All @@ -23,15 +24,54 @@ SPDX-License-Identifier: AGPL-3.0-only
</button>
</div>
</section>
<!-- フォルダの中にはカスタム絵文字やフォルダがある -->
<section v-else>
<header class="_acrylic" @click="shown = !shown">
<i class="toggle ti-fw" :class="shown ? 'ti ti-chevron-down' : 'ti ti-chevron-up'"></i> <slot></slot> ({{ i18n.ts.Folder }} : {{customEmojiTree.length}} {{ i18n.ts.customEmojis}} : {{emojis.length}})
</header>
<div v-if="shown" class="body">
<button
v-for="emoji in emojis"
:key="emoji"
:data-emoji="emoji"
class="_button item"
@pointerenter="computeButtonTitle"
@click="emit('chosen', emoji, $event)"
>
<MkCustomEmoji v-if="emoji[0] === ':'" class="emoji" :name="emoji" :normal="true"/>
<MkEmoji v-else class="emoji" :emoji="emoji" :normal="true"/>
</button>
</div>
<div v-if="shown" style="padding-left: 18px;">
<!-- TODO: 再帰へのイベントの渡し方が微妙なのか反応はするがエフェクトが出ない -->
<MkEmojiPickerSection
v-if="shown"

Check failure on line 48 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

This 'v-if' should be moved to the wrapper element
v-for="child in customEmojiTree"

Check failure on line 49 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

Attribute "v-for" should go before "v-if"
:key="`custom:${child.value}`"
:initialShown="initialShown"
:emojis="computed(() => customEmojis.filter(e => e.category === child.category).map(e => `:${e.name}:`))"
:isChildrenExits="child.children.length!==0"
:customEmojiTree="child.children"
@chosen="emit('chosen', $event)"
>
{{ child.value }}
</MkEmojiPickerSection>
</div>
</section>
</template>

<script lang="ts" setup>
import { ref, computed, Ref } from 'vue';
import { getEmojiName } from '@/scripts/emojilist.js';
import {CustomEmojiFolderTree, getEmojiName} from '@/scripts/emojilist.js';

Check failure on line 65 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required after '{'

Check failure on line 65 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required before '}'
import {i18n} from "../i18n.js";

Check failure on line 66 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required after '{'

Check failure on line 66 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required before '}'
import {customEmojis} from "@/custom-emojis.js";

Check failure on line 67 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required after '{'

Check failure on line 67 in packages/frontend/src/components/MkEmojiPicker.section.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

A space is required before '}'
import MkEmojiPickerSection from "@/components/MkEmojiPicker.section.vue";
const props = defineProps<{
emojis: string[] | Ref<string[]>;
initialShown?: boolean;
isChildrenExits?: boolean;
customEmojiTree?: CustomEmojiFolderTree[];
}>();
const emit = defineEmits<{
Expand All @@ -48,5 +88,4 @@ function computeButtonTitle(ev: MouseEvent): void {
const emoji = elm.dataset.emoji as string;
elm.title = getEmojiName(emoji) ?? emoji;
}
</script>
58 changes: 52 additions & 6 deletions packages/frontend/src/components/MkEmojiPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,20 @@ SPDX-License-Identifier: AGPL-3.0-only
<div v-once class="group">
<header class="_acrylic">{{ i18n.ts.customEmojis }}</header>
<XSection
v-for="category in customEmojiCategories"
:key="`custom:${category}`"
v-for="child in customEmojiFolderRoot.children"
:key="`custom:${child.value}`"
:initialShown="false"
:emojis="computed(() => customEmojis.filter(e => category === null ? (e.category === 'null' || !e.category) : e.category === category).filter(filterAvailable).map(e => `:${e.name}:`))"
:emojis="computed(() => customEmojis.filter(e => child.value === i18n.ts.other ? (e.category === 'null' || !e.category) : e.category === child.value).filter(filterAvailable).map(e => `:${e.name}:`))"
:isChildrenExits="child.children.length!==0"
:customEmojiTree="child.children"
@chosen="chosen"
>
{{ category || i18n.ts.other }}
{{ child.value }}
</XSection>
</div>
<div v-once class="group">
<header class="_acrylic">{{ i18n.ts.emoji }}</header>
<XSection v-for="category in categories" :key="category" :emojis="emojiCharByCategory.get(category) ?? []" @chosen="chosen">{{ category }}</XSection>
<XSection v-for="category in categories" :key="category" :emojis="emojiCharByCategory.get(category) ?? []" :isChildrenExits="false" @chosen="chosen">{{ category }}</XSection>
</div>
</div>
<div class="tabs">
Expand All @@ -100,7 +102,14 @@ SPDX-License-Identifier: AGPL-3.0-only
import { ref, shallowRef, computed, watch, onMounted } from 'vue';
import * as Misskey from 'misskey-js';
import XSection from '@/components/MkEmojiPicker.section.vue';
import { emojilist, emojiCharByCategory, UnicodeEmojiDef, unicodeEmojiCategories as categories, getEmojiName } from '@/scripts/emojilist.js';
import {
emojilist,
emojiCharByCategory,
UnicodeEmojiDef,
unicodeEmojiCategories as categories,
getEmojiName,
CustomEmojiFolderTree
} from '@/scripts/emojilist.js';
import MkRippleEffect from '@/components/MkRippleEffect.vue';
import * as os from '@/os.js';
import { isTouchUsing } from '@/scripts/touch.js';
Expand Down Expand Up @@ -144,6 +153,43 @@ const searchResultCustom = ref<Misskey.entities.CustomEmoji[]>([]);
const searchResultUnicode = ref<UnicodeEmojiDef[]>([]);
const tab = ref<'index' | 'custom' | 'unicode' | 'tags'>('index');

Check failure on line 156 in packages/frontend/src/components/MkEmojiPicker.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

More than 1 blank line not allowed
const customEmojiFolderRoot: CustomEmojiFolderTree = { value: "", category: "", children: [] };
function parseAndMergeCategories(input: string, root: CustomEmojiFolderTree): CustomEmojiFolderTree {
const parts = input.split('/');
var category = ""

Check failure on line 161 in packages/frontend/src/components/MkEmojiPicker.vue

View workflow job for this annotation

GitHub Actions / lint (frontend)

Unexpected var, use let or const instead
let currentNode: CustomEmojiFolderTree = root;
for (const part of parts) {
if (part) {
category += `/${part}`;
category = category.replace(/^\//, '');
let existingNode = currentNode.children.find((node) => node.value === part);
if (!existingNode) {
const newNode: CustomEmojiFolderTree = { value: part, category, children: [] };
currentNode.children.push(newNode);
existingNode = newNode;
}
currentNode = existingNode;
}
}
return currentNode;
}
customEmojiCategories.value.forEach(e => {
if (e !== null){
parseAndMergeCategories(e, customEmojiFolderRoot);
}
});
parseAndMergeCategories(i18n.ts.other, customEmojiFolderRoot);
console.log(customEmojiFolderRoot)
watch(q, () => {
if (emojisEl.value) emojisEl.value.scrollTop = 0;
Expand Down
6 changes: 6 additions & 0 deletions packages/frontend/src/scripts/emojilist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,9 @@ export function getEmojiName(char: string): string | null {
return emojilist[idx].name;
}
}

export interface CustomEmojiFolderTree {
value: string;
category: string;
children: CustomEmojiFolderTree[];
}

0 comments on commit b08367b

Please sign in to comment.