2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-20 21:26:39 +02:00
|
|
|
import {RoomTileViewModel} from "./roomlist/RoomTileViewModel.js";
|
|
|
|
import {RoomViewModel} from "./room/RoomViewModel.js";
|
2020-05-05 23:17:27 +02:00
|
|
|
import {SessionStatusViewModel} from "./SessionStatusViewModel.js";
|
2020-05-04 19:23:11 +02:00
|
|
|
import {ViewModel} from "../ViewModel.js";
|
2019-02-27 22:50:08 +01:00
|
|
|
|
2020-05-04 19:23:11 +02:00
|
|
|
export class SessionViewModel extends ViewModel {
|
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
2020-05-05 23:17:27 +02:00
|
|
|
const {sessionContainer} = options;
|
2020-04-22 20:52:56 +02:00
|
|
|
this._session = sessionContainer.session;
|
2020-05-05 23:16:51 +02:00
|
|
|
this._sessionStatusViewModel = this.track(new SessionStatusViewModel(this.childOptions({
|
2020-05-07 00:05:21 +02:00
|
|
|
sync: sessionContainer.sync,
|
2020-05-05 23:16:51 +02:00
|
|
|
reconnector: sessionContainer.reconnector
|
|
|
|
})));
|
2020-08-12 17:40:41 +02:00
|
|
|
this._currentRoomTileViewModel = null;
|
2019-02-27 22:50:08 +01:00
|
|
|
this._currentRoomViewModel = null;
|
2020-08-12 17:40:41 +02:00
|
|
|
const roomTileVMs = this._session.rooms.mapValues((room, emitChange) => {
|
2019-06-26 23:14:39 +02:00
|
|
|
return new RoomTileViewModel({
|
|
|
|
room,
|
2020-08-12 17:40:41 +02:00
|
|
|
emitChange,
|
|
|
|
emitOpen: this._openRoom.bind(this)
|
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));
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:16:51 +02:00
|
|
|
start() {
|
|
|
|
this._sessionStatusViewModel.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
get sessionStatusViewModel() {
|
|
|
|
return this._sessionStatusViewModel;
|
2019-06-16 10:54:16 +02:00
|
|
|
}
|
|
|
|
|
2019-02-27 22:50:08 +01:00
|
|
|
get roomList() {
|
|
|
|
return this._roomList;
|
|
|
|
}
|
|
|
|
|
|
|
|
get currentRoom() {
|
|
|
|
return this._currentRoomViewModel;
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:14:39 +02:00
|
|
|
_closeCurrentRoom() {
|
2020-08-27 10:07:47 +02:00
|
|
|
this._currentRoomTileViewModel?.close();
|
|
|
|
this._currentRoomViewModel = this.disposeTracked(this._currentRoomViewModel);
|
2019-06-26 23:14:39 +02:00
|
|
|
}
|
|
|
|
|
2020-08-12 17:40:41 +02:00
|
|
|
_openRoom(room, roomTileVM) {
|
2020-08-27 10:07:47 +02:00
|
|
|
this._closeCurrentRoom();
|
2020-08-12 17:40:41 +02:00
|
|
|
this._currentRoomTileViewModel = roomTileVM;
|
2020-05-05 23:17:27 +02:00
|
|
|
this._currentRoomViewModel = this.track(new RoomViewModel(this.childOptions({
|
2019-06-26 23:14:39 +02:00
|
|
|
room,
|
2019-07-29 10:23:15 +02:00
|
|
|
ownUserId: this._session.user.id,
|
2020-08-27 10:07:47 +02:00
|
|
|
closeCallback: () => {
|
|
|
|
this._closeCurrentRoom();
|
|
|
|
this.emitChange("currentRoom");
|
|
|
|
},
|
2020-05-05 23:17:27 +02:00
|
|
|
})));
|
2019-06-26 23:14:39 +02:00
|
|
|
this._currentRoomViewModel.load();
|
2020-05-04 19:23:11 +02:00
|
|
|
this.emitChange("currentRoom");
|
2019-02-27 22:50:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|