forked from AkkomaGang/akkoma-fe
Merge pull request 'Do not copy all emojis in recentEmoji getter' (#340) from sn0w/akkoma-fe:feature/optimize-recent-emojis into develop
Reviewed-on: AkkomaGang/akkoma-fe#340
This commit is contained in:
commit
58be48d164
1 changed files with 9 additions and 2 deletions
|
@ -37,11 +37,18 @@ const recentEmojis = {
|
||||||
|
|
||||||
getters: {
|
getters: {
|
||||||
recentEmojis: (state, getters, rootState) => state.emojis.reduce((objects, displayText) => {
|
recentEmojis: (state, getters, rootState) => state.emojis.reduce((objects, displayText) => {
|
||||||
const allEmojis = rootState.instance.emoji.concat(rootState.instance.customEmoji)
|
let comparator = emoji => emoji.displayText === displayText
|
||||||
let emojiObject = allEmojis.find(emoji => emoji.displayText === displayText)
|
|
||||||
|
let emojiObject = rootState.instance.emoji.find(comparator)
|
||||||
if (emojiObject !== undefined) {
|
if (emojiObject !== undefined) {
|
||||||
objects.push(emojiObject)
|
objects.push(emojiObject)
|
||||||
|
} else {
|
||||||
|
emojiObject = rootState.instance.customEmoji.find(comparator)
|
||||||
|
if (emojiObject !== undefined) {
|
||||||
|
objects.push(emojiObject)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return objects
|
return objects
|
||||||
}, []),
|
}, []),
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue