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-04-21 00:56:39 +05:30
|
|
|
import {RoomPlaceholderView} from "./RoomPlaceholderView.js";
|
2020-05-06 02:46:51 +05:30
|
|
|
import {SessionStatusView} from "./SessionStatusView.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,
|
|
|
|
"room-shown": vm => !!vm.currentRoom
|
|
|
|
},
|
2020-10-06 15:53:17 +05:30
|
|
|
}, [
|
|
|
|
t.view(new SessionStatusView(vm.sessionStatusViewModel)),
|
|
|
|
t.div({className: "main"}, [
|
|
|
|
t.view(new LeftPanelView(vm.leftPanelViewModel)),
|
|
|
|
t.mapView(vm => vm.currentRoom, currentRoom => {
|
|
|
|
if (currentRoom) {
|
|
|
|
return new RoomView(currentRoom);
|
|
|
|
} else {
|
|
|
|
return new RoomPlaceholderView();
|
|
|
|
}
|
|
|
|
})
|
2019-06-16 14:22:02 +05:30
|
|
|
])
|
|
|
|
]);
|
2019-02-28 03:20:08 +05:30
|
|
|
}
|
|
|
|
}
|