mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2024-11-08 09:29:10 +00:00
Do not copy all emojis in recentEmoji getter
This commit is contained in:
parent
174f98b1cb
commit
6a1409e09b
1 changed files with 9 additions and 2 deletions
|
@ -37,11 +37,18 @@ const recentEmojis = {
|
|||
|
||||
getters: {
|
||||
recentEmojis: (state, getters, rootState) => state.emojis.reduce((objects, displayText) => {
|
||||
const allEmojis = rootState.instance.emoji.concat(rootState.instance.customEmoji)
|
||||
let emojiObject = allEmojis.find(emoji => emoji.displayText === displayText)
|
||||
let comparator = emoji => emoji.displayText === displayText
|
||||
|
||||
let emojiObject = rootState.instance.emoji.find(comparator)
|
||||
if (emojiObject !== undefined) {
|
||||
objects.push(emojiObject)
|
||||
} else {
|
||||
emojiObject = rootState.instance.customEmoji.find(comparator)
|
||||
if (emojiObject !== undefined) {
|
||||
objects.push(emojiObject)
|
||||
}
|
||||
}
|
||||
|
||||
return objects
|
||||
}, []),
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue