-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathEmployeeForm.js
More file actions
290 lines (272 loc) · 11.7 KB
/
EmployeeForm.js
File metadata and controls
290 lines (272 loc) · 11.7 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import React from 'react';
import { Formik } from 'formik';
import Alert from 'components/common/alert';
import history from 'utils/history';
import * as toast from 'utils/toast';
import * as alert from 'utils/alert';
import { FormGroup, DateSelector, FormSelect } from '../../common/form';
import * as routes from 'constants/routes';
import Input from 'components/common/input';
import Loading from 'components/common/loading/Loading';
import employeeSchema from 'schemas/EmployeeSchema';
import * as employeeService from 'services/employee';
import { handleError } from 'utils/errorHandler';
import { DESIGNATION_OPTIONS } from '../../../constants';
const designationOptions = DESIGNATION_OPTIONS.map(designation => {
return { label: designation, value: designation };
});
class EmployeeForm extends React.Component {
constructor(props) {
super(props);
this.state = {
loading: false,
};
}
setLoading = loading => {
this.setState({ loading });
};
handleSubmit = async employee => {
try {
this.setLoading(true);
if (!this.props.id) {
await employeeService.save(employee);
} else {
await employeeService.update(employee);
}
this.setLoading(false);
this.redirectToEmployee();
} catch (err) {
this.setLoading(false);
handleError(err);
}
};
handleCancel = e => {
e.preventDefault();
alert.warning({
title: 'Cancel this Data',
text: "You won't be able to revert this!",
buttonText: 'Yes, Cancel it!',
preConfirm: async () => {
this.redirectToEmployee();
},
});
};
fetchById = async () => {
try {
const data = await employeeService.fetchById(this.state.id);
this.setState({
employee: data,
});
} catch (error) {
toast.error({
title: 'Error',
message: error.response.data.error.message,
});
}
};
redirectToEmployee() {
history.push(routes.EMPLOYEES);
}
render() {
let { data } = this.props;
return (
<Formik enableReinitialize initialValues={data} onSubmit={this.handleSubmit} validationSchema={employeeSchema}>
{props => {
const {
values,
touched,
errors,
dirty,
isSubmitting,
handleChange,
handleBlur,
handleSubmit,
setFieldValue,
setFieldError,
} = props;
return (
<main>
<div className="container mt-5x">
<div className="card card--elevated">
<div className="title-bar__contents">
<div className="title-bar__left">
<h4 className="title-bar__title">Employee Form</h4>
</div>
</div>
</div>
<div className="card card--elevated mt-5x">
<form onSubmit={handleSubmit}>
<div className="form-container p-5x">
<div className="form-wrap">
<div className="form-wrap__row form-wrap__row--no-margin">
<div className="form-wrap__col col-sm-12">
<div className="form-group"></div>
<div className="row">
<div className="col-12-sm col-6-md col-6-lg">
<Input
id="firstName"
labelText="First Name"
name="firstName"
required
placeholder="First Name"
onChange={handleChange}
onBlur={handleBlur}
initialValue={values.firstName}
error={touched.firstName && errors.firstName ? errors.firstName : false}
/>
</div>
<div className="col-12-sm col-6-md col-6-lg">
<Input
id="LastName"
labelText="Last Name"
name="lastName"
required
placeholder="Last Name"
onChange={handleChange}
onBlur={handleBlur}
initialValue={values.lastName}
error={touched.lastName && errors.lastName ? errors.lastName : false}
/>
</div>
</div>
<div className="row">
<div className="col-12-sm col-6-md col-6-lg">
<Input
id="designation"
labelText="Designation"
name="designation"
required
type="dropdown"
options={designationOptions}
onChange={e => {
setFieldValue('designation', e.target.value);
setFieldValue('designation_value', {
label: e.target.value,
value: e.target.value,
});
setFieldError('designation', '');
}}
onBlur={handleBlur}
initialValue={values.firstName}
error={touched.firstName && errors.firstName ? errors.firstName : false}
/>
</div>
<div className="col-12-sm col-6-md col-6-lg">
<Input
id="address"
labelText="Address"
name="address"
required
placeholder="Address"
onChange={handleChange}
onBlur={handleBlur}
initialValue={values.address}
error={touched.address && errors.address ? errors.address : false}
/>
</div>
</div>
<div className="row">
<div className="col-12-sm col-6-md col-6-lg">
<Input
id="dob"
labelText="Date of Birth"
required
placeholder={'DD MM YYYY'}
type="date"
onInputFieldChange={handleChange}
onBlur={handleBlur}
initialValue={values.dob}
error={touched.dob && errors.dob ? errors.dob : false}
placeholder="Pick a birth date"
disabled={false}
/>
</div>
</div>
{/* <FormGroup
name="firstName"
label="First Name"
isMandatory={true}
value={values.firstName}
error={touched.firstName && errors.firstName}
handleBlur={handleBlur}
handleChange={handleChange}
placeholder="First Name"
/>
<FormGroup
name="lastName"
label="Last Name"
isMandatory={true}
value={values.lastName}
error={touched.lastName && errors.lastName}
handleBlur={handleBlur}
handleChange={handleChange}
placeholder="Last Name"
/>
<FormSelect
name="designation"
label="Designation"
isMandatory={true}
value={values.designation_value}
handleBlur={handleBlur}
error={touched.designation && errors.designation}
handleChange={e => {
setFieldValue('designation', e.target.value);
setFieldValue('designation_value', { label: e.target.value, value: e.target.value });
setFieldError('designation', '');
}}
options={designationOptions}
/>
<FormGroup
name="address"
label="Address"
isMandatory={true}
value={values.address}
handleBlur={handleBlur}
error={touched.address && errors.address}
handleChange={handleChange}
placeholder="Address"
/>
<DateSelector
name="dob"
label="Date Of Birth"
placeholderText="Pick a birth date"
isMandatory={true}
value={values.dob}
error={touched.dob && errors.dob}
handleChange={handleChange}
/> */}
<div className="row">
<div className="col-12-sm col-12-md col-12-lg">
<div className="d-flex">
<button
type="submit"
disabled={!dirty || isSubmitting}
className="btn btn--primary f-left card-button mr-3x"
>
{isSubmitting ? <Loading /> : !this.props.id ? 'Create' : 'Update'}
</button>
<button
type="button"
className="btn btn--outlined-grey mr-10 f-left"
onClick={this.handleCancel}
>
Cancel
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</main>
);
}}
</Formik>
);
}
}
export default EmployeeForm;