Merge pull request #5796 from panoschal/fix/save-editor-state-when-reply-is-open

Remember reply when switching rooms
This commit is contained in:
Michael Telatynski 2021-03-25 20:27:57 +00:00 committed by GitHub
commit 75bfaa58bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -472,12 +472,17 @@ export default class SendMessageComposer extends React.Component {
}
}
// should save state when editor has contents or reply is open
_shouldSaveStoredEditorState = () => {
return !this.model.isEmpty || this.props.replyToEvent;
}
_saveStoredEditorState = () => {
if (this.model.isEmpty) {
this._clearStoredEditorState();
} else {
if (this._shouldSaveStoredEditorState()) {
const item = SendHistoryManager.createItem(this.model, this.props.replyToEvent);
localStorage.setItem(this._editorStateKey, JSON.stringify(item));
} else {
this._clearStoredEditorState();
}
}