-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathindex.js
94 lines (90 loc) · 1.77 KB
/
index.js
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
/* eslint-disable camelcase */
import React from 'react';
import ReactDOM from 'react-dom';
import FormRenderer from '../src';
import componentMapper from './form-fields-mapper';
import FormTemplate from './form-template';
const fileSchema = {
fields: [
{
component: 'text-field',
name: 'field1',
label: 'Field1 (try "abc")',
},
{
component: 'text-field',
name: 'field2',
label: 'Field2 (try "xyz")',
hideField: true,
},
{
component: 'text-field',
name: 'field3',
label: 'Field3 (try "123")',
},
{
component: 'text-field',
name: 'field4',
label: 'Field4',
},
{
component: 'text-field',
name: 'field5',
label: 'Field5',
condition: {
when: 'field1',
is: 'cba',
},
},
],
conditions: {
cond1: {
when: 'fieldx',
is: 'abc',
then: {
field4: {
disabled: true,
set: 'New value for field4',
},
field3: {
disabled: true,
},
field2: {
visible: true,
},
},
},
cond2: {
when: 'field3',
is: '123',
then: {
field3: {
visible: false,
},
},
},
cond3: {
when: 'field2',
is: 'xyz',
then: {
field3: {
visible: false,
},
},
},
},
};
const App = () => {
// const [values, setValues] = useState({});
return (
<div style={{padding: 20}}>
<FormRenderer
componentMapper={componentMapper}
onSubmit={(values, ...args) => console.log(values, args)}
FormTemplate={FormTemplate}
schema={fileSchema}
/>
</div>
);
};
ReactDOM.render(<App />, document.getElementById('root'));