2020-07-02 23:01:02 -07:00
|
|
|
import React, { useState } from 'react';
|
2019-06-22 17:45:32 -07:00
|
|
|
import { Link, RouteComponentProps } from 'react-router-dom';
|
2019-06-22 13:33:11 -07:00
|
|
|
import loginCheckpoint from '@/api/auth/loginCheckpoint';
|
|
|
|
import { httpErrorToHuman } from '@/api/http';
|
2019-06-22 13:53:41 -07:00
|
|
|
import LoginFormContainer from '@/components/auth/LoginFormContainer';
|
2020-04-25 13:01:16 -07:00
|
|
|
import { ActionCreator } from 'easy-peasy';
|
2019-06-22 16:45:51 -07:00
|
|
|
import { StaticContext } from 'react-router';
|
2020-04-25 13:01:16 -07:00
|
|
|
import { useFormikContext, withFormik } from 'formik';
|
|
|
|
import useFlash from '@/plugins/useFlash';
|
|
|
|
import { FlashStore } from '@/state/flashes';
|
|
|
|
import Field from '@/components/elements/Field';
|
2020-07-04 14:34:43 -07:00
|
|
|
import tw from 'twin.macro';
|
|
|
|
import Button from '@/components/elements/Button';
|
2020-02-11 10:37:12 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
interface Values {
|
|
|
|
code: string;
|
2020-07-02 23:01:02 -07:00
|
|
|
recoveryCode: '',
|
2020-04-25 13:01:16 -07:00
|
|
|
}
|
2020-02-11 10:37:12 -07:00
|
|
|
|
2020-07-04 19:01:49 -07:00
|
|
|
type OwnProps = RouteComponentProps<Record<string, string | undefined>, StaticContext, { token?: string }>
|
2020-02-11 10:37:12 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
type Props = OwnProps & {
|
|
|
|
addError: ActionCreator<FlashStore['addError']['payload']>;
|
|
|
|
clearFlashes: ActionCreator<FlashStore['clearFlashes']['payload']>;
|
|
|
|
}
|
2020-02-11 10:37:12 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
const LoginCheckpointContainer = () => {
|
2020-07-02 23:01:02 -07:00
|
|
|
const { isSubmitting, setFieldValue } = useFormikContext<Values>();
|
|
|
|
const [ isMissingDevice, setIsMissingDevice ] = useState(false);
|
2019-06-16 18:07:57 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
return (
|
2020-07-04 14:34:43 -07:00
|
|
|
<LoginFormContainer title={'Device Checkpoint'} css={tw`w-full flex`}>
|
|
|
|
<div css={tw`mt-6`}>
|
2020-04-25 13:01:16 -07:00
|
|
|
<Field
|
2020-07-04 14:34:43 -07:00
|
|
|
light
|
2020-07-02 23:01:02 -07:00
|
|
|
name={isMissingDevice ? 'recoveryCode' : 'code'}
|
|
|
|
title={isMissingDevice ? 'Recovery Code' : 'Authentication Code'}
|
|
|
|
description={
|
|
|
|
isMissingDevice
|
|
|
|
? 'Enter one of the recovery codes generated when you setup 2-Factor authentication on this account in order to continue.'
|
|
|
|
: 'Enter the two-factor token generated by your device.'
|
|
|
|
}
|
2020-07-11 13:07:54 -06:00
|
|
|
type={'text'}
|
2020-07-04 14:34:43 -07:00
|
|
|
autoFocus
|
2020-04-25 13:01:16 -07:00
|
|
|
/>
|
|
|
|
</div>
|
2020-07-04 14:34:43 -07:00
|
|
|
<div css={tw`mt-6`}>
|
|
|
|
<Button
|
|
|
|
size={'xlarge'}
|
2020-04-25 13:01:16 -07:00
|
|
|
type={'submit'}
|
|
|
|
disabled={isSubmitting}
|
2020-07-04 14:34:43 -07:00
|
|
|
isLoading={isSubmitting}
|
2020-04-25 13:01:16 -07:00
|
|
|
>
|
2020-07-04 14:34:43 -07:00
|
|
|
Continue
|
|
|
|
</Button>
|
2020-04-25 13:01:16 -07:00
|
|
|
</div>
|
2020-07-04 14:34:43 -07:00
|
|
|
<div css={tw`mt-6 text-center`}>
|
2020-07-02 23:01:02 -07:00
|
|
|
<span
|
|
|
|
onClick={() => {
|
|
|
|
setFieldValue('code', '');
|
|
|
|
setFieldValue('recoveryCode', '');
|
|
|
|
setIsMissingDevice(s => !s);
|
|
|
|
}}
|
2020-07-04 14:34:43 -07:00
|
|
|
css={tw`cursor-pointer text-xs text-neutral-500 tracking-wide uppercase no-underline hover:text-neutral-700`}
|
2020-07-02 23:01:02 -07:00
|
|
|
>
|
|
|
|
{!isMissingDevice ? 'I\'ve Lost My Device' : 'I Have My Device'}
|
|
|
|
</span>
|
|
|
|
</div>
|
2020-07-04 14:34:43 -07:00
|
|
|
<div css={tw`mt-6 text-center`}>
|
2020-04-25 13:01:16 -07:00
|
|
|
<Link
|
|
|
|
to={'/auth/login'}
|
2020-07-04 14:34:43 -07:00
|
|
|
css={tw`text-xs text-neutral-500 tracking-wide uppercase no-underline hover:text-neutral-700`}
|
2020-04-25 13:01:16 -07:00
|
|
|
>
|
|
|
|
Return to Login
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
</LoginFormContainer>
|
|
|
|
);
|
|
|
|
};
|
2019-06-22 13:33:11 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
const EnhancedForm = withFormik<Props, Values>({
|
2020-07-02 23:01:02 -07:00
|
|
|
handleSubmit: ({ code, recoveryCode }, { setSubmitting, props: { addError, clearFlashes, location } }) => {
|
2019-06-22 16:45:51 -07:00
|
|
|
clearFlashes();
|
2020-07-11 13:10:01 -06:00
|
|
|
|
2020-07-02 23:01:02 -07:00
|
|
|
loginCheckpoint(location.state?.token || '', code, recoveryCode)
|
2019-06-22 16:45:51 -07:00
|
|
|
.then(response => {
|
|
|
|
if (response.complete) {
|
|
|
|
// @ts-ignore
|
|
|
|
window.location = response.intended || '/';
|
2020-04-25 13:01:16 -07:00
|
|
|
return;
|
2019-06-22 16:45:51 -07:00
|
|
|
}
|
2020-04-25 13:03:37 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
setSubmitting(false);
|
2019-06-22 16:45:51 -07:00
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
2020-04-25 13:01:16 -07:00
|
|
|
setSubmitting(false);
|
|
|
|
addError({ message: httpErrorToHuman(error) });
|
2019-06-22 16:45:51 -07:00
|
|
|
});
|
2020-04-25 13:01:16 -07:00
|
|
|
},
|
2019-06-16 18:07:57 -07:00
|
|
|
|
2020-04-25 13:01:16 -07:00
|
|
|
mapPropsToValues: () => ({
|
|
|
|
code: '',
|
2020-07-02 23:01:02 -07:00
|
|
|
recoveryCode: '',
|
2020-04-25 13:01:16 -07:00
|
|
|
}),
|
|
|
|
})(LoginCheckpointContainer);
|
|
|
|
|
|
|
|
export default ({ history, location, ...props }: OwnProps) => {
|
|
|
|
const { addError, clearFlashes } = useFlash();
|
|
|
|
|
|
|
|
if (!location.state?.token) {
|
|
|
|
history.replace('/auth/login');
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return <EnhancedForm
|
|
|
|
addError={addError}
|
|
|
|
clearFlashes={clearFlashes}
|
|
|
|
history={history}
|
|
|
|
location={location}
|
|
|
|
{...props}
|
|
|
|
/>;
|
2019-06-16 18:07:57 -07:00
|
|
|
};
|