From 76b9a66e98ab3ba456b607e721e514156c7ed84e Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Sun, 9 Jun 2019 20:40:46 +0300 Subject: [PATCH] fixed several bugs --- src/components/emoji-input/emoji-input.js | 28 ++++++++++--------- .../post_status_form/post_status_form.js | 2 +- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/src/components/emoji-input/emoji-input.js b/src/components/emoji-input/emoji-input.js index aae11a9b..e6c26106 100644 --- a/src/components/emoji-input/emoji-input.js +++ b/src/components/emoji-input/emoji-input.js @@ -64,6 +64,7 @@ const EmojiInput = { if (!input) return this.input = input this.resize() + input.elm.addEventListener('transitionend', this.onTransition) input.elm.addEventListener('blur', this.onBlur) input.elm.addEventListener('focus', this.onFocus) input.elm.addEventListener('paste', this.onPaste) @@ -73,6 +74,7 @@ const EmojiInput = { unmounted () { const { input } = this if (input) { + input.elm.removeEventListener('transitionend', this.onTransition) input.elm.removeEventListener('blur', this.onBlur) input.elm.removeEventListener('focus', this.onFocus) input.elm.removeEventListener('paste', this.onPaste) @@ -86,8 +88,8 @@ const EmojiInput = { this.$emit('input', newValue) this.caret = 0 }, - replaceText () { - const len = this.suggestions.length || 0 + replaceText (e) { + const len = (this.suggestions && this.suggestions.length) || 0 if (this.textAtCaret.length === 1) { return } if (len > 0) { const suggestion = this.suggestions[this.highlighted] @@ -96,9 +98,10 @@ const EmojiInput = { this.$emit('input', newValue) this.caret = 0 this.highlighted = 0 + e.preventDefault() } }, - cycleBackward () { + cycleBackward (e) { const len = this.suggestions.length || 0 if (len > 0) { this.highlighted -= 1 @@ -109,7 +112,7 @@ const EmojiInput = { this.highlighted = 0 } }, - cycleForward () { + cycleForward (e) { const len = this.suggestions.length || 0 if (len > 0) { this.highlighted += 1 @@ -120,6 +123,9 @@ const EmojiInput = { this.highlighted = 0 } }, + onTransition (e) { + this.resize(e) + }, onBlur (e) { this.focused = false this.setCaret(e) @@ -145,24 +151,20 @@ const EmojiInput = { const { ctrlKey, shiftKey, key } = e if (key === 'Tab') { if (shiftKey) { - this.cycleBackward() - e.preventDefault() + this.cycleBackward(e) } else { - this.cycleForward() - e.preventDefault() + this.cycleForward(e) } } if (key === 'ArrowUp') { - this.cycleBackward() + this.cycleBackward(e) e.preventDefault() } else if (key === 'ArrowDown') { - this.cycleForward() - e.preventDefault() + this.cycleForward(e) } if (key === 'Enter') { if (!ctrlKey) { - this.replaceText() - e.preventDefault() + this.replaceText(e) } } }, diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 008b821a..1db7af30 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -105,7 +105,7 @@ const PostStatusForm = { }) }, emojiSuggestor () { - suggestor({ emoji: [ + return suggestor({ emoji: [ ...this.$store.state.instance.emoji, ...this.$store.state.instance.customEmoji ]})