-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathJsonEditor.vue
422 lines (415 loc) · 13.1 KB
/
JsonEditor.vue
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<script>
import { loadFields } from './parser';
import { initChild, getChild, setVal, deepClone } from './utils';
const option = { native: true };
const components = {
title: { component: 'h1', option },
description: { component: 'p', option },
error: { component: 'div', option },
form: { component: 'form', option },
file: { component: 'input', option },
label: { component: 'label', option },
input: { component: 'input', option },
radio: { component: 'input', option },
select: { component: 'select', option },
option: { component: 'option', option },
button: {
component: 'button',
option: {
...option,
type: 'submit',
label: 'Submit',
},
},
checkbox: { component: 'input', option },
textarea: { component: 'textarea', option },
radiogroup: { component: 'div', option },
checkboxgroup: { component: 'div', option },
};
const defaultInput = { component: 'input', option };
const defaultGroup = { component: 'div', option };
/**
* Edit JSON in UI form with JSON Schema and Vue.js `<json-editor>` component.
*
* @author Yourtion
* @license MIT
*/
export default {
name: 'JsonEditor',
props: {
/**
* The JSON Schema object. Use the `v-if` directive to load asynchronous schema.
*/
schema: { type: Object, required: true },
/**
* Use this directive to create two-way data bindings with the component. It automatically picks the correct way to update the element based on the input type.
* @model
* @default {}
*/
value: { type: Object, default: () => ({}) },
/**
* This property indicates whether the value of the control can be automatically completed by the browser. Possible values are: `off` and `on`.
*/
autoComplete: { type: String },
/**
* This Boolean attribute indicates that the form is not to be validated when submitted.
*/
noValidate: { type: Boolean },
/**
* Define the inputs wrapping class. Leave `undefined` to disable input wrapping.
*/
inputWrappingClass: { type: String },
},
data() {
return {
default: {},
fields: {},
error: null,
data: {},
};
},
created() {
loadFields(this, deepClone(this.schema));
this.default = deepClone(this.value);
this.data = this.value;
},
render(createElement) {
const nodes = [];
if (this.schema.title) {
nodes.push(createElement(components.title.component, this.schema.title));
}
if (this.schema.description) {
nodes.push(createElement(components.description.component, this.schema.description));
}
if (this.error) {
const errorOptions = this.elementOptions(components.error);
const errorNodes = [];
if (components.error.option.native) {
errorNodes.push(this.error);
}
nodes.push(createElement(components.error.component, errorOptions, errorNodes));
}
const allFormNodes = [];
const formNode = {
root: {},
};
function createForm(fields, sub) {
let node;
if (sub) {
node = setVal(formNode, sub.pop(), {});
} else {
node = formNode.root;
}
if (Object.keys(fields).length) {
Object.keys(fields).forEach(key => {
const formNodes = [];
if (key.indexOf('$') === 0) return;
const field = fields[key];
if (field.$sub) {
return createForm.call(this, field, sub ? [...sub, key] : [key]);
}
const fieldName = field.name;
const fieldValue = getChild(this.value, fieldName.split('.'));
if (!field.value) {
field.value = fieldValue;
}
const customComponent = field.component ? { component: field.component, option: {}} : undefined;
// eslint-disable-next-line
const element = field.component
? customComponent
: field.hasOwnProperty('items') && field.type !== 'select'
? components[`${ field.type }group`] || defaultGroup
: components[field.type] || defaultInput;
const fieldOptions = this.elementOptions(element, field, field);
const children = [];
const input = {
ref: fieldName,
domProps: {
value: fieldValue,
},
on: {
input: event => {
const value = event && event.target ? event.target.value : event;
const ns = fieldName.split('.');
const n = ns.pop();
const ret = ns.length > 0 ? initChild(this.data, ns) : this.data;
this.$set(ret, n, value);
/**
* Fired synchronously when the value of an element is changed.
*/
this.$emit('input', this.data);
},
change: this.changed,
},
...fieldOptions,
};
delete field.value;
switch (field.type) {
case 'text':
if (field.hasOwnProperty('placeholder')) {
if (!input.attrs) input.attrs = {}
input.attrs.placeholder = field.placeholder
}
break;
case 'textarea':
if (element.option.native) {
input.domProps.innerHTML = fieldValue;
}
break;
case 'radio':
case 'checkbox':
if (field.hasOwnProperty('items')) {
field.items.forEach(item => {
const itemOptions = this.elementOptions(components[field.type], item, item, item);
children.push(createElement(components[field.type].component, itemOptions, item.label));
});
}
break;
case 'select':
if (!field.required) {
children.push(createElement(components.option.component));
}
field.items.forEach(option => {
const optionOptions = this.elementOptions(
components.option,
{
value: option.value,
},
field
);
children.push(
createElement(
components.option.component,
{
domProps: {
value: option.value,
},
...optionOptions,
},
option.label
)
);
});
break;
}
const inputElement = createElement(element.component, input, children);
const formControlsNodes = [];
if (field.label && !option.disableWrappingLabel) {
const labelOptions = this.elementOptions(components.label, field, field);
const labelNodes = [];
if (components.label.option.native) {
labelNodes.push(
createElement(
'span',
{
attrs: {
'data-required-field': field.required ? 'true' : 'false',
},
},
field.label
)
);
}
labelNodes.push(inputElement);
if (field.description) {
labelNodes.push(createElement('br'));
labelNodes.push(createElement('small', field.description));
}
formControlsNodes.push(createElement(components.label.component, labelOptions, labelNodes));
} else {
formControlsNodes.push(inputElement);
if (field.description) {
formControlsNodes.push(createElement('br'));
formControlsNodes.push(createElement('small', field.description));
}
}
if (this.inputWrappingClass) {
formNodes.push(
createElement(
'div',
{
class: this.inputWrappingClass,
},
formControlsNodes
)
);
} else {
formControlsNodes.forEach(node => formNodes.push(node));
}
node[key] = formNodes[0];
});
}
}
createForm.call(this, this.fields);
function createNode(fields, sub) {
const nodes = [];
const subName = sub && sub.pop();
if (fields.$title) {
nodes.push(
createElement(
'div',
{
class: 'sub-title',
},
fields.$title
)
);
}
Object.keys(fields).forEach(key => {
if (key.indexOf('$') === 0) return;
const field = fields[key];
if (field.$sub) {
const node = createNode.call(this, field, sub ? [...sub, key] : [key]);
nodes.push(
createElement(
'div',
{
class: 'sub',
},
node
)
);
} else if (subName) {
nodes.push(getChild(formNode, subName.split('.'))[key]);
} else {
nodes.push(formNode.root[key]);
}
});
return nodes;
}
const formNodes = createNode.call(this, this.fields);
allFormNodes.push(formNodes);
const labelOptions = this.elementOptions(components.label);
const button = this.$slots.hasOwnProperty('default')
? { component: this.$slots.default, option }
: components.button;
if (button.component instanceof Array) {
allFormNodes.push(createElement(components.label.component, labelOptions, button.component));
} else {
const buttonOptions = this.elementOptions(button);
const buttonElement = createElement(button.component, buttonOptions, button.option.label);
allFormNodes.push(createElement(components.label.component, labelOptions, [buttonElement]));
}
const formOptions = this.elementOptions(components.form, {
autocomplete: this.autocomplete,
novalidate: this.novalidate,
});
nodes.push(
createElement(
components.form.component,
{
ref: '__form',
on: {
submit: event => {
event.stopPropagation();
this.submit(event);
},
invalid: this.invalid,
},
...formOptions,
},
allFormNodes
)
);
return createElement('div', nodes);
},
mounted() {
this.reset();
},
setComponent(type, component, option = {}) {
components[type] = { component, option };
},
methods: {
/**
* @private
*/
optionValue(field, target, item = {}) {
return typeof target === 'function' ? target({ vm: this, field, item }) : target;
},
/**
* @private
*/
elementOptions(element, extendingOptions = {}, field = {}, item = {}) {
const attrName = element.option.native ? 'attrs' : 'props';
const elementProps =
typeof element.option === 'function' ? element.option : { ...element.option, native: undefined };
const options = this.optionValue(field, elementProps, item);
return { [attrName]: { ...extendingOptions, ...options }};
},
/**
* @private
*/
changed(e) {
/**
* Fired when a change to the element's value is committed by the user.
*/
this.$emit('change', e);
},
/**
* Get a form input reference
*/
input(name) {
if (!this.$refs[name]) {
throw new Error(`Undefined input reference '${ name }'`);
}
return this.$refs[name][0];
},
/**
* Get the form reference
*/
form() {
return this.$refs.__form;
},
/**
* Checks whether the form has any constraints and whether it satisfies them. If the form fails its constraints, the browser fires a cancelable `invalid` event at the element, and then returns false.
*/
checkValidity() {
return this.$refs.__form.checkValidity();
},
/**
* @private
*/
invalid(e) {
/**
* Fired when a submittable element has been checked and doesn't satisfy its constraints. The validity of submittable elements is checked before submitting their owner form, or after the `checkValidity()` of the element or its owner form is called.
*/
this.$emit('invalid', e);
},
/**
* Reset the value of all elements of the parent form.
*/
reset() {
for (const key in this.data) {
const ns = key.split('.');
const n = ns.pop();
const ret = ns.length > 0 ? initChild(this.data, ns) : this.data;
const value = getChild(this.default, key.split('.'));
this.$set(ret, n, value);
}
},
/**
* Send the content of the form to the server
*/
submit(event) {
if (this.checkValidity()) {
/**
* Fired when a form is submitted
*/
this.$emit('submit', event);
}
},
/**
* Set a message error.
*/
setErrorMessage(message) {
this.error = message;
},
/**
* clear the message error.
*/
clearErrorMessage() {
this.error = null;
},
},
};
</script>