fix: save editor state when reply is open
This commit is contained in:
parent
356e4bc6fc
commit
97c7f3753b
1 changed files with 8 additions and 3 deletions
|
@ -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 = () => {
|
_saveStoredEditorState = () => {
|
||||||
if (this.model.isEmpty) {
|
if (this._shouldSaveStoredEditorState()) {
|
||||||
this._clearStoredEditorState();
|
|
||||||
} else {
|
|
||||||
const item = SendHistoryManager.createItem(this.model, this.props.replyToEvent);
|
const item = SendHistoryManager.createItem(this.model, this.props.replyToEvent);
|
||||||
localStorage.setItem(this._editorStateKey, JSON.stringify(item));
|
localStorage.setItem(this._editorStateKey, JSON.stringify(item));
|
||||||
|
} else {
|
||||||
|
this._clearStoredEditorState();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue