2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
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-10-06 15:53:17 +05:30
|
|
|
import {LeftPanelView} from "./leftpanel/LeftPanelView.js";
|
2020-04-21 00:56:39 +05:30
|
|
|
import {RoomView} from "./room/RoomView.js";
|
2020-10-06 15:53:17 +05:30
|
|
|
import {TemplateView} from "../general/TemplateView.js";
|
2020-10-08 19:44:59 +05:30
|
|
|
import {StaticView} from "../general/StaticView.js";
|
2020-05-06 02:46:51 +05:30
|
|
|
import {SessionStatusView} from "./SessionStatusView.js";
|
2020-10-07 16:01:24 +05:30
|
|
|
import {RoomGridView} from "./RoomGridView.js";
|
2019-02-28 03:20:08 +05:30
|
|
|
|
2020-10-06 15:53:17 +05:30
|
|
|
export class SessionView extends TemplateView {
|
|
|
|
render(t, vm) {
|
|
|
|
return t.div({
|
2020-10-06 17:01:23 +05:30
|
|
|
className: {
|
|
|
|
"SessionView": true,
|
2020-10-07 21:30:07 +05:30
|
|
|
"room-shown": vm => vm.selectionId !== "placeholder"
|
2020-10-06 17:01:23 +05:30
|
|
|
},
|
2020-10-06 15:53:17 +05:30
|
|
|
}, [
|
|
|
|
t.view(new SessionStatusView(vm.sessionStatusViewModel)),
|
|
|
|
t.div({className: "main"}, [
|
|
|
|
t.view(new LeftPanelView(vm.leftPanelViewModel)),
|
2020-10-09 23:13:11 +05:30
|
|
|
t.mapView(vm => vm.activeSection, activeSection => {
|
|
|
|
switch (activeSection) {
|
2020-10-07 16:01:24 +05:30
|
|
|
case "roomgrid":
|
|
|
|
return new RoomGridView(vm.roomGridViewModel);
|
|
|
|
case "placeholder":
|
2020-10-08 19:44:59 +05:30
|
|
|
return new StaticView(t => t.div({className: "room-placeholder"}, t.h2(vm.i18n`Choose a room on the left side.`)));
|
2020-10-07 18:02:57 +05:30
|
|
|
default: //room id
|
2020-10-09 23:13:11 +05:30
|
|
|
return new RoomView(vm.currentRoomViewModel);
|
2020-10-06 15:53:17 +05:30
|
|
|
}
|
|
|
|
})
|
2019-06-16 14:22:02 +05:30
|
|
|
])
|
|
|
|
]);
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
}
|