2019-02-27 22:50:08 +01:00
|
|
|
import EventEmitter from "../../EventEmitter.js";
|
2019-03-08 19:58:54 +01:00
|
|
|
import RoomTileViewModel from "./roomlist/RoomTileViewModel.js";
|
|
|
|
import RoomViewModel from "./room/RoomViewModel.js";
|
2019-06-16 10:54:16 +02:00
|
|
|
import SyncStatusViewModel from "./SyncStatusViewModel.js";
|
2019-02-27 22:50:08 +01:00
|
|
|
|
|
|
|
export default class SessionViewModel extends EventEmitter {
|
2019-07-29 22:39:56 +02:00
|
|
|
constructor({session, sync}) {
|
2019-02-27 22:50:08 +01:00
|
|
|
super();
|
|
|
|
this._session = session;
|
2019-06-16 10:54:16 +02:00
|
|
|
this._syncStatusViewModel = new SyncStatusViewModel(sync);
|
2019-02-27 22:50:08 +01:00
|
|
|
this._currentRoomViewModel = null;
|
|
|
|
const roomTileVMs = this._session.rooms.mapValues((room, emitUpdate) => {
|
2019-06-26 23:14:39 +02:00
|
|
|
return new RoomTileViewModel({
|
|
|
|
room,
|
|
|
|
emitUpdate,
|
|
|
|
emitOpen: room => this._openRoom(room)
|
2019-02-27 22:50:08 +01:00
|
|
|
});
|
2019-06-26 23:14:39 +02:00
|
|
|
});
|
2019-02-27 22:50:08 +01:00
|
|
|
this._roomList = roomTileVMs.sortValues((a, b) => a.compare(b));
|
|
|
|
}
|
|
|
|
|
2019-06-16 10:54:16 +02:00
|
|
|
get syncStatusViewModel() {
|
|
|
|
return this._syncStatusViewModel;
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:50:08 +01:00
|
|
|
get roomList() {
|
|
|
|
return this._roomList;
|
|
|
|
}
|
|
|
|
|
|
|
|
get currentRoom() {
|
|
|
|
return this._currentRoomViewModel;
|
|
|
|
}
|
|
|
|
|
2020-04-09 23:19:49 +02:00
|
|
|
dispose() {
|
|
|
|
if (this._currentRoomViewModel) {
|
|
|
|
this._currentRoomViewModel.dispose();
|
|
|
|
this._currentRoomViewModel = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:14:39 +02:00
|
|
|
_closeCurrentRoom() {
|
|
|
|
if (this._currentRoomViewModel) {
|
|
|
|
this._currentRoomViewModel.dispose();
|
|
|
|
this._currentRoomViewModel = null;
|
|
|
|
this.emit("change", "currentRoom");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-27 22:50:08 +01:00
|
|
|
_openRoom(room) {
|
|
|
|
if (this._currentRoomViewModel) {
|
2019-06-26 23:14:39 +02:00
|
|
|
this._currentRoomViewModel.dispose();
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
2019-06-26 23:14:39 +02:00
|
|
|
this._currentRoomViewModel = new RoomViewModel({
|
|
|
|
room,
|
2019-07-29 10:23:15 +02:00
|
|
|
ownUserId: this._session.user.id,
|
2019-06-26 23:14:39 +02:00
|
|
|
closeCallback: () => this._closeCurrentRoom(),
|
|
|
|
});
|
|
|
|
this._currentRoomViewModel.load();
|
2019-02-27 22:50:08 +01:00
|
|
|
this.emit("change", "currentRoom");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|