2019-06-13 04:32:47 +08:00
|
|
|
//@flow
|
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-08-29 01:53:43 +08:00
|
|
|
import {clamp} from "lodash";
|
2020-10-06 20:55:39 +08:00
|
|
|
import {SerializedPart} from "./editor/parts";
|
|
|
|
import EditorModel from "./editor/model";
|
2019-06-13 04:32:47 +08:00
|
|
|
|
2019-08-21 21:34:49 +08:00
|
|
|
export default class SendHistoryManager {
|
2020-10-06 20:55:39 +08:00
|
|
|
history: Array<SerializedPart[]> = [];
|
2019-06-13 04:32:47 +08:00
|
|
|
prefix: string;
|
2020-10-06 20:55:39 +08:00
|
|
|
lastIndex = 0; // used for indexing the storage
|
|
|
|
currentIndex = 0; // used for indexing the loaded validated history Array
|
2019-06-13 04:32:47 +08:00
|
|
|
|
2019-08-22 21:07:31 +08:00
|
|
|
constructor(roomId: string, prefix: string) {
|
2019-06-13 04:32:47 +08:00
|
|
|
this.prefix = prefix + roomId;
|
|
|
|
|
|
|
|
// TODO: Performance issues?
|
2019-08-20 23:18:46 +08:00
|
|
|
let index = 0;
|
|
|
|
let itemJSON;
|
|
|
|
|
|
|
|
while (itemJSON = sessionStorage.getItem(`${this.prefix}[${index}]`)) {
|
2019-06-13 04:32:47 +08:00
|
|
|
try {
|
2019-08-20 23:18:46 +08:00
|
|
|
const serializedParts = JSON.parse(itemJSON);
|
|
|
|
this.history.push(serializedParts);
|
2019-06-13 04:32:47 +08:00
|
|
|
} catch (e) {
|
|
|
|
console.warn("Throwing away unserialisable history", e);
|
2019-08-20 23:18:46 +08:00
|
|
|
break;
|
2019-06-13 04:32:47 +08:00
|
|
|
}
|
2019-08-20 23:18:46 +08:00
|
|
|
++index;
|
2019-06-13 04:32:47 +08:00
|
|
|
}
|
2019-08-20 23:18:46 +08:00
|
|
|
this.lastIndex = this.history.length - 1;
|
2019-06-13 04:32:47 +08:00
|
|
|
// reset currentIndex to account for any unserialisable history
|
2019-08-20 23:18:46 +08:00
|
|
|
this.currentIndex = this.lastIndex + 1;
|
2019-06-13 04:32:47 +08:00
|
|
|
}
|
|
|
|
|
2020-10-06 20:55:39 +08:00
|
|
|
save(editorModel: EditorModel) {
|
2019-08-20 23:18:46 +08:00
|
|
|
const serializedParts = editorModel.serializeParts();
|
|
|
|
this.history.push(serializedParts);
|
2019-06-13 04:32:47 +08:00
|
|
|
this.currentIndex = this.history.length;
|
2019-08-20 23:18:46 +08:00
|
|
|
this.lastIndex += 1;
|
|
|
|
sessionStorage.setItem(`${this.prefix}[${this.lastIndex}]`, JSON.stringify(serializedParts));
|
2019-06-13 04:32:47 +08:00
|
|
|
}
|
|
|
|
|
2020-10-06 20:55:39 +08:00
|
|
|
getItem(offset: number): SerializedPart[] {
|
2020-08-29 01:53:43 +08:00
|
|
|
this.currentIndex = clamp(this.currentIndex + offset, 0, this.history.length - 1);
|
2019-06-13 04:32:47 +08:00
|
|
|
return this.history[this.currentIndex];
|
|
|
|
}
|
|
|
|
}
|