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

60 lines
1.6 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 RoomPersister from "./persister.js";
import Timeline from "./timeline.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, emitCollectionChange) {
super();
2018-12-21 19:05:24 +05:30
this._roomId = roomId;
this._storage = storage;
2019-02-11 01:55:29 +05:30
this._summary = new RoomSummary(roomId);
this._persister = new RoomPersister(roomId);
2019-02-21 04:18:16 +05:30
this._emitCollectionChange = emitCollectionChange;
this._timeline = null;
2018-12-21 19:05:24 +05:30
}
persistSync(roomResponse, membership, txn) {
const summaryChanged = this._summary.applySync(roomResponse, membership, txn);
const newTimelineEntries = this._persister.persistSync(roomResponse, txn);
return {summaryChanged, newTimelineEntries};
}
emitSync({summaryChanged, newTimelineEntries}) {
if (summaryChanged) {
2019-02-21 04:18:16 +05:30
this.emit("change");
this._emitCollectionChange(this);
2019-02-21 04:18:16 +05:30
}
if (this._timeline) {
this._timeline.appendLiveEntries(newTimelineEntries);
}
2018-12-21 19:05:24 +05:30
}
2019-02-11 01:55:29 +05:30
load(summary, txn) {
this._summary.load(summary);
return this._persister.load(txn);
2018-12-21 19:05:24 +05:30
}
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,
closeCallback: () => this._timeline = null,
});
await this._timeline.load();
return this._timeline;
}
2019-02-21 04:18:16 +05:30
}