2019-06-12 22:32:47 +02: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.
|
|
|
|
*/
|
|
|
|
|
2021-06-29 14:11:58 +02:00
|
|
|
import { clamp } from "lodash";
|
2023-08-07 10:24:58 +02:00
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/matrix";
|
2021-10-23 00:23:32 +02:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2020-10-06 15:47:53 +02:00
|
|
|
|
2021-06-29 14:11:58 +02:00
|
|
|
import { SerializedPart } from "./editor/parts";
|
2020-10-06 14:55:39 +02:00
|
|
|
import EditorModel from "./editor/model";
|
2019-06-12 22:32:47 +02:00
|
|
|
|
2020-10-06 15:47:53 +02:00
|
|
|
interface IHistoryItem {
|
|
|
|
parts: SerializedPart[];
|
|
|
|
replyEventId?: string;
|
|
|
|
}
|
|
|
|
|
2019-08-21 15:34:49 +02:00
|
|
|
export default class SendHistoryManager {
|
2022-12-16 13:29:59 +01:00
|
|
|
public history: Array<IHistoryItem> = [];
|
|
|
|
public prefix: string;
|
|
|
|
public lastIndex = 0; // used for indexing the storage
|
|
|
|
public currentIndex = 0; // used for indexing the loaded validated history Array
|
2019-06-12 22:32:47 +02:00
|
|
|
|
2022-12-16 13:29:59 +01:00
|
|
|
public constructor(roomId: string, prefix: string) {
|
2019-06-12 22:32:47 +02:00
|
|
|
this.prefix = prefix + roomId;
|
|
|
|
|
|
|
|
// TODO: Performance issues?
|
2019-08-20 17:18:46 +02:00
|
|
|
let index = 0;
|
|
|
|
let itemJSON;
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
while ((itemJSON = sessionStorage.getItem(`${this.prefix}[${index}]`))) {
|
2019-06-12 22:32:47 +02:00
|
|
|
try {
|
2020-10-08 10:51:31 +02:00
|
|
|
this.history.push(JSON.parse(itemJSON));
|
2019-06-12 22:32:47 +02:00
|
|
|
} catch (e) {
|
2021-10-15 16:31:29 +02:00
|
|
|
logger.warn("Throwing away unserialisable history", e);
|
2019-08-20 17:18:46 +02:00
|
|
|
break;
|
2019-06-12 22:32:47 +02:00
|
|
|
}
|
2019-08-20 17:18:46 +02:00
|
|
|
++index;
|
2019-06-12 22:32:47 +02:00
|
|
|
}
|
2019-08-20 17:18:46 +02:00
|
|
|
this.lastIndex = this.history.length - 1;
|
2019-06-12 22:32:47 +02:00
|
|
|
// reset currentIndex to account for any unserialisable history
|
2019-08-20 17:18:46 +02:00
|
|
|
this.currentIndex = this.lastIndex + 1;
|
2019-06-12 22:32:47 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 13:29:59 +01:00
|
|
|
public static createItem(model: EditorModel, replyEvent?: MatrixEvent): IHistoryItem {
|
2020-10-06 15:47:53 +02:00
|
|
|
return {
|
|
|
|
parts: model.serializeParts(),
|
|
|
|
replyEventId: replyEvent ? replyEvent.getId() : undefined,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-01-12 14:25:14 +01:00
|
|
|
public save(editorModel: EditorModel, replyEvent?: MatrixEvent): void {
|
2020-10-06 15:47:53 +02:00
|
|
|
const item = SendHistoryManager.createItem(editorModel, replyEvent);
|
|
|
|
this.history.push(item);
|
2019-06-12 22:32:47 +02:00
|
|
|
this.currentIndex = this.history.length;
|
2019-08-20 17:18:46 +02:00
|
|
|
this.lastIndex += 1;
|
2020-10-06 15:47:53 +02:00
|
|
|
sessionStorage.setItem(`${this.prefix}[${this.lastIndex}]`, JSON.stringify(item));
|
2019-06-12 22:32:47 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 13:29:59 +01:00
|
|
|
public getItem(offset: number): IHistoryItem {
|
2020-08-28 19:53:43 +02:00
|
|
|
this.currentIndex = clamp(this.currentIndex + offset, 0, this.history.length - 1);
|
2019-06-12 22:32:47 +02:00
|
|
|
return this.history[this.currentIndex];
|
|
|
|
}
|
|
|
|
}
|