preserve selection and history between room changes and refreshes

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-07-16 22:04:42 +01:00
parent 1c24f1fd5a
commit cbe5944ff0
No known key found for this signature in database
GPG Key ID: 3F879DA5AD802A5E

View File

@ -32,7 +32,12 @@ class MessageComposerStore {
setEditorState(roomId: string, editorState: Value, richText: boolean) {
localStorage.setItem(this._getKey(roomId), JSON.stringify({
editor_state: editorState,
editor_state: editorState.toJSON({
preserveSelection: true,
preserveHistory: true,
// XXX: this seems like a workaround for selection.isSet being based on anchorKey instead of anchorPath
preserveKeys: true,
}),
rich_text: richText,
}));
}