mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 11:05:03 +01:00
Create vm/view for InvitePanel
This commit is contained in:
parent
b766215ae1
commit
f4e73c25d5
54
src/domain/session/rightpanel/InvitePanelViewModel.ts
Normal file
54
src/domain/session/rightpanel/InvitePanelViewModel.ts
Normal file
@ -0,0 +1,54 @@
|
||||
/*
|
||||
Copyright 2023 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 {ErrorReportViewModel} from "../../ErrorReportViewModel";
|
||||
import type {Options as BaseOptions} from "../../ViewModel";
|
||||
import type {SegmentType} from "../../navigation";
|
||||
import type {Room} from "../../../matrix/room/Room.js";
|
||||
import type {Session} from "../../../matrix/Session.js";
|
||||
|
||||
type Options = { room: Room, session: Session } & BaseOptions;
|
||||
|
||||
export class InvitePanelViewModel extends ErrorReportViewModel<SegmentType, Options> {
|
||||
constructor(options: Options) {
|
||||
super(options);
|
||||
}
|
||||
|
||||
get type() {
|
||||
return "invite";
|
||||
}
|
||||
|
||||
get shouldShowBackButton() {
|
||||
return true;
|
||||
}
|
||||
|
||||
get previousSegmentName() {
|
||||
return "members";
|
||||
}
|
||||
|
||||
get roomName() {
|
||||
return this.getOption("room").name;
|
||||
}
|
||||
|
||||
async invite(userId: string) {
|
||||
await this.logAndCatch("InvitePanelViewModel.invite", async () => {
|
||||
const room = this.getOption("room");
|
||||
await room.inviteUser(userId);
|
||||
const path = this.navigation.path.until("room");
|
||||
this.navigation.applyPath(path);
|
||||
});
|
||||
}
|
||||
}
|
50
src/platform/web/ui/session/rightpanel/InvitePanelView.ts
Normal file
50
src/platform/web/ui/session/rightpanel/InvitePanelView.ts
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
Copyright 2023 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 {Builder, TemplateView} from "../../general/TemplateView";
|
||||
import {ErrorView} from "../../general/ErrorView";
|
||||
import type {InvitePanelViewModel} from "../../../../../domain/session/rightpanel/InvitePanelViewModel";
|
||||
|
||||
export class InvitePanelView extends TemplateView<InvitePanelViewModel> {
|
||||
render(t: Builder<InvitePanelViewModel>, vm: InvitePanelViewModel) {
|
||||
const input = t.input({
|
||||
className: "InvitePanelView__input",
|
||||
type: "text",
|
||||
placeholder: "Enter user-id of user",
|
||||
onkeydown: (e: KeyboardEvent) => {
|
||||
if (e.key === "Enter") {
|
||||
vm.invite((input as HTMLInputElement).value);
|
||||
}
|
||||
}
|
||||
});
|
||||
return t.div({ className: "InvitePanelView" }, [
|
||||
t.h3({ className: "InvitePanelView__heading" },
|
||||
(vm: InvitePanelViewModel) => vm.i18n`Invite to ${vm.roomName}`
|
||||
),
|
||||
t.div({ className: "InvitePanelView__form" }, [
|
||||
input,
|
||||
t.button({
|
||||
className: "InvitePanelView__btn button-action primary",
|
||||
onClick: () => vm.invite((input as HTMLInputElement).value),
|
||||
}, "Invite"),
|
||||
]),
|
||||
t.div({ className: "InvitePanelView__error" }, [
|
||||
t.ifView(vm => !!vm.errorViewModel, vm => new ErrorView(vm.errorViewModel!)),
|
||||
]),
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user