2020-04-21 00:56:39 +05:30
|
|
|
import {SortedArray, MappedList, ConcatList} from "../../../observable/index.js";
|
|
|
|
import {Direction} from "./Direction.js";
|
|
|
|
import {TimelineReader} from "./persistence/TimelineReader.js";
|
|
|
|
import {PendingEventEntry} from "./entries/PendingEventEntry.js";
|
2019-02-28 03:20:08 +05:30
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class Timeline {
|
2020-03-22 04:10:40 +05:30
|
|
|
constructor({roomId, storage, closeCallback, fragmentIdComparer, pendingEvents, user}) {
|
2019-02-28 03:20:08 +05:30
|
|
|
this._roomId = roomId;
|
|
|
|
this._storage = storage;
|
|
|
|
this._closeCallback = closeCallback;
|
2019-05-12 23:56:03 +05:30
|
|
|
this._fragmentIdComparer = fragmentIdComparer;
|
2019-07-29 23:23:58 +05:30
|
|
|
this._remoteEntries = new SortedArray((a, b) => a.compare(b));
|
2019-05-20 00:19:46 +05:30
|
|
|
this._timelineReader = new TimelineReader({
|
|
|
|
roomId: this._roomId,
|
|
|
|
storage: this._storage,
|
|
|
|
fragmentIdComparer: this._fragmentIdComparer
|
|
|
|
});
|
2019-07-29 23:23:58 +05:30
|
|
|
const localEntries = new MappedList(pendingEvents, pe => {
|
|
|
|
return new PendingEventEntry({pendingEvent: pe, user});
|
|
|
|
}, (pee, params) => {
|
|
|
|
pee.notifyUpdate(params);
|
|
|
|
});
|
|
|
|
this._allEntries = new ConcatList(this._remoteEntries, localEntries);
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/** @package */
|
|
|
|
async load() {
|
2019-06-16 20:59:33 +05:30
|
|
|
const entries = await this._timelineReader.readFromEnd(50);
|
2019-07-29 23:23:58 +05:30
|
|
|
this._remoteEntries.setManySorted(entries);
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
|
2020-05-07 22:44:53 +05:30
|
|
|
// TODO: should we rather have generic methods for
|
|
|
|
// - adding new entries
|
|
|
|
// - updating existing entries (redaction, relations)
|
2019-02-28 03:20:08 +05:30
|
|
|
/** @package */
|
|
|
|
appendLiveEntries(newEntries) {
|
2020-03-21 15:17:35 +05:30
|
|
|
this._remoteEntries.setManySorted(newEntries);
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
|
2020-03-22 04:10:40 +05:30
|
|
|
/** @package */
|
|
|
|
addGapEntries(newEntries) {
|
2019-07-29 23:23:58 +05:30
|
|
|
this._remoteEntries.setManySorted(newEntries);
|
2019-03-09 05:11:06 +05:30
|
|
|
}
|
2020-03-22 04:10:40 +05:30
|
|
|
|
2019-06-01 21:09:23 +05:30
|
|
|
// tries to prepend `amount` entries to the `entries` list.
|
2019-03-09 05:11:06 +05:30
|
|
|
async loadAtTop(amount) {
|
2019-07-29 23:28:35 +05:30
|
|
|
const firstEventEntry = this._remoteEntries.array.find(e => !!e.eventType);
|
2019-06-16 20:59:33 +05:30
|
|
|
if (!firstEventEntry) {
|
2019-06-01 21:09:23 +05:30
|
|
|
return;
|
2019-03-09 05:11:06 +05:30
|
|
|
}
|
2019-06-02 18:45:26 +05:30
|
|
|
const entries = await this._timelineReader.readFrom(
|
2019-06-16 20:59:33 +05:30
|
|
|
firstEventEntry.asEventKey(),
|
2019-06-02 18:45:26 +05:30
|
|
|
Direction.Backward,
|
|
|
|
amount
|
|
|
|
);
|
2019-07-29 23:23:58 +05:30
|
|
|
this._remoteEntries.setManySorted(entries);
|
2019-03-09 00:33:18 +05:30
|
|
|
}
|
|
|
|
|
2019-02-28 03:20:08 +05:30
|
|
|
/** @public */
|
|
|
|
get entries() {
|
2019-07-29 23:23:58 +05:30
|
|
|
return this._allEntries;
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/** @public */
|
|
|
|
close() {
|
2020-05-05 01:51:56 +05:30
|
|
|
if (this._closeCallback) {
|
|
|
|
this._closeCallback();
|
|
|
|
this._closeCallback = null;
|
|
|
|
}
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
}
|