mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
136 lines
4.2 KiB
TypeScript
136 lines
4.2 KiB
TypeScript
import React, { FC, FormEvent, useCallback, useEffect, useState } from 'react';
|
||
import { connect } from 'react-redux';
|
||
import { useCloseOnEscape } from '~/hooks';
|
||
import { Group } from '~/components/containers/Group';
|
||
import { InputText } from '~/components/input/InputText';
|
||
import { Button } from '~/components/input/Button';
|
||
import { Padder } from '~/components/containers/Padder';
|
||
import { selectAuthLogin } from '~/redux/auth/selectors';
|
||
import { API } from '~/constants/api';
|
||
import { BetterScrollDialog } from '../BetterScrollDialog';
|
||
|
||
import styles from './styles.module.scss';
|
||
import * as ACTIONS from '~/redux/auth/actions';
|
||
import { ISocialProvider } from '~/redux/auth/types';
|
||
import { pick } from 'ramda';
|
||
import { LoginDialogButtons } from '~/containers/dialogs/LoginDialogButtons';
|
||
import { OAUTH_EVENT_TYPES } from '~/redux/types';
|
||
import { DialogTitle } from '~/components/dialogs/DialogTitle';
|
||
import { useTranslatedError } from '~/hooks/data/useTranslatedError';
|
||
import { IDialogProps } from '~/types/modal';
|
||
import { useShowModal } from '~/hooks/modal/useShowModal';
|
||
import { Dialog } from '~/constants/modal';
|
||
|
||
const mapStateToProps = state => ({
|
||
...pick(['error', 'is_registering'], selectAuthLogin(state)),
|
||
});
|
||
|
||
const mapDispatchToProps = {
|
||
userSendLoginRequest: ACTIONS.userSendLoginRequest,
|
||
userSetLoginError: ACTIONS.userSetLoginError,
|
||
authLoginWithSocial: ACTIONS.authLoginWithSocial,
|
||
authGotOauthLoginEvent: ACTIONS.authGotOauthLoginEvent,
|
||
};
|
||
|
||
type IProps = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & IDialogProps & {};
|
||
|
||
const LoginDialogUnconnected: FC<IProps> = ({
|
||
error,
|
||
|
||
onRequestClose,
|
||
userSendLoginRequest,
|
||
userSetLoginError,
|
||
authGotOauthLoginEvent,
|
||
}) => {
|
||
const [username, setUserName] = useState('');
|
||
const [password, setPassword] = useState('');
|
||
|
||
const showRestoreDialog = useShowModal(Dialog.RestoreRequest);
|
||
|
||
const onSubmit = useCallback(
|
||
(event: FormEvent) => {
|
||
event.preventDefault();
|
||
userSendLoginRequest({ username, password });
|
||
},
|
||
[userSendLoginRequest, username, password]
|
||
);
|
||
|
||
const onRestoreRequest = useCallback(
|
||
event => {
|
||
event.preventDefault();
|
||
showRestoreDialog();
|
||
},
|
||
[showRestoreDialog]
|
||
);
|
||
|
||
const openOauthWindow = useCallback(
|
||
(provider: ISocialProvider) => () => {
|
||
window.open(API.USER.OAUTH_WINDOW(provider), '', 'width=600,height=400');
|
||
},
|
||
[]
|
||
);
|
||
|
||
const onMessage = useCallback(
|
||
(event: MessageEvent) => {
|
||
if (!event?.data?.type || !Object.values(OAUTH_EVENT_TYPES).includes(event.data.type)) {
|
||
return;
|
||
}
|
||
|
||
authGotOauthLoginEvent(event.data);
|
||
},
|
||
[authGotOauthLoginEvent]
|
||
);
|
||
|
||
useEffect(() => {
|
||
if (error) userSetLoginError('');
|
||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
}, [username, password]);
|
||
|
||
useEffect(() => {
|
||
window.addEventListener('message', onMessage);
|
||
return () => window.removeEventListener('message', onMessage);
|
||
}, [onMessage]);
|
||
|
||
useCloseOnEscape(onRequestClose);
|
||
|
||
const translatedError = useTranslatedError(error);
|
||
|
||
return (
|
||
<form onSubmit={onSubmit}>
|
||
<div>
|
||
<BetterScrollDialog
|
||
width={300}
|
||
error={translatedError}
|
||
onClose={onRequestClose}
|
||
footer={<LoginDialogButtons openOauthWindow={openOauthWindow} />}
|
||
backdrop={<div className={styles.backdrop} />}
|
||
>
|
||
<Padder>
|
||
<div className={styles.wrap}>
|
||
<Group>
|
||
<DialogTitle>Решительно войти</DialogTitle>
|
||
|
||
<InputText title="Логин" handler={setUserName} value={username} autoFocus />
|
||
|
||
<InputText title="Пароль" handler={setPassword} value={password} type="password" />
|
||
|
||
<Button
|
||
color="link"
|
||
type="button"
|
||
onClick={onRestoreRequest}
|
||
className={styles.forgot_button}
|
||
>
|
||
Вспомнить пароль
|
||
</Button>
|
||
</Group>
|
||
</div>
|
||
</Padder>
|
||
</BetterScrollDialog>
|
||
</div>
|
||
</form>
|
||
);
|
||
};
|
||
|
||
const LoginDialog = connect(mapStateToProps, mapDispatchToProps)(LoginDialogUnconnected);
|
||
|
||
export { LoginDialog };
|