aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FormBuilder/index.js
blob: 8a13bf0b8b3747ed8c9fe5771658ab9e43c70380 (plain)
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
import { DragIndicator, Clear } from "@mui/icons-material";
import {
  Card,
  CardContent,
  CardHeader,
  IconButton,
  Stack,
  TextField,
} from "@mui/material";
import React, { useRef, useState } from "react";
export default function FormBuilder() {
  return (
    <Stack direction={"column"}>
      <h3>FormBuilder</h3>
      <Stack
        direction={"row"}
        justifyContent={"space-between"}
        alignItems={"flex-start"}
        spacing={2}
      >
        <Form initialForm={false} editable />
        <WidgetsLibrary />
      </Stack>
    </Stack>
  );
}

const availableWidgets = {
  label: {
    name: "Label",
    element: ({ id, name, setName }) => (
      <TextField
        id={id}
        variant="standard"
        value={name}
        onChange={(e) => setName(e.target.value)}
        fullWidth
      />
    ),
    finalElement: ({ id }) => <div>{id}</div>,
  },
  number: {
    name: "Number",
    element: ({ id }) => (
      <TextField
        id={id}
        label={id ? `example field ${id}` : "Outlined"}
        variant="outlined"
        type={"number"}
        fullWidth
      />
    ),
  },
  text: {
    name: "Text",
    element: ({ id }) => (
      <TextField
        id={id}
        label={id ? `example field ${id}` : "Outlined"}
        variant="outlined"
        fullWidth
      />
    ),
  },
  multiline: {
    name: "Multiline",
    element: ({ id }) => (
      <TextField
        id={id}
        label={id ? `example field ${id}` : "Multiline"}
        placeholder="Placeholder"
        multiline
        minRows={4}
        fullWidth
      />
    ),
  },
};

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";
    console.log(e);
  }

  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 }) {
  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();
  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);
        console.log(e);
        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);
        }
      }}
    />
  );
}

function Form({ initialForm, editable }) {
  const [form, setForm] = useState({ fields: [], ...initialForm });

  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),
    };
    console.log("deleteFormField", { id, form, newForm });
    setForm({ ...newForm });
  }
  console.log("render", form.fields);

  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) {
    console.log({ 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);
    console.log("newform", form);
    setForm({ ...form });
  }

  if (!editable && !initialForm) {
    return;
    // else if (!initialForm) {
    //   return <FormInitialPrompt />;
    // }
  } else {
    return (
      <Stack sx={{ width: "100%" }}>
        <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 && (
              <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}</>;
}