forked from Kiho/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
demobar.js
157 lines (135 loc) · 4.53 KB
/
demobar.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
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
import React from "react";
import store from './src/stores/store'
import ReactFormGenerator from './src/form';
export default class Demobar extends React.Component {
constructor(props) {
super(props);
this.state = {
data: [],
previewVisible: false,
shortPreviewVisible: false,
roPreviewVisible: false
}
const update = this._onChange.bind(this);
this._onSubmit = this._onSubmit.bind(this);
store.subscribe(state => update(state.data));
}
showPreview() {
this.setState({
previewVisible: true
})
}
showShortPreview() {
this.setState({
shortPreviewVisible: true
})
}
showRoPreview() {
this.setState({
roPreviewVisible: true
})
}
closePreview() {
this.setState({
previewVisible: false,
shortPreviewVisible: false,
roPreviewVisible: false
})
}
_onChange(data) {
this.setState({
data: data
});
}
_onSubmit(data) {
console.log('onSubmit', data);
// Place code to post json data to server here
}
render() {
var modalClass = 'modal';
if(this.state.previewVisible) {
modalClass += ' show';
}
var shortModalClass = 'modal short-modal';
if(this.state.shortPreviewVisible) {
shortModalClass += ' show';
}
var roModalClass = 'modal ro-modal';
if(this.state.roPreviewVisible) {
roModalClass += ' show';
}
return(
<div className="clearfix" style={{margin:'10px', width:'70%'}}>
<h4 className="pull-left">Preview</h4>
<button className="btn btn-primary pull-right" style={{ marginRight: '10px'}} onClick={this.showPreview.bind(this)}>Preview Form</button>
<button className="btn btn-default pull-right" style={{ marginRight: '10px'}} onClick={this.showShortPreview.bind(this)}>Alternate/Short Form</button>
<button className="btn btn-default pull-right" style={{ marginRight: '10px'}} onClick={this.showRoPreview.bind(this)}>Read Only Form</button>
{ this.state.previewVisible &&
<div className={modalClass}>
<div className="modal-dialog">
<div className="modal-content">
<ReactFormGenerator
download_path=""
back_action="/"
back_name="Back"
answer_data={{}}
action_name="Save"
// form_action="/"
// form_method="POST"
onSubmit={this._onSubmit}
variables={this.props.variables}
data={this.state.data} />
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal" onClick={this.closePreview.bind(this)}>Close</button>
</div>
</div>
</div>
</div>
}
{ this.state.roPreviewVisible &&
<div className={roModalClass}>
<div className="modal-dialog">
<div className="modal-content">
<ReactFormGenerator
download_path=""
back_action="/"
back_name="Back"
answer_data={{}}
action_name="Save"
form_action="/"
form_method="POST"
read_only={true}
variables={this.props.variables}
hide_actions={true} data={this.state.data} />
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal" onClick={this.closePreview.bind(this)}>Close</button>
</div>
</div>
</div>
</div>
}
{ this.state.shortPreviewVisible &&
<div className={shortModalClass}>
<div className="modal-dialog">
<div className="modal-content">
<ReactFormGenerator
download_path=""
back_action=""
answer_data={{}}
form_action="/"
form_method="POST"
data={this.state.data}
display_short={true}
variables={this.props.variables}
hide_actions={false} />
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal" onClick={this.closePreview.bind(this)}>Close</button>
</div>
</div>
</div>
</div>
}
</div>
);
}
}