2019-12-07 16:58:52 +05:30
|
|
|
import React from 'react';
|
2016-03-15 11:10:18 +05:30
|
|
|
import { connect } from 'react-redux';
|
2016-03-04 02:57:33 +05:30
|
|
|
import { FormattedMessage as Message } from 'react-intl';
|
2016-03-16 10:16:44 +05:30
|
|
|
import Helmet from 'react-helmet';
|
2019-12-08 00:32:00 +05:30
|
|
|
import { Button } from 'app/components/ui/form';
|
|
|
|
import copy from 'app/services/copy';
|
|
|
|
import { RootState } from 'app/reducers';
|
2016-03-04 02:57:33 +05:30
|
|
|
|
2016-05-14 16:56:17 +05:30
|
|
|
import messages from './Finish.intl.json';
|
2016-03-04 02:57:33 +05:30
|
|
|
import styles from './finish.scss';
|
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
interface Props {
|
|
|
|
appName: string;
|
|
|
|
code?: string;
|
|
|
|
state: string;
|
|
|
|
displayCode?: string;
|
|
|
|
success?: boolean;
|
|
|
|
}
|
2016-03-04 02:57:33 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
class Finish extends React.Component<Props> {
|
2019-11-27 14:33:32 +05:30
|
|
|
render() {
|
|
|
|
const { appName, code, state, displayCode, success } = this.props;
|
|
|
|
const authData = JSON.stringify({
|
2019-12-07 16:58:52 +05:30
|
|
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
|
|
|
auth_code: code,
|
2019-11-27 14:33:32 +05:30
|
|
|
state,
|
|
|
|
});
|
2016-03-16 10:16:44 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
history.pushState(null, document.title, `#${authData}`);
|
2016-03-04 02:57:33 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
return (
|
|
|
|
<div className={styles.finishPage}>
|
|
|
|
<Helmet title={authData} />
|
2016-03-16 10:16:44 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
{success ? (
|
|
|
|
<div>
|
|
|
|
<div className={styles.successBackground} />
|
|
|
|
<div className={styles.greenTitle}>
|
|
|
|
<Message
|
|
|
|
{...messages.authForAppSuccessful}
|
|
|
|
values={{
|
|
|
|
appName: <span className={styles.appName}>{appName}</span>,
|
|
|
|
}}
|
|
|
|
/>
|
2016-03-04 02:57:33 +05:30
|
|
|
</div>
|
2019-11-27 14:33:32 +05:30
|
|
|
{displayCode ? (
|
|
|
|
<div>
|
|
|
|
<div className={styles.description}>
|
|
|
|
<Message {...messages.passCodeToApp} values={{ appName }} />
|
|
|
|
</div>
|
|
|
|
<div className={styles.codeContainer}>
|
|
|
|
<div className={styles.code}>{code}</div>
|
|
|
|
</div>
|
|
|
|
<Button
|
|
|
|
color="green"
|
|
|
|
small
|
|
|
|
label={messages.copy}
|
|
|
|
onClick={this.onCopyClick}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className={styles.description}>
|
|
|
|
<Message {...messages.waitAppReaction} />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<div className={styles.failBackground} />
|
|
|
|
<div className={styles.redTitle}>
|
|
|
|
<Message
|
|
|
|
{...messages.authForAppFailed}
|
|
|
|
values={{
|
|
|
|
appName: <span className={styles.appName}>{appName}</span>,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className={styles.description}>
|
|
|
|
<Message {...messages.waitAppReaction} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-03-16 10:16:44 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
onCopyClick = event => {
|
|
|
|
event.preventDefault();
|
2019-12-07 16:58:52 +05:30
|
|
|
|
|
|
|
const { code } = this.props;
|
|
|
|
|
|
|
|
if (code) {
|
|
|
|
copy(code);
|
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
};
|
2016-03-04 02:57:33 +05:30
|
|
|
}
|
2016-03-15 11:10:18 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export default connect(({ auth }: RootState) => {
|
|
|
|
if (!auth || !auth.client || !auth.oauth) {
|
|
|
|
throw new Error('Can not connect Finish component. No auth data in state');
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
appName: auth.client.name,
|
|
|
|
code: auth.oauth.code,
|
|
|
|
displayCode: auth.oauth.displayCode,
|
|
|
|
state: auth.oauth.state,
|
|
|
|
success: auth.oauth.success,
|
|
|
|
};
|
|
|
|
})(Finish);
|