2017-03-10 23:04:31 +08:00
|
|
|
//@flow
|
2017-06-24 01:30:16 +08: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 23:04:31 +08:00
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
import { Value } from 'slate';
|
|
|
|
|
2017-03-10 23:04:31 +08:00
|
|
|
import _clamp from 'lodash/clamp';
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
type MessageFormat = 'rich' | 'markdown';
|
2017-03-10 23:04:31 +08:00
|
|
|
|
|
|
|
class HistoryItem {
|
2018-05-20 23:30:39 +08:00
|
|
|
// We store history items in their native format to ensure history is accurate
|
|
|
|
// and then convert them if our RTE has subsequently changed format.
|
2018-04-23 08:13:18 +08:00
|
|
|
value: Value;
|
|
|
|
format: MessageFormat = 'rich';
|
2017-03-10 23:04:31 +08:00
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
constructor(value: ?Value, format: ?MessageFormat) {
|
2018-05-07 05:08:36 +08:00
|
|
|
this.value = value;
|
2017-03-10 23:04:31 +08:00
|
|
|
this.format = format;
|
|
|
|
}
|
|
|
|
|
2018-05-21 06:43:42 +08:00
|
|
|
static fromJSON(obj: Object): HistoryItem {
|
2018-05-08 08:54:06 +08:00
|
|
|
return new HistoryItem(
|
|
|
|
Value.fromJSON(obj.value),
|
2018-05-21 06:43:42 +08:00
|
|
|
obj.format,
|
2018-05-08 08:54:06 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
toJSON(): Object {
|
|
|
|
return {
|
|
|
|
value: this.value.toJSON(),
|
2018-05-21 06:43:42 +08:00
|
|
|
format: this.format,
|
2018-05-08 08:54:06 +08:00
|
|
|
};
|
|
|
|
}
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class ComposerHistoryManager {
|
|
|
|
history: Array<HistoryItem> = [];
|
|
|
|
prefix: string;
|
2018-07-04 19:16:11 +08:00
|
|
|
lastIndex: number = 0; // used for indexing the storage
|
|
|
|
currentIndex: number = 0; // used for indexing the loaded validated history Array
|
2017-03-10 23:04:31 +08:00
|
|
|
|
|
|
|
constructor(roomId: string, prefix: string = 'mx_composer_history_') {
|
|
|
|
this.prefix = prefix + roomId;
|
|
|
|
|
|
|
|
// TODO: Performance issues?
|
2017-06-30 00:02:19 +08:00
|
|
|
let item;
|
2017-11-16 21:19:36 +08:00
|
|
|
for (; item = sessionStorage.getItem(`${this.prefix}[${this.currentIndex}]`); this.currentIndex++) {
|
2018-05-09 08:03:40 +08:00
|
|
|
try {
|
|
|
|
this.history.push(
|
2018-05-21 06:43:42 +08:00
|
|
|
HistoryItem.fromJSON(JSON.parse(item)),
|
2018-05-09 08:03:40 +08:00
|
|
|
);
|
2018-05-21 06:43:42 +08:00
|
|
|
} catch (e) {
|
2018-05-09 08:03:40 +08:00
|
|
|
console.warn("Throwing away unserialisable history", e);
|
|
|
|
}
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
2017-06-30 00:02:19 +08:00
|
|
|
this.lastIndex = this.currentIndex;
|
2018-07-04 19:16:11 +08:00
|
|
|
// reset currentIndex to account for any unserialisable history
|
|
|
|
this.currentIndex = this.history.length;
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
|
|
|
|
2018-04-23 08:13:18 +08:00
|
|
|
save(value: Value, format: MessageFormat) {
|
|
|
|
const item = new HistoryItem(value, format);
|
2017-03-10 23:04:31 +08:00
|
|
|
this.history.push(item);
|
2018-07-04 19:16:11 +08:00
|
|
|
this.currentIndex = this.history.length;
|
2018-05-08 08:54:06 +08:00
|
|
|
sessionStorage.setItem(`${this.prefix}[${this.lastIndex++}]`, JSON.stringify(item.toJSON()));
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
|
|
|
|
2018-05-20 23:30:39 +08:00
|
|
|
getItem(offset: number): ?HistoryItem {
|
2018-07-04 19:16:11 +08:00
|
|
|
this.currentIndex = _clamp(this.currentIndex + offset, 0, this.history.length - 1);
|
|
|
|
return this.history[this.currentIndex];
|
2017-03-10 23:04:31 +08:00
|
|
|
}
|
|
|
|
}
|