hydrogen-web/src/matrix/room/room.js

87 lines
2.9 KiB
JavaScript
Raw Normal View History

import EventEmitter from "../../EventEmitter.js";
2019-02-11 01:55:29 +05:30
import RoomSummary from "./summary.js";
import SyncWriter from "./timeline/persistence/SyncWriter.js";
import Timeline from "./timeline/Timeline.js";
import FragmentIdComparer from "./timeline/FragmentIdComparer.js";
import SendQueue from "./sending/SendQueue.js";
2018-12-21 19:05:24 +05:30
2019-02-21 04:18:16 +05:30
export default class Room extends EventEmitter {
constructor({roomId, storage, hsApi, emitCollectionChange, sendScheduler, pendingEvents, user}) {
2019-02-21 04:18:16 +05:30
super();
this._roomId = roomId;
this._storage = storage;
this._hsApi = hsApi;
2019-02-11 01:55:29 +05:30
this._summary = new RoomSummary(roomId);
this._fragmentIdComparer = new FragmentIdComparer([]);
this._syncWriter = new SyncWriter({roomId, fragmentIdComparer: this._fragmentIdComparer});
2019-02-21 04:18:16 +05:30
this._emitCollectionChange = emitCollectionChange;
this._sendQueue = new SendQueue({roomId, storage, sendScheduler, pendingEvents});
this._timeline = null;
this._user = user;
2018-12-21 19:05:24 +05:30
}
async writeSync(roomResponse, membership, txn) {
const summaryChanges = this._summary.writeSync(roomResponse, membership, txn);
const {entries, newLiveKey} = await this._syncWriter.writeSync(roomResponse, txn);
let removedPendingEvents;
if (roomResponse.timeline && roomResponse.timeline.events) {
removedPendingEvents = this._sendQueue.removeRemoteEchos(roomResponse.timeline.events, txn);
}
return {summaryChanges, newTimelineEntries: entries, newLiveKey, removedPendingEvents};
}
afterSync({summaryChanges, newTimelineEntries, newLiveKey, removedPendingEvents}) {
if (summaryChanges) {
this._summary.afterSync(summaryChanges);
2019-02-21 04:18:16 +05:30
this.emit("change");
this._emitCollectionChange(this);
2019-02-21 04:18:16 +05:30
}
this._syncWriter.setKeyOnCompleted(newLiveKey);
if (this._timeline) {
this._timeline.appendLiveEntries(newTimelineEntries);
}
if (removedPendingEvents) {
this._sendQueue.emitRemovals(removedPendingEvents);
}
2018-12-21 19:05:24 +05:30
}
2019-07-27 02:10:39 +05:30
resumeSending() {
this._sendQueue.resumeSending();
}
2019-02-11 01:55:29 +05:30
load(summary, txn) {
this._summary.load(summary);
return this._syncWriter.load(txn);
2018-12-21 19:05:24 +05:30
}
2019-02-27 03:15:58 +05:30
sendEvent(eventType, content) {
this._sendQueue.enqueueEvent(eventType, content);
}
2019-02-27 03:15:58 +05:30
get name() {
return this._summary.name;
}
get id() {
return this._roomId;
}
async openTimeline() {
if (this._timeline) {
throw new Error("not dealing with load race here for now");
}
this._timeline = new Timeline({
roomId: this.id,
storage: this._storage,
hsApi: this._hsApi,
fragmentIdComparer: this._fragmentIdComparer,
pendingEvents: this._sendQueue.pendingEvents,
closeCallback: () => this._timeline = null,
user: this._user,
});
await this._timeline.load();
return this._timeline;
}
2019-02-21 04:18:16 +05:30
}