2019-06-13 04:32:47 +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.
|
|
|
|
*/
|
|
|
|
|
2020-08-29 01:53:43 +08:00
|
|
|
import {clamp} from "lodash";
|
2020-10-06 21:47:53 +08:00
|
|
|
import {MatrixEvent} from "matrix-js-sdk/src/models/event";
|
|
|
|
|
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
|
|
|
|
2020-10-06 21:47:53 +08:00
|
|
|
interface IHistoryItem {
|
|
|
|
parts: SerializedPart[];
|
|
|
|
replyEventId?: string;
|
|
|
|
}
|
|
|
|
|
2019-08-21 21:34:49 +08:00
|
|
|
export default class SendHistoryManager {
|
2020-10-06 21:47:53 +08:00
|
|
|
history: Array<IHistoryItem> = [];
|
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 {
|
2020-10-08 16:51:31 +08:00
|
|
|
this.history.push(JSON.parse(itemJSON));
|
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 21:47:53 +08:00
|
|
|
static createItem(model: EditorModel, replyEvent?: MatrixEvent): IHistoryItem {
|
|
|
|
return {
|
|
|
|
parts: model.serializeParts(),
|
|
|
|
replyEventId: replyEvent ? replyEvent.getId() : undefined,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
save(editorModel: EditorModel, replyEvent?: MatrixEvent) {
|
|
|
|
const item = SendHistoryManager.createItem(editorModel, replyEvent);
|
|
|
|
this.history.push(item);
|
2019-06-13 04:32:47 +08:00
|
|
|
this.currentIndex = this.history.length;
|
2019-08-20 23:18:46 +08:00
|
|
|
this.lastIndex += 1;
|
2020-10-06 21:47:53 +08:00
|
|
|
sessionStorage.setItem(`${this.prefix}[${this.lastIndex}]`, JSON.stringify(item));
|
2019-06-13 04:32:47 +08:00
|
|
|
}
|
|
|
|
|
2020-10-06 21:47:53 +08:00
|
|
|
getItem(offset: number): IHistoryItem {
|
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];
|
|
|
|
}
|
|
|
|
}
|