mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import {NylasAPIRequest} from 'nylas-exports';
|
|
import {Webview} from 'nylas-component-kit';
|
|
import OnboardingActions from './onboarding-actions';
|
|
|
|
export default class AuthenticatePage extends React.Component {
|
|
static displayName = "AuthenticatePage";
|
|
|
|
static propTypes = {
|
|
accountInfo: React.PropTypes.object,
|
|
};
|
|
|
|
_src() {
|
|
const n1Version = NylasEnv.getVersion();
|
|
return `${NylasAPIRequest.rootURLForServer('identity')}/onboarding?utm_medium=N1&utm_source=OnboardingPage&N1_version=${n1Version}&client_edition=basic`
|
|
}
|
|
|
|
_onDidFinishLoad = (webview) => {
|
|
const receiveUserInfo = `
|
|
var a = document.querySelector('#identity-result');
|
|
result = a ? a.innerText : null;
|
|
`;
|
|
webview.executeJavaScript(receiveUserInfo, false, (result) => {
|
|
this.setState({ready: true, webviewLoading: false});
|
|
if (result !== null) {
|
|
OnboardingActions.identityJSONReceived(JSON.parse(atob(result)));
|
|
}
|
|
});
|
|
|
|
const openExternalLink = `
|
|
var el = document.querySelector('.open-external');
|
|
if (el) {el.addEventListener('click', function(event) {console.log(this.href); event.preventDefault(); return false;})}
|
|
`;
|
|
webview.executeJavaScript(openExternalLink);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="page authenticate">
|
|
<Webview src={this._src()} onDidFinishLoad={this._onDidFinishLoad} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|