1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

add additional checks for hiding autocomplete to prevent text calculation

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2018-07-16 21:27:52 +01:00
parent bdbc2cbd38
commit 3000099991

View File

@@ -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 // 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 (this.autocomplete.state.completionList.length >= 0 && !this.autocomplete.state.hide &&
if (!documentChanged && !rangeEquals(this.state.editorState.selection, editorState.selection)) { this.state.editorState.document.text !== editorState.document.text &&
!rangeEquals(this.state.editorState.selection, editorState.selection))
{
this.autocomplete.hide(); this.autocomplete.hide();
} }