mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
remove unused code.
This commit is contained in:
parent
9a437b63ff
commit
d154e1f6bb
@ -43,12 +43,6 @@ interface EmojiDatasource {
|
|||||||
obsoleted_by: string
|
obsoleted_by: string
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Emoji {
|
|
||||||
keywords: string[]
|
|
||||||
char: string
|
|
||||||
category: string
|
|
||||||
}
|
|
||||||
|
|
||||||
const SHEET_COLUMNS = 58
|
const SHEET_COLUMNS = 58
|
||||||
const MULTIPLY = 100 / (SHEET_COLUMNS - 1)
|
const MULTIPLY = 100 / (SHEET_COLUMNS - 1)
|
||||||
|
|
||||||
@ -69,20 +63,6 @@ for (const emoji of custom) {
|
|||||||
for (const source of datasource) {
|
for (const source of datasource) {
|
||||||
const unified = source.unified.split('-').map(v => v.toLowerCase())
|
const unified = source.unified.split('-').map(v => v.toLowerCase())
|
||||||
|
|
||||||
let emoji: Emoji | null = null
|
|
||||||
let emoji_id: string = ''
|
|
||||||
for (const id of Object.keys(emojis)) {
|
|
||||||
if (unified.includes(id.codePointAt(0)!.toString(16))) {
|
|
||||||
emoji_id = id
|
|
||||||
emoji = {
|
|
||||||
char: id,
|
|
||||||
keywords: emojis[id],
|
|
||||||
category: ''
|
|
||||||
}
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!source.has_img_twitter) {
|
if (!source.has_img_twitter) {
|
||||||
console.log(source.short_name, 'not avalible for set twitter')
|
console.log(source.short_name, 'not avalible for set twitter')
|
||||||
continue
|
continue
|
||||||
@ -90,10 +70,15 @@ for (const source of datasource) {
|
|||||||
|
|
||||||
// keywords
|
// keywords
|
||||||
let words: string[] = []
|
let words: string[] = []
|
||||||
if (!emoji) {
|
for (const id of Object.keys(emojis)) {
|
||||||
|
if (unified.includes(id.codePointAt(0)!.toString(16))) {
|
||||||
|
words = [id, ...emojis[id]]
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (words.length == 0) {
|
||||||
console.log(source.short_name, 'no keywords')
|
console.log(source.short_name, 'no keywords')
|
||||||
} else {
|
|
||||||
words = [emoji_id, ...emoji.keywords]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const name of source.short_names) {
|
for (const name of source.short_names) {
|
||||||
|
Loading…
Reference in New Issue
Block a user