hydrogen-web/src/domain/session/room/RoomViewModel.js
2019-06-01 18:29:23 +02:00

53 lines
1.4 KiB
JavaScript

import EventEmitter from "../../../EventEmitter.js";
import TimelineViewModel from "./timeline/TimelineViewModel.js";
export default class RoomViewModel extends EventEmitter {
constructor(room) {
super();
this._room = room;
this._timeline = null;
this._timelineVM = null;
this._onRoomChange = this._onRoomChange.bind(this);
this._timelineError = null;
}
async enable() {
this._room.on("change", this._onRoomChange);
try {
this._timeline = await this._room.openTimeline();
this._timelineVM = new TimelineViewModel(this._timeline);
this.emit("change", "timelineEntries");
} catch (err) {
this._timelineError = err;
this.emit("change", "error");
}
}
disable() {
if (this._timeline) {
// will stop the timeline from delivering updates on entries
this._timeline.close();
}
}
// room doesn't tell us yet which fields changed,
// so emit all fields originating from summary
_onRoomChange() {
this.emit("change", "name");
}
get name() {
return this._room.name;
}
get timelineViewModel() {
return this._timelineVM;
}
get error() {
if (this._timelineError) {
return `Something went wrong loading the timeline: ${this._timelineError.message}`;
}
return null;
}
}