2020-10-21 15:22:35 +03:00
|
|
|
/*
|
2021-01-05 15:29:48 +03:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
2020-10-21 15:22:35 +03:00
|
|
|
|
|
|
|
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 * as React from "react";
|
2021-01-04 17:05:49 +03:00
|
|
|
import HostSignupDialog from "../views/dialogs/HostSignupDialog";
|
2020-12-18 17:05:57 +03:00
|
|
|
import Modal, {IHandle} from "../../Modal";
|
2020-11-27 14:18:16 +03:00
|
|
|
import {
|
2020-11-24 20:18:26 +03:00
|
|
|
IconizedContextMenuOption,
|
|
|
|
IconizedContextMenuOptionList,
|
|
|
|
} from "../views/context_menus/IconizedContextMenu";
|
|
|
|
import { _t } from "../../languageHandler";
|
2020-10-21 15:22:35 +03:00
|
|
|
|
|
|
|
interface IProps {}
|
|
|
|
|
|
|
|
interface IState {}
|
|
|
|
|
2021-01-04 17:05:49 +03:00
|
|
|
export default class HostSignupAction extends React.PureComponent<IProps, IState> {
|
2020-12-18 17:05:57 +03:00
|
|
|
private closingAllowed = false;
|
|
|
|
private modalRef: IHandle<void[]>;
|
2020-11-13 16:23:54 +03:00
|
|
|
|
|
|
|
private openDialog = () => {
|
|
|
|
this.modalRef = Modal.createTrackedDialog(
|
2021-01-04 17:05:49 +03:00
|
|
|
'Host Signup Open', '', HostSignupDialog, {
|
2020-11-13 16:23:54 +03:00
|
|
|
requestClose: this.requestClose,
|
2021-01-04 17:05:49 +03:00
|
|
|
}, "mx_HostSignupDialog", false, true, {
|
2020-11-13 16:23:54 +03:00
|
|
|
onBeforeClose: async () => this.closingAllowed,
|
|
|
|
},
|
2020-10-21 15:22:35 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-13 16:23:54 +03:00
|
|
|
private requestClose = () => {
|
|
|
|
this.closingAllowed = true;
|
|
|
|
this.modalRef.close();
|
|
|
|
}
|
|
|
|
|
2020-10-21 15:22:35 +03:00
|
|
|
public render(): React.ReactNode {
|
|
|
|
return (
|
2020-11-24 20:18:26 +03:00
|
|
|
<IconizedContextMenuOptionList>
|
|
|
|
<IconizedContextMenuOption
|
|
|
|
iconClassName="mx_UserMenu_iconHosting"
|
|
|
|
label={_t("Get your own Element!")}
|
2020-12-18 17:05:57 +03:00
|
|
|
onClick={this.openDialog}
|
2020-11-24 20:18:26 +03:00
|
|
|
/>
|
|
|
|
</IconizedContextMenuOptionList>
|
2020-10-21 15:22:35 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|