This repository was archived by the owner on May 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
83 lines (73 loc) · 1.74 KB
/
index.tsx
File metadata and controls
83 lines (73 loc) · 1.74 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
import * as React from 'react';
import { render } from 'react-dom';
import Adult from './validations/adult';
import Child from './validations/child';
import Validate from '..';
import ValidatedField from './components/ValidatedField';
window.user = {
firstName: 'Billy',
lastName: 'Bob',
email: '',
job: '',
age: 10,
};
// Try swapping `as={Adult}` with `as={Child}`.
render(
<Validate model={window.user} as={Adult}>
{({ model, set, reset, isPristine, hasErrors, flush }) => (
<form onSubmit={e => {
e.preventDefault();
flush();
}}>
<h2>Profile</h2>
<ValidatedField
type="text"
model={model}
property="firstName"
setProperty={set}
/>
<ValidatedField
type="text"
model={model}
property="lastName"
setProperty={set}
/>
<ValidatedField
type="text"
model={model}
property="email"
setProperty={set}
/>
<ValidatedField
type="text"
model={model}
property="job"
setProperty={set}
/>
<ValidatedField
type="number"
model={model}
property="age"
setProperty={(name, value) => set(name, parseInt(value, 10))}
/>
<div className="ButtonRow">
<button
className="Save"
type="submit"
disabled={isPristine || hasErrors}
>
Save
</button>
<button
className="Reset"
type="button"
onClick={reset}
>
Reset
</button>
</div>
</form>
)}
</Validate>,
document.getElementById('app')
);