forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
112 lines (103 loc) · 2.6 KB
/
app.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import React from 'react';
import ReactDOM from 'react-dom';
import DemoBar from './demobar';
// eslint-disable-next-line no-unused-vars
import FormBuilder, { Registry } from './src/index';
import * as variables from './variables';
// Add our stylesheets for the demo.
require('./scss/application.scss');
const url = '/api/formdata';
const saveUrl = '/api/formdata';
// const TestComponent = () => <h2>Hello</h2>;
// const MyInput = React.forwardRef((props, ref) => {
// const { name, defaultValue, disabled } = props;
// return (
// <>
// <label style={{ marginRight: '1rem' }}><b>{ props.data.label }</b></label>
// <input ref={ref} name={name} defaultValue={defaultValue} disabled={disabled} />;
// </>
// );
// });
// Registry.register('MyInput', MyInput);
// Registry.register('TestComponent', TestComponent);
// const items = [{
// key: 'Header',
// }, {
// key: 'TextInput',
// }, {
// key: 'TextArea',
// }, {
// key: 'RadioButtons',
// }, {
// key: 'Checkboxes',
// }, {
// key: 'Image',
// },
// {
// group_name: 'Multi Column Row',
// key: 'TwoColumnRow'
// },
// {
// group_name: 'Multi Column Row',
// key: 'ThreeColumnRow'
// },
// {
// group_name: 'Multi Column Row',
// key: 'FourColumnRow',
// element: 'MultiColumnRow',
// },
// {
// group_name: 'Multi Column Row',
// key: 'FiveColumnRow',
// element: 'MultiColumnRow',
// },
// {
// group_name: 'Multi Column Row',
// key: 'SixColumnRow',
// element: 'MultiColumnRow',
// },
// {
// group_name: 'Custom Element',
// key: 'TestComponent',
// element: 'CustomElement',
// component: TestComponent,
// type: 'custom',
// field_name: 'test_component',
// name: 'Something You Want',
// icon: 'fa fa-cog',
// static: true,
// props: { test: 'test_comp' },
// label: 'Label Test',
// },
// {
// group_name: 'Custom Element',
// key: 'MyInput',
// element: 'CustomElement',
// component: MyInput,
// type: 'custom',
// forwardRef: true,
// bare: true,
// field_name: 'my_input_',
// name: 'My Input',
// icon: 'fa fa-cog',
// props: { test: 'test_input' },
// label: 'Label Input',
// },
// ];
const App = () => (
<FormBuilder.ReactFormBuilder
variables={variables}
url={url}
saveUrl={saveUrl}
locale='en'
saveAlways={false}
// toolbarItems={items}
/>);
ReactDOM.render(
<App />,
document.getElementById('form-builder'),
);
ReactDOM.render(
<DemoBar variables={variables} />,
document.getElementById('demo-bar'),
);