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";
|
2020-11-13 16:31:54 +03:00
|
|
|
import Modal from "../../../Modal";
|
2021-01-12 18:08:42 +03:00
|
|
|
import PersistedElement from "../elements/PersistedElement";
|
2021-01-05 15:47:39 +03:00
|
|
|
import QuestionDialog from './QuestionDialog';
|
2020-11-13 16:31:54 +03:00
|
|
|
import SdkConfig from "../../../SdkConfig";
|
2020-12-18 17:05:57 +03:00
|
|
|
import {_t} from "../../../languageHandler";
|
|
|
|
import {MatrixClientPeg} from "../../../MatrixClientPeg";
|
2021-01-14 13:20:42 +03:00
|
|
|
import {HostSignupStore} from "../../../stores/HostSignupStore";
|
2020-12-18 17:05:57 +03:00
|
|
|
import {OwnProfileStore} from "../../../stores/OwnProfileStore";
|
2021-01-04 17:05:49 +03:00
|
|
|
import {IPostmessage, IPostmessageResponseData, PostmessageAction} from "./HostSignupDialogTypes";
|
2020-10-21 15:22:35 +03:00
|
|
|
|
2021-01-14 12:53:20 +03:00
|
|
|
interface IProps {}
|
2020-10-21 15:22:35 +03:00
|
|
|
|
2020-10-28 17:38:47 +03:00
|
|
|
interface IState {
|
2020-12-01 14:50:58 +03:00
|
|
|
completed: boolean;
|
|
|
|
error: string;
|
2021-01-11 16:47:21 +03:00
|
|
|
loadIframe: boolean;
|
2021-01-12 15:08:09 +03:00
|
|
|
minimized: boolean;
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
2020-10-21 15:22:35 +03:00
|
|
|
|
2021-01-04 17:05:49 +03:00
|
|
|
export default class HostSignupDialog extends React.PureComponent<IProps, IState> {
|
2020-12-18 17:05:57 +03:00
|
|
|
private iframeRef: React.RefObject<HTMLIFrameElement> = React.createRef();
|
2021-01-04 17:05:49 +03:00
|
|
|
private readonly hostSignupSetupUrl: string;
|
2020-10-28 17:38:47 +03:00
|
|
|
|
|
|
|
constructor(props: IProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2020-11-26 13:40:55 +03:00
|
|
|
completed: false,
|
2020-10-28 17:38:47 +03:00
|
|
|
error: null,
|
2021-01-11 16:47:21 +03:00
|
|
|
loadIframe: false,
|
2021-01-12 15:08:09 +03:00
|
|
|
minimized: false,
|
2020-10-28 17:38:47 +03:00
|
|
|
};
|
|
|
|
|
2021-01-04 17:05:49 +03:00
|
|
|
this.hostSignupSetupUrl = SdkConfig.get().host_signup.url;
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
|
|
|
|
2021-01-11 16:47:21 +03:00
|
|
|
private messageHandler = async (message: IPostmessage) => {
|
2021-01-04 17:05:49 +03:00
|
|
|
if (!this.hostSignupSetupUrl.startsWith(message.origin)) {
|
2020-10-28 17:38:47 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (message.data.action) {
|
2021-01-04 17:05:49 +03:00
|
|
|
case PostmessageAction.HostSignupAccountDetailsRequest:
|
2021-01-11 16:47:21 +03:00
|
|
|
await this.sendAccountDetails();
|
2020-11-13 16:36:56 +03:00
|
|
|
break;
|
2021-01-14 12:53:20 +03:00
|
|
|
case PostmessageAction.Maximize:
|
|
|
|
this.maximizeDialog();
|
|
|
|
break;
|
2021-01-12 15:08:09 +03:00
|
|
|
case PostmessageAction.Minimize:
|
|
|
|
this.minimizeDialog();
|
|
|
|
break;
|
2020-12-18 17:05:57 +03:00
|
|
|
case PostmessageAction.SetupComplete:
|
2020-11-26 13:40:55 +03:00
|
|
|
// Set as completed but let the user close the modal themselves
|
|
|
|
// so they have time to finish reading any information
|
|
|
|
this.setState({
|
|
|
|
completed: true,
|
|
|
|
});
|
|
|
|
break;
|
2020-12-18 17:05:57 +03:00
|
|
|
case PostmessageAction.CloseDialog:
|
2021-01-14 13:20:42 +03:00
|
|
|
return this.onFinished(true);
|
2020-11-13 16:23:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-12 15:08:09 +03:00
|
|
|
private maximizeDialog = () => {
|
|
|
|
this.setState({
|
|
|
|
minimized: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private minimizeDialog = () => {
|
|
|
|
this.setState({
|
|
|
|
minimized: true,
|
|
|
|
});
|
2021-01-14 12:53:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private closeDialog = async () => {
|
|
|
|
window.removeEventListener("message", this.messageHandler);
|
|
|
|
// Ensure we destroy the host signup persisted element
|
|
|
|
PersistedElement.destroyElement("host_signup");
|
|
|
|
// Finally clear the flag in
|
2021-01-14 13:20:42 +03:00
|
|
|
return HostSignupStore.instance.setHostSignupActive(false);
|
2021-01-12 15:08:09 +03:00
|
|
|
}
|
|
|
|
|
2021-01-14 13:20:42 +03:00
|
|
|
private onFinished = async (result: boolean) => {
|
2020-11-26 13:40:55 +03:00
|
|
|
if (result || this.state.completed) {
|
2020-11-13 16:23:54 +03:00
|
|
|
// We're done, close
|
2021-01-14 12:53:20 +03:00
|
|
|
return this.closeDialog();
|
2020-11-13 16:23:54 +03:00
|
|
|
} else {
|
|
|
|
Modal.createDialog(
|
2021-01-05 15:47:39 +03:00
|
|
|
QuestionDialog,
|
2020-11-13 16:23:54 +03:00
|
|
|
{
|
2021-01-05 15:47:39 +03:00
|
|
|
title: _t("Confirm Abort Of Host Creation"),
|
|
|
|
description: _t(
|
|
|
|
"Are you sure you wish to abort creation of the host? The process cannot be continued.",
|
|
|
|
),
|
|
|
|
button: _t("Abort"),
|
2020-11-13 16:23:54 +03:00
|
|
|
onFinished: result => {
|
|
|
|
if (result) {
|
2021-01-14 12:53:20 +03:00
|
|
|
return this.closeDialog();
|
2020-11-13 16:23:54 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2020-12-01 14:51:46 +03:00
|
|
|
);
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 17:05:57 +03:00
|
|
|
private sendMessage = (message: IPostmessageResponseData) => {
|
2021-01-04 17:05:49 +03:00
|
|
|
this.iframeRef.current.contentWindow.postMessage(message, this.hostSignupSetupUrl);
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
|
|
|
|
2020-12-11 17:03:18 +03:00
|
|
|
private async sendAccountDetails() {
|
|
|
|
const openIdToken = await MatrixClientPeg.get().getOpenIdToken();
|
|
|
|
if (!openIdToken || !openIdToken.access_token) {
|
2020-10-28 17:38:47 +03:00
|
|
|
this.setState({
|
2020-12-15 11:50:38 +03:00
|
|
|
completed: true,
|
2020-11-27 15:42:45 +03:00
|
|
|
error: _t("Failed to connect to your homeserver. Please close this dialog and try again."),
|
2020-10-28 17:38:47 +03:00
|
|
|
});
|
2020-12-11 17:03:18 +03:00
|
|
|
return;
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
2020-11-13 16:36:56 +03:00
|
|
|
this.sendMessage({
|
2021-01-04 17:05:49 +03:00
|
|
|
action: PostmessageAction.HostSignupAccountDetails,
|
2020-12-11 17:03:18 +03:00
|
|
|
account: {
|
2020-11-18 18:53:27 +03:00
|
|
|
accessToken: await MatrixClientPeg.get().getAccessToken(),
|
2020-12-11 17:03:18 +03:00
|
|
|
name: OwnProfileStore.instance.displayName,
|
|
|
|
openIdToken: openIdToken.access_token,
|
2020-11-18 18:53:27 +03:00
|
|
|
serverName: await MatrixClientPeg.get().getDomain(),
|
|
|
|
userLocalpart: await MatrixClientPeg.get().getUserIdLocalpart(),
|
|
|
|
},
|
2020-11-13 16:36:56 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-11 16:47:21 +03:00
|
|
|
private loadIframe = () => {
|
2020-10-28 17:38:47 +03:00
|
|
|
window.addEventListener("message", this.messageHandler);
|
2021-01-11 16:47:21 +03:00
|
|
|
this.setState({
|
|
|
|
loadIframe: true,
|
|
|
|
});
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
2021-01-14 13:20:42 +03:00
|
|
|
if (HostSignupStore.instance.isHostSignupActive) {
|
2021-01-14 12:53:20 +03:00
|
|
|
// Run the close dialog actions if we're still active, otherwise good to go
|
|
|
|
return this.closeDialog();
|
|
|
|
}
|
2020-10-28 17:38:47 +03:00
|
|
|
}
|
|
|
|
|
2020-10-21 15:22:35 +03:00
|
|
|
public render(): React.ReactNode {
|
|
|
|
return (
|
2021-01-14 12:53:20 +03:00
|
|
|
<div className="mx_HostSignup_persisted">
|
2021-01-12 18:08:42 +03:00
|
|
|
<PersistedElement key="host_signup" persistKey="host_signup">
|
2021-01-14 12:53:20 +03:00
|
|
|
<div className={this.state.minimized ? "" : "mx_Dialog_wrapper"}>
|
|
|
|
<div className={
|
|
|
|
this.state.minimized ? "mx_HostSignupDialog_minimized" : "mx_HostSignupDialog mx_Dialog"
|
|
|
|
}>
|
2021-01-12 18:08:42 +03:00
|
|
|
{this.state.loadIframe &&
|
|
|
|
<iframe
|
|
|
|
src={this.hostSignupSetupUrl}
|
|
|
|
ref={this.iframeRef}
|
|
|
|
sandbox="allow-forms allow-scripts allow-same-origin"
|
2021-01-12 15:08:09 +03:00
|
|
|
/>
|
2021-01-12 18:08:42 +03:00
|
|
|
}
|
|
|
|
{!this.state.loadIframe &&
|
|
|
|
<div className="mx_HostSignupDialog_info">
|
2021-01-14 12:53:20 +03:00
|
|
|
{this.state.minimized &&
|
|
|
|
<button onClick={this.maximizeDialog}>Maximize</button>
|
|
|
|
}
|
2021-01-12 18:08:42 +03:00
|
|
|
<img
|
|
|
|
alt="image of planet"
|
|
|
|
src={require("../../../../res/img/host_signup.png")}
|
|
|
|
/>
|
|
|
|
<div className="mx_HostSignupDialog_content">
|
|
|
|
<h1>Unlock the power of Element</h1>
|
|
|
|
<p>
|
|
|
|
Congratulations! You taken your first steps into unlocking the full
|
|
|
|
power of the Element app. In a few minutes, you'll be able to
|
|
|
|
see how powerful our
|
|
|
|
Matrix services are and take control of your conversation data.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div>
|
2021-01-14 12:53:20 +03:00
|
|
|
<button onClick={this.closeDialog}>Maybe later</button>
|
2021-01-12 18:08:42 +03:00
|
|
|
<button onClick={this.loadIframe} className="mx_Dialog_primary">
|
|
|
|
Lets get started
|
|
|
|
</button>
|
|
|
|
<button onClick={this.minimizeDialog}>Minimize</button>
|
|
|
|
</div>
|
2021-01-12 15:08:09 +03:00
|
|
|
</div>
|
2021-01-12 18:08:42 +03:00
|
|
|
}
|
|
|
|
{this.state.error &&
|
2021-01-12 15:08:09 +03:00
|
|
|
<div>
|
2021-01-12 18:08:42 +03:00
|
|
|
{this.state.error}
|
2021-01-12 15:08:09 +03:00
|
|
|
</div>
|
2021-01-12 18:08:42 +03:00
|
|
|
}
|
|
|
|
</div>
|
2021-01-14 12:53:20 +03:00
|
|
|
{!this.state.minimized &&
|
|
|
|
<div className="mx_Dialog_background" />
|
|
|
|
}
|
|
|
|
</div>
|
2021-01-12 18:08:42 +03:00
|
|
|
</PersistedElement>
|
2021-01-12 15:08:09 +03:00
|
|
|
</div>
|
2020-10-21 15:22:35 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|