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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
import { DragIndicator, Clear } from "@mui/icons-material";
import {
Card,
CardContent,
CardHeader,
IconButton,
Stack,
TextField,
} from "@mui/material";
import React, { useRef, useState } from "react";
import useForm from "../../hooks/useForm";
export default function FormBuilder({ formId }) {
return (
<Stack direction={"column"}>
<h3>FormBuilder</h3>
<Stack
direction={"row"}
justifyContent={"space-between"}
alignItems={"flex-start"}
spacing={2}
>
<Form initialForm={false} editable formId={formId} />
<WidgetsLibrary />
</Stack>
</Stack>
);
}
const availableWidgets = {
label: {
name: "Label",
element: ({ id, name, setName, finalField }) =>
finalField ? (
<div>{name}</div>
) : (
<TextField
id={id}
variant="standard"
value={name}
onChange={(e) => setName(e.target.value)}
fullWidth
/>
),
},
number: {
name: "Number",
element: ({ id, value, setValue }) => (
<TextField
id={id}
label={id ? `example field ${id}` : "Outlined"}
variant="outlined"
type={"number"}
value={value || ""}
onChange={(e) => {
if (setValue) {
setValue(e.target.value);
}
}}
fullWidth
/>
),
},
text: {
name: "Text",
element: ({ id, setValue, value }) => (
<TextField
id={id}
label={id ? `example field ${id}` : "Outlined"}
variant="outlined"
fullWidth
value={value || ""}
onChange={(e) => {
if (setValue) {
setValue(e.target.value);
}
}}
/>
),
},
multiline: {
name: "Multiline",
element: ({ id, setValue, value }) => (
<TextField
id={id}
label={id ? `example field ${id}` : "Multiline"}
placeholder="Placeholder"
multiline
minRows={4}
fullWidth
value={value || ""}
onChange={(e) => {
if (setValue) {
setValue(e.target.value);
}
}}
/>
),
},
};
function WidgetsLibrary() {
return (
<Stack
direction={"column"}
spacing={0.5}
alignItems={"flex-start"}
sx={{ maxHeight: "100vh", height: "100%", overflow: "scroll" }}
>
{Object.keys(availableWidgets).map((k) => {
const props = availableWidgets[k];
return <WidgetCard key={k} type={k} {...props} />;
})}
</Stack>
);
}
function WidgetCard({ name, element, type, finalElement }) {
function onDragStart(e) {
e.dataTransfer.setData("application/formwidgettype", type);
e.dataTransfer.effectAllowed = "copy";
}
const disabledFieldOverlay = {
pointerEvents: "none",
background: "#7773",
zIndex: 10,
};
if (!element) {
return;
} else {
return (
<Card
draggable
onDragStart={onDragStart}
sx={{ cursor: "grab", width: "100%" }}
>
<Stack
direction={"row"}
justifyContent={"start"}
alignItems={"center"}
alignContent={"center"}
>
<DragIndicator />
<div>
<CardHeader title={name} />
<CardContent>
<div style={disabledFieldOverlay}>
{finalElement ? finalElement({}) : element({})}
</div>
</CardContent>
</div>
</Stack>
</Card>
);
}
}
function FormField({
formField,
setFormField,
deleteFormField,
editable,
setResult,
result,
}) {
const { id, type, name } = formField;
function setName(name) {
setFormField({ ...formField, name });
}
if (!type) {
return;
}
const { element: Element } = availableWidgets[type];
const dragHandleRef = useRef();
const [target, setTarget] = useState();
if (!editable) {
return (
<Element
id={id}
name={name}
setName={setName}
type={type}
finalField={!editable}
setValue={setResult}
value={result?.result}
/>
);
} else {
return (
<Stack
direction={"row"}
sx={{ width: "100%" }}
alignItems={"center"}
justifyContent={"space-between"}
draggable
onMouseDown={(e) => {
setTarget(e.target);
}}
onDragStart={(e) => {
if (dragHandleRef.current.contains(target)) {
e.dataTransfer.setData("application/formwidgetid", id);
} else {
e.preventDefault();
}
}}
>
<span ref={dragHandleRef} style={{ cursor: "grab" }}>
<DragIndicator />
</span>
<Element id={id} name={name} setName={setName} type={type} />
<IconButton onClick={deleteFormField}>
<Clear />
</IconButton>
</Stack>
);
}
}
function capture(e) {
e.stopPropagation();
e.preventDefault();
}
function DropZone({ insertField, index, moveField }) {
const [dragOver, setDragOver] = useState(false);
return (
<span
style={{
marginTop: "2px",
marginBottom: "2px",
width: "100%",
color: "transparent",
background: dragOver ? "#22a9" : "#2221",
height: dragOver ? "2em" : "4px",
borderRadius: 8,
}}
onDragOver={(e) => capture(e) || setDragOver(true)}
onDragExit={() => setDragOver(false)}
onDrop={(e) => {
e.stopPropagation();
e.preventDefault();
setDragOver(false);
if ([...e.dataTransfer.types].includes("application/formwidgettype")) {
const type = e.dataTransfer.getData("application/formwidgettype");
insertField({ index, type });
} else if (
[...e.dataTransfer.types].includes("application/formwidgetid")
) {
const oldId = e.dataTransfer.getData("application/formwidgetid");
moveField(oldId, index);
}
}}
/>
);
}
export function Form({ editable, formId, setResults, results }) {
// const [form, setForm] = useState({ fields: [], ...initialForm });
const [form, setForm] = useForm(formId);
function updateFormField(newField) {
setForm({
...form,
fields: form.fields.map((field) =>
field?.id === newField.id ? newField : field,
),
});
}
function deleteFormField(id) {
const newForm = {
...form,
fields: form.fields.filter((field) => id !== field?.id),
};
setForm({ ...newForm });
}
function insertField({ index, type }) {
const id = crypto.randomUUID();
const newField = {
id,
type,
};
form?.fields?.splice(index + 1, 0, newField);
setForm({ ...form });
}
function moveField(oldId, newIndex) {
const oldIndex = form.fields.findIndex(({ id }) => id === oldId);
const [oldFormField] = form.fields.splice(oldIndex, 1);
if (oldIndex > newIndex) {
newIndex++;
}
form.fields.splice(newIndex, 0, oldFormField);
setForm({ ...form });
}
function setResult(fieldId, result) {
const fieldResult = {
fieldId,
result,
fieldName: form?.fields?.find(({ id }) => id === fieldId)?.name,
};
setResults({ ...results, [fieldId]: fieldResult });
}
return (
<Stack sx={{ width: "100%" }} spacing={editable ? 0 : 1}>
<FormHeader form={form} />
{editable && (
<DropZone moveField={moveField} insertField={insertField} index={-1} />
)}
{form?.fields?.map((formField, i) => (
<Grouping key={formField.id}>
<FormField
setFormField={(field) => updateFormField(field)}
deleteFormField={() => deleteFormField(formField.id)}
formField={formField}
editable={editable}
setResult={results && ((result) => setResult(formField.id, result))}
result={results && results[formField.id]}
/>
{editable && (
<DropZone
moveField={moveField}
insertField={insertField}
index={i}
/>
)}
</Grouping>
))}
</Stack>
);
}
function FormHeader() {
return;
}
//function FormInitialPrompt() {
// return (
// <div
// style={{
// minWidth: "50vh",
// minHeight: "50vh",
// background: "#33333333",
// }}
// >
// Drag and drop and field here to get started
// </div>
// );
//}
//
function Grouping({ children }) {
return <>{children}</>;
}
|