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

29 lines
842 B
JavaScript
Raw Normal View History

2019-02-10 21:25:29 +01:00
import RoomSummary from "./summary.js";
import RoomPersister from "./persister.js";
2019-02-20 23:48:16 +01:00
import EventEmitter from "../../EventEmitter.js";
2018-12-21 14:35:24 +01:00
2019-02-20 23:48:16 +01:00
export default class Room extends EventEmitter {
constructor(roomId, storage, emitCollectionChange) {
super();
2018-12-21 14:35:24 +01:00
this._roomId = roomId;
this._storage = storage;
2019-02-10 21:25:29 +01:00
this._summary = new RoomSummary(roomId);
this._persister = new RoomPersister(roomId);
2019-02-20 23:48:16 +01:00
this._emitCollectionChange = emitCollectionChange;
2018-12-21 14:35:24 +01:00
}
2019-02-10 21:25:29 +01:00
async applySync(roomResponse, membership, txn) {
2019-02-20 23:48:16 +01:00
const changed = this._summary.applySync(roomResponse, membership, txn);
2019-02-10 21:25:29 +01:00
this._persister.persistSync(roomResponse, txn);
2019-02-20 23:48:16 +01:00
if (changed) {
this.emit("change");
(this._emitCollectionChange)();
}
2018-12-21 14:35:24 +01:00
}
2019-02-10 21:25:29 +01:00
load(summary, txn) {
this._summary.load(summary);
return this._persister.load(txn);
2018-12-21 14:35:24 +01:00
}
2019-02-20 23:48:16 +01:00
}