Clean up unused variables

Ref: grouped-emoji-picker
This commit is contained in:
Tusooa Zhu 2021-10-08 01:20:35 -04:00
parent 38190e50e4
commit 62e14d215d
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 1 additions and 12 deletions

View File

@ -14,13 +14,6 @@ library.add(
faSmileBeam
)
// At widest, approximately 20 emoji are visible in a row,
// loading 3 rows, could be overkill for narrow picker
const LOAD_EMOJI_BY = 60
// When to start loading new batch emoji, in pixels
const LOAD_EMOJI_MARGIN = 64
const filterByKeyword = (list, keyword = '') => {
if (keyword === '') return list
@ -53,10 +46,7 @@ const EmojiPicker = {
showingStickers: false,
groupsScrolledClass: 'scrolled-top',
keepOpen: false,
customEmojiTimeout: null,
customEmojiLoadAllConfirmed: false,
groupLoadedCount: {},
firstLoaded: false
customEmojiTimeout: null
}
},
components: {
@ -135,7 +125,6 @@ const EmojiPicker = {
},
watch: {
keyword () {
this.customEmojiLoadAllConfirmed = false
this.onScroll()
// Wait for the dom to change
this.$nextTick(() => this.initializeLazyLoad())