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.
|
|
|
|
*/
|
|
|
|
|
2021-02-09 21:13:49 +03:00
|
|
|
import React from "react";
|
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";
|
2021-01-14 13:20:42 +03:00
|
|
|
import { HostSignupStore } from "../../stores/HostSignupStore";
|
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> {
|
2021-01-14 12:53:20 +03:00
|
|
|
private openDialog = async () => {
|
2021-01-14 13:20:42 +03:00
|
|
|
await HostSignupStore.instance.setHostSignupActive(true);
|
2020-11-13 16:23:54 +03:00
|
|
|
}
|
|
|
|
|
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"
|
2021-02-09 21:13:49 +03:00
|
|
|
label={_t("Get your own %(brand)s!")}
|
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
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|