element-web/src/ComposerHistoryManager.js

93 lines
2.7 KiB
JavaScript
Raw Normal View History

2017-03-10 18:04:31 +03:00
//@flow
2017-06-23 20:30:16 +03:00
/*
Copyright 2017 Aviral Dasgupta
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2017-03-10 18:04:31 +03:00
import { Value } from 'slate';
import Html from 'slate-html-serializer';
2018-05-17 04:13:17 +03:00
import Md from 'slate-md-serializer';
import Plain from 'slate-plain-serializer';
2017-03-10 18:04:31 +03:00
import * as RichText from './RichText';
import Markdown from './Markdown';
2017-03-10 18:04:31 +03:00
import _clamp from 'lodash/clamp';
type MessageFormat = 'rich' | 'markdown';
2017-03-10 18:04:31 +03:00
class HistoryItem {
// We store history items in their native format to ensure history is accurate
// and then convert them if our RTE has subsequently changed format.
value: Value;
format: MessageFormat = 'rich';
2017-03-10 18:04:31 +03:00
constructor(value: ?Value, format: ?MessageFormat) {
this.value = value;
2017-03-10 18:04:31 +03:00
this.format = format;
}
2018-05-08 03:54:06 +03:00
static fromJSON(obj): HistoryItem {
return new HistoryItem(
Value.fromJSON(obj.value),
obj.format
);
}
toJSON(): Object {
return {
value: this.value.toJSON(),
format: this.format
};
}
2017-03-10 18:04:31 +03:00
}
export default class ComposerHistoryManager {
history: Array<HistoryItem> = [];
prefix: string;
lastIndex: number = 0;
currentIndex: number = 0;
2017-03-10 18:04:31 +03:00
constructor(roomId: string, prefix: string = 'mx_composer_history_') {
this.prefix = prefix + roomId;
// TODO: Performance issues?
let item;
2017-11-16 16:19:36 +03:00
for (; item = sessionStorage.getItem(`${this.prefix}[${this.currentIndex}]`); this.currentIndex++) {
2018-05-09 03:03:40 +03:00
try {
this.history.push(
HistoryItem.fromJSON(JSON.parse(item))
);
}
catch (e) {
console.warn("Throwing away unserialisable history", e);
}
2017-03-10 18:04:31 +03:00
}
this.lastIndex = this.currentIndex;
2017-03-10 18:04:31 +03:00
}
save(value: Value, format: MessageFormat) {
const item = new HistoryItem(value, format);
2017-03-10 18:04:31 +03:00
this.history.push(item);
this.currentIndex = this.lastIndex + 1;
2018-05-08 03:54:06 +03:00
sessionStorage.setItem(`${this.prefix}[${this.lastIndex++}]`, JSON.stringify(item.toJSON()));
2017-03-10 18:04:31 +03:00
}
getItem(offset: number): ?HistoryItem {
2017-03-10 18:04:31 +03:00
this.currentIndex = _clamp(this.currentIndex + offset, 0, this.lastIndex - 1);
const item = this.history[this.currentIndex];
return item;
2017-03-10 18:04:31 +03:00
}
}