1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

clearing errors in dialog on input

This commit is contained in:
Fedor Katurov 2020-08-20 11:27:32 +07:00
parent f1463ed5ea
commit 88ee0601c8
6 changed files with 58 additions and 15 deletions

View file

@ -1,4 +1,4 @@
import React, { FC, useState } from 'react'; import React, { FC, useEffect, useState } from 'react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { IDialogProps } from '~/redux/modal/constants'; import { IDialogProps } from '~/redux/modal/constants';
import { BetterScrollDialog } from '~/containers/dialogs/BetterScrollDialog'; import { BetterScrollDialog } from '~/containers/dialogs/BetterScrollDialog';
@ -8,24 +8,66 @@ import { Group } from '~/components/containers/Group';
import { InputText } from '~/components/input/InputText'; import { InputText } from '~/components/input/InputText';
import styles from './styles.scss'; import styles from './styles.scss';
import { selectAuthRegisterSocial } from '~/redux/auth/selectors'; import { selectAuthRegisterSocial } from '~/redux/auth/selectors';
import * as AUTH_ACTIONS from '~/redux/auth/actions';
import { useCloseOnEscape } from '~/utils/hooks';
const mapStateToProps = selectAuthRegisterSocial; const mapStateToProps = selectAuthRegisterSocial;
const mapDispatchToProps = {}; const mapDispatchToProps = {
authSetRegisterSocialErrors: AUTH_ACTIONS.authSetRegisterSocialErrors,
authSetRegisterSocial: AUTH_ACTIONS.authSetRegisterSocial,
};
type Props = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & IDialogProps & {}; type Props = ReturnType<typeof mapStateToProps> & typeof mapDispatchToProps & IDialogProps & {};
const LoginSocialRegisterDialogUnconnected: FC<Props> = ({ onRequestClose, token }) => { const LoginSocialRegisterDialogUnconnected: FC<Props> = ({
onRequestClose,
token,
errors,
error,
authSetRegisterSocialErrors,
authSetRegisterSocial,
}) => {
const [username, setUsername] = useState(''); const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
useEffect(() => {
if (errors.username) authSetRegisterSocialErrors({ username: '' });
}, [username]);
useEffect(() => {
if (errors.password) authSetRegisterSocialErrors({ password: '' });
}, [password]);
useEffect(() => {
if (error) authSetRegisterSocial({ error: '' });
}, [username, password]);
useCloseOnEscape(onRequestClose);
return ( return (
<BetterScrollDialog onClose={onRequestClose} width={300}> <BetterScrollDialog onClose={onRequestClose} width={300} error={error}>
<Padder> <Padder>
<div className={styles.wrap}> <div className={styles.wrap}>
<Group> <Group>
<DialogTitle>Добро пожаловать в семью!</DialogTitle> <DialogTitle>Добро пожаловать в семью!</DialogTitle>
<InputText handler={setUsername} value={token} title="Token" /> <InputText handler={setUsername} value={token} title="Token" />
<InputText handler={setUsername} value={username} title="Юзернэйм" />
<InputText handler={setUsername} value={username} title="Пароль" type="password" /> <InputText
handler={setUsername}
value={username}
title="Юзернэйм"
error={errors.username}
/>
<InputText
handler={setPassword}
value={password}
title="Пароль"
type="password"
error={errors.password}
/>
</Group> </Group>
</div> </div>
</Padder> </Padder>

View file

@ -50,11 +50,12 @@ const INITIAL_STATE: IAuthState = {
register_social: { register_social: {
errors: { errors: {
username: '', username: 'and this',
password: '', password: 'dislike this',
}, },
error: '', error: 'dont like this one',
token: '', token:
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJEYXRhIjp7IlByb3ZpZGVyIjoiZ29vZ2xlIiwiSWQiOiJma2F0dXJvdkBpY2Vyb2NrZGV2LmNvbSIsIkVtYWlsIjoiZmthdHVyb3ZAaWNlcm9ja2Rldi5jb20iLCJUb2tlbiI6InlhMjkuYTBBZkg2U01EeXFGdlRaTExXckhsQm1QdGZIOFNIVGQteWlSYTFKSXNmVXluY2F6MTZ5UGhjRmxydTlDMWFtTEg0aHlHRzNIRkhrVGU0SXFUS09hVVBEREdqR2JQRVFJbGpPME9UbUp2T2RrdEtWNDVoUGpJcTB1cHVLc003UWJLSm1oRWhkMEFVa3YyejVHWlNSMjhaM2VOZVdwTEVYSGV0MW1yNyIsIkZldGNoZWQiOnsiUHJvdmlkZXIiOiJnb29nbGUiLCJJZCI6OTIyMzM3MjAzNjg1NDc3NTgwNywiTmFtZSI6IkZlZG9yIEthdHVyb3YiLCJQaG90byI6Imh0dHBzOi8vbGg2Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8ta1VMYXh0VV9jZTAvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbkEycTFReU1WLUN0RUtBclRhQzgydE52NTM2QS9waG90by5qcGcifX0sIlR5cGUiOiJvYXV0aF9jbGFpbSJ9.r1MY994BC_g4qRDoDoyNmwLs0qRzBLx6_Ez-3mHQtwg',
is_loading: false, is_loading: false,
}, },
}; };

View file

@ -55,7 +55,7 @@ import { IMessageNotification, IResultWithStatus, OAUTH_EVENT_TYPES, Unwrap } fr
import { IAuthState, IUser } from './types'; import { IAuthState, IUser } from './types';
import { REHYDRATE, RehydrateAction } from 'redux-persist'; import { REHYDRATE, RehydrateAction } from 'redux-persist';
import { selectModal } from '~/redux/modal/selectors'; import { selectModal } from '~/redux/modal/selectors';
import { IModalState } from '~/redux/modal/reducer'; import { IModalState } from '~/redux/modal';
import { DIALOGS } from '~/redux/modal/constants'; import { DIALOGS } from '~/redux/modal/constants';
import { ERRORS } from '~/constants/errors'; import { ERRORS } from '~/constants/errors';

View file

@ -1,4 +1,4 @@
import { IModalState } from '~/redux/modal/reducer'; import { IModalState } from '~/redux/modal/index';
import { MODAL_ACTIONS } from '~/redux/modal/constants'; import { MODAL_ACTIONS } from '~/redux/modal/constants';
import { IFile } from '../types'; import { IFile } from '../types';

View file

@ -13,8 +13,8 @@ export interface IModalState {
} }
const INITIAL_STATE: IModalState = { const INITIAL_STATE: IModalState = {
is_shown: false, is_shown: true,
dialog: null, dialog: DIALOGS.LOGIN_SOCIAL_REGISTER,
photoswipe: { photoswipe: {
images: [], images: [],
index: 0, index: 0,

View file

@ -23,7 +23,7 @@ import uploadSaga from '~/redux/uploads/sagas';
import player, { IPlayerState } from '~/redux/player/reducer'; import player, { IPlayerState } from '~/redux/player/reducer';
import playerSaga from '~/redux/player/sagas'; import playerSaga from '~/redux/player/sagas';
import modal, { IModalState } from '~/redux/modal/reducer'; import modal, { IModalState } from '~/redux/modal';
import { modalSaga } from './modal/sagas'; import { modalSaga } from './modal/sagas';
import { gotAuthPostMessage, authOpenProfile } from './auth/actions'; import { gotAuthPostMessage, authOpenProfile } from './auth/actions';