Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
add additional checks for hiding autocomplete to prevent text calcu…
Browse files Browse the repository at this point in the history
…lation

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy committed Jul 16, 2018
1 parent bdbc2cb commit 3000099
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/views/rooms/MessageComposerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,10 +498,12 @@ export default class MessageComposerInput extends React.Component {
}
}

// when selection changes hide the autocomplete.
// when in autocomplete mode and selection changes hide the autocomplete.
// Selection changes when we enter text so use a heuristic to compare documents without doing it recursively
const documentChanged = this.state.editorState.document.text !== editorState.document.text;
if (!documentChanged && !rangeEquals(this.state.editorState.selection, editorState.selection)) {
if (this.autocomplete.state.completionList.length >= 0 && !this.autocomplete.state.hide &&
this.state.editorState.document.text !== editorState.document.text &&
!rangeEquals(this.state.editorState.selection, editorState.selection))
{
this.autocomplete.hide();
}

Expand Down

0 comments on commit 3000099

Please sign in to comment.