mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-29 14:35:20 +01:00
53 lines
2.1 KiB
JavaScript
53 lines
2.1 KiB
JavaScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
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.
|
|
*/
|
|
|
|
import {RoomView} from "./room/RoomView.js";
|
|
import {InviteView} from "./room/InviteView.js";
|
|
import {TemplateView} from "../general/TemplateView.js";
|
|
import {StaticView} from "../general/StaticView.js";
|
|
|
|
export class RoomGridView extends TemplateView {
|
|
render(t, vm) {
|
|
const children = [];
|
|
for (let i = 0; i < (vm.height * vm.width); i+=1) {
|
|
children.push(t.div({
|
|
onClick: () => vm.focusTile(i),
|
|
onFocusin: () => vm.focusTile(i),
|
|
className: {
|
|
"container": true,
|
|
[`tile${i}`]: true,
|
|
"focused": vm => vm.focusIndex === i
|
|
},
|
|
}, t.mapView(vm => vm.roomViewModelAt(i), roomVM => {
|
|
if (roomVM) {
|
|
if (roomVM.kind === "invite") {
|
|
return new InviteView(roomVM);
|
|
} else {
|
|
return new RoomView(roomVM);
|
|
}
|
|
} else {
|
|
return new StaticView(t => t.div({className: "room-placeholder"}, [
|
|
t.h2({className: "focused"}, vm.i18n`Select a room on the left`),
|
|
t.h2({className: "unfocused"}, vm.i18n`Click to select this tile`),
|
|
]));
|
|
}
|
|
})));
|
|
}
|
|
children.push(t.div({className: vm => `focus-ring tile${vm.focusIndex}`}));
|
|
return t.div({className: "RoomGridView middle layout3x2"}, children);
|
|
}
|
|
}
|