1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import classNames from 'classnames';
import { Field, reduxForm } from 'redux-form/immutable';
import ArrowForward from '@material-ui/icons/ArrowForward';
import { Button, FormControl } from '@material-ui/core';
import styles from './user-jss';
import PapperBlock from '../PapperBlock/PapperBlock';
import { TextFieldRedux } from './ReduxFormMUI';
// validation functions
const required = value => (value == null ? 'Required' : undefined);
const email = value => (
value && !/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i.test(value)
? 'Invalid email'
: undefined
);
class ResetForm extends React.Component {
render() {
const {
classes,
handleSubmit,
pristine,
submitting
} = this.props;
return (
<div className={classes.formWrap}>
<PapperBlock whiteBg title="Reset Password" desc="We will send reset password link to Your Email">
<form onSubmit={handleSubmit}>
<div>
<FormControl className={classes.formControl}>
<Field
name="email"
component={TextFieldRedux}
placeholder="Your Email"
label="Your Email"
required
validate={[required, email]}
className={classes.field}
/>
</FormControl>
</div>
<div className={classes.btnArea}>
<Button variant="contained" color="primary" type="submit">
Send ResetLink
<ArrowForward className={classNames(classes.rightIcon, classes.iconSmall)} disabled={submitting || pristine} />
</Button>
</div>
</form>
</PapperBlock>
</div>
);
}
}
ResetForm.propTypes = {
classes: PropTypes.object.isRequired,
handleSubmit: PropTypes.func.isRequired,
pristine: PropTypes.bool.isRequired,
submitting: PropTypes.bool.isRequired,
};
const ResetFormReduxed = reduxForm({
form: 'immutableEResetFrm',
enableReinitialize: true,
})(ResetForm);
export default withStyles(styles)(ResetFormReduxed);
|