Load emoji properly on first showing

merge-requests/1699/head
Tusooa Zhu 3 years ago
parent ba1b006e05
commit 99a368dbb3
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224

@ -58,7 +58,8 @@ const EmojiPicker = {
customEmojiBufferSlice: LOAD_EMOJI_BY,
customEmojiTimeout: null,
customEmojiLoadAllConfirmed: false,
groupLoadedCount: {}
groupLoadedCount: {},
firstLoaded: false
}
},
components: {
@ -167,6 +168,13 @@ const EmojiPicker = {
}
this.$nextTick(() => {
this.$refs['emoji-groups'].scrollTop = 0
this.$nextTick(() => {
if (this.firstLoaded) {
return
}
this.triggerLoadMore(this.$refs['emoji-groups'])
this.firstLoaded = true
})
})
const bufferSize = this.customEmojiBuffer.length
const bufferPrefilledAll = bufferSize === this.filteredEmoji.length

Loading…
Cancel
Save