forked from ecoutu/eco-json-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patheco-json-schema-array.html
More file actions
executable file
·442 lines (403 loc) · 15 KB
/
eco-json-schema-array.html
File metadata and controls
executable file
·442 lines (403 loc) · 15 KB
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<link rel="import" href="../polymer/polymer.html"/>
<link rel="import" href="../iron-flex-layout/iron-flex-layout-classes.html"/>
<!--
`eco-json-schema-array` takes in a JSON schema of type array and builds a form,
exposing a `value` property that represents an array described by the schema.
Please see the `eco-json-schema-object` documentation for further information.
@group eco Elements
@element eco-json-schema-array
@demo demo/index.html
-->
<dom-module id="eco-json-schema-array">
<link rel="import" href="../iron-icons/iron-icons.html"/>
<link rel="import" href="../iron-icons/editor-icons.html"/>
<link rel="import" href="../paper-icon-button/paper-icon-button.html"/>
<link rel="import" href="../paper-tooltip/paper-tooltip.html"/>
<link rel="import" href="../paper-collapse-item/paper-collapse-item.html"/>
<link rel="import" href="../paper-collapse-item/paper-collapse-group.html"/>
<link rel="import" href="../app-localize-behavior/app-localize-behavior.html">
<link rel="import" href="./eco-json-schema-boolean.html"/>
<link rel="import" href="./eco-json-schema-enum.html"/>
<link rel="import" href="./eco-json-schema-input.html"/>
<link rel="import" href="./eco-json-schema-object.html"/>
<link rel="import" href="./eco-json-schema-file.html"/>
<template>
<style is="custom-style" include="iron-flex iron-flex-alignment">
paper-input {
padding: 2px;
--paper-input-container-label: {
white-space: normal;
position: static;
font-size: 22px;
color: #212121;
}
}
paper-collapse-item {
--paper-collapse-item-header: {
font-weight:bold;
padding: 8px 0 0 8px;
};
}
#form {
border: 1px solid #AAAAAA;
}
#form div:nth-child(odd) {
background-color: #F2F2F2;
padding: 4px;
}
#form div:nth-child(even) {
background-color: #E2E2E2;
border-top: 1px solid #AAAAAA;
border-bottom: 1px solid #AAAAAA;
padding: 4px;
}
#form div:focus,
#form div:hover,
#form div:active {
background-color: #FFFFFF !important;
}
paper-icon-button {
float: right;
border-radius: 50%;
}
.array-add {
color: #34e79a;
background-color: #f8f8f8;
}
.array-remove-element {
color: #f44336;
background-color: #f8f8f8;
}
.label {
@apply(--paper-input-container-label);
white-space: normal;
position: static;
font-size: 22px;
color: #212121;
}
:host {
display: block;
.label {
@apply(--paper-input-container-label);
white-space: normal;
position: static;
font-size: 22px;
color: #212121;
}
}
</style>
<div class="horizontal layout">
<div class="flex" hidden$="[[!label]]">[[label]]</div>
<paper-icon-button id="addarray" class="array-add" icon="add" on-click="_onAddItem"></paper-icon-button>
<paper-tooltip for="addarray">add</paper-tooltip>
</div>
<paper-collapse-group id="form" class="vertical flex layout"></paper-collapse-group>
</template>
<script>
Polymer({
is: 'eco-json-schema-array',
properties: {
schema: {
type: Object,
observer: '_schemaChanged'
},
label: {
type: String
},
value: {
type: Array,
notify: true,
value: function() { return []; },
observer: '_valueChanged',
},
error: {
type: Object,
observer: '_errorChanged'
},
_schemaArrayItems: {
type: Array,
notify: true,
value: function() { return []; }
}
},
observers: [
'_schemaArraySplicesChanged(_schemaArrayItems.splices)'
],
/**
* Notice values have changed and rebuild the form
* to match (potentially).
*/
_valueChanged: function(newValue, oldValue) {
if (newValue !== oldValue && typeof newValue !== typeof undefined && typeof this.schema !== typeof undefined) {
setTimeout( () => {
this._buildSchemaArrayItems();
// wipe schema array and go from there
// this only fires when the element initially builds
for (var i in newValue) {
this._onAddItemWithValue(newValue[i], parseInt(i));
}
}, 100);
}
},
ready: function() {
},
detached: function() {
this._clearForm();
},
_buildSchemaArrayItems: function() {
this._schemaArrayItems = [];
},
_setValue: function() {
this.value = [];
this.value = this._schemaArrayItems.map(function(item) {
return item.value;
});
},
_schemaArraySplicesChanged: function(detail) {
if (!detail) {
return console.warn('detail is undefined');
}
var ctx = this;
if (detail.keySplices) {
console.warn('Got keySplices, don\'t know what to do with them!');
}
detail.indexSplices.forEach(function(splice) {
var args = ['value', splice.index, splice.removed.length];
if (splice.removed && splice.removed.length) {
for (var i = splice.index, ii = splice.index + splice.removed.length; i < ii; i++) {
ctx._removeArrayEl(ctx.$.form.children[i]);
}
}
if (splice.addedCount) {
for (var i = splice.index, ii = splice.index + splice.addedCount; i < ii; i++) {
var item = splice.object[i];
var componentEl = ctx.create(item.component.name, {
label: item.label,
schema: item.schema,
schemaArrayItem: item
});
var containerEl = ctx.create('paper-collapse-item', {header: 'Item ' + (i+1)});
var buttonEl = ctx.create('paper-icon-button', {icon: 'remove'});
var tipEl = ctx.create('paper-tooltip');
Polymer.dom(tipEl).appendChild(document.createTextNode('remove'));
ctx.listen(buttonEl, 'tap', '_onRemoveItem');
buttonEl.classList.add('array-remove-element');
componentEl.classList.add('flex', 'horizontal', 'layout');
Polymer.dom(containerEl).appendChild(componentEl);
Polymer.dom(containerEl).appendChild(buttonEl);
Polymer.dom(containerEl).appendChild(tipEl);
var beforeEl = ctx.$.form.children[i];
if (beforeEl) {
Polymer.dom(ctx.$.form).insertBefore(containerEl, beforeEl);
} else {
Polymer.dom(ctx.$.form).appendChild(containerEl);
}
ctx.listen(componentEl, item.component.valueProperty.replace(/([A-Z])/g, '-$1').toLowerCase() + '-changed', '_schemaArrayItemChanged');
args.push(ctx._deepClone(componentEl[item.component.valueProperty]));
}
}
ctx.splice.apply(ctx, args);
});
},
_schemaArrayItemChanged: function(event, detail) {
if (detail.path && /\.length$/.test(detail.path)) {
return;
}
var ctx = this;
var item = event.target.schemaArrayItem;
var index = this._schemaArrayItems.indexOf(item);
var path = ['value', index];
if (detail.path && /\.splices$/.test(detail.path)) {
path = path.concat(detail.path.split('.').slice(1, -1));
if (detail.value.keySplices) {
console.warn('Got keySplices, don\'t know what to do with them!');
}
detail.value.indexSplices.forEach(function (splice) {
var args = [path.join('.'), splice.index, splice.removed.length];
if (splice.addedCount) {
for (var i = splice.index, ii = splice.index + splice.addedCount; i < ii; i++) {
args.push(ctx._deepClone(splice.object[i]));
}
}
ctx.splice.apply(ctx, args);
});
} else if (detail.path) {
path = path.concat(detail.path.split('.').slice(1));
this.set(path, this._deepClone(detail.value));
} else {
this.splice('value', index, 1, this._deepClone(detail.value));
}
},
_removeArrayEl: function(el) {
var polyEl = Polymer.dom(el);
if (typeof polyEl.childNodes[0] !== typeof undefined) {
this.unlisten(polyEl.childNodes[0], polyEl.firstChild.schemaArrayItem.component.valueProperty.replace(/([A-Z])/g, '-$1').toLowerCase() + '-changed', '_schemaArrayItemChanged');
if (typeof polyEl.childNodes[1] !== typeof undefined) {
this.unlisten(polyEl.childNodes[1], 'tap', '_onRemoveItem');
}
}
el.schemaArrayItem = null;
Polymer.dom(this.$.form).removeChild(el);
},
_clearForm: function() {
var formEl = Polymer.dom(this.$.form);
while (formEl.firstChild) {
this._removeArrayEl(formEl.firstChild);
}
},
_schemaChanged: function() {
this._clearForm();
this._buildSchemaArrayItems();
this._setValue();
},
_errorChanged: function() {
var ctx = this;
Polymer.dom(this.$.form).childNodes.forEach(function(rowEl, idx) {
if (ctx.error && ctx.error[idx]) {
Polymer.dom(rowEl).childNodes[0].error = ctx.error[idx];
} else {
Polymer.dom(rowEl).childNodes[0].error = null;
}
});
},
_onAddItemWithValue: function(values, pointer) {
var schema = this.schema.items;
// try to set values if we have them
if (typeof values !== typeof undefined) {
for (var i in values) {
if (typeof schema.properties[i] !== typeof undefined) {
schema.properties[i].value = values[i];
}
}
}
var item = {
label: schema.title,
schema: schema,
component: schema.component || {}
};
if (!item.component.valueProperty) {
item.component.valueProperty = 'value';
}
if (!item.component.name) {
if (this._isSchemaEnum(schema)) {
item.component.name = 'eco-json-schema-enum';
} else if (this._isSchemaBoolean(schema.type)) {
item.component.name = 'eco-json-schema-boolean';
} else if (this._isSchemaFile(schema.type)) {
item.component.name = 'eco-json-schema-file';
} else if (this._isSchemaValue(schema.type)) {
item.component.name = 'eco-json-schema-input';
} else if (this._isSchemaObject(schema.type)) {
item.component.name = 'eco-json-schema-object';
} else if (this._isSchemaArray(schema.type)) {
item.component.name = 'eco-json-schema-array';
} else {
return console.error('Unknown item type %s', schema.type);
}
}
var ctx = this;
var componentEl = ctx.create(item.component.name, {
label: item.label,
schema: item.schema,
schemaArrayItem: item
});
var containerEl = ctx.create('paper-collapse-item', {header: 'Item ' + (pointer+1)});
var buttonEl = ctx.create('paper-icon-button', {icon: 'remove'});
var tipEl = ctx.create('paper-tooltip');
Polymer.dom(tipEl).appendChild(document.createTextNode('remove'));
ctx.listen(buttonEl, 'tap', '_onRemoveItem');
buttonEl.classList.add('array-remove-element');
componentEl.classList.add('flex', 'horizontal', 'layout');
Polymer.dom(containerEl).appendChild(componentEl);
Polymer.dom(containerEl).appendChild(buttonEl);
Polymer.dom(containerEl).appendChild(tipEl);
var beforeEl = ctx.$.form.children[i];
if (beforeEl) {
Polymer.dom(ctx.$.form).insertBefore(containerEl, beforeEl);
} else {
Polymer.dom(ctx.$.form).appendChild(containerEl);
}
ctx.listen(componentEl, item.component.valueProperty.replace(/([A-Z])/g, '-$1').toLowerCase() + '-changed', '_schemaArrayItemChanged');
// this will add it to the array but not force a splice mutation
this._schemaArrayItems.push(item);
},
_onAddItem: function() {
var schema = this.schema.items;
var item = {
label: schema.title,
schema: schema,
component: schema.component || {}
};
if (!item.component.valueProperty) {
item.component.valueProperty = 'value';
}
if (!item.component.name) {
if (this._isSchemaEnum(schema)) {
item.component.name = 'eco-json-schema-enum';
} else if (this._isSchemaBoolean(schema.type)) {
item.component.name = 'eco-json-schema-boolean';
} else if (this._isSchemaFile(schema.type)) {
item.component.name = 'eco-json-schema-file';
} else if (this._isSchemaValue(schema.type)) {
item.component.name = 'eco-json-schema-input';
} else if (this._isSchemaObject(schema.type)) {
item.component.name = 'eco-json-schema-object';
} else if (this._isSchemaArray(schema.type)) {
item.component.name = 'eco-json-schema-array';
} else {
return console.error('Unknown item type %s', schema.type);
}
}
this.push('_schemaArrayItems', item);
},
_onRemoveItem: function(e) {
var item = Polymer.dom(e).localTarget.previousSibling.schemaArrayItem;
var index = this._schemaArrayItems.indexOf(item);
this.splice('_schemaArrayItems', index, 1);
},
_deepClone: function (o) {
return JSON.parse(JSON.stringify(o));
},
_isSchemaValue: function (type) {
return this._isSchemaBoolean(type) || this._isSchemaNumber(type) || this._isSchemaString(type) || this._isSchemaFile(type);
},
_isSchemaFile: function(type) {
if (Array.isArray(type)) {
return type.indexOf('file') !== -1;
} else {
return type === 'file';
}
},
_isSchemaBoolean: function (type) {
if (Array.isArray(type)) {
return type.indexOf('boolean') !== -1;
} else {
return type === 'boolean';
}
},
_isSchemaEnum: function (schema) {
return !!schema.enum;
},
_isSchemaNumber: function (type) {
if (Array.isArray(type)) {
return type.indexOf('number') !== -1 || type.indexOf('integer') !== -1;
} else {
return type === 'number' || type === 'integer';
}
},
_isSchemaString: function (type) {
if (Array.isArray(type)) {
return type.indexOf('string') !== -1;
} else {
return type === 'string';
}
},
_isSchemaObject: function (type) {
return type === 'object';
},
_isSchemaArray: function (type) {
return type === 'array';
}
});
</script>
</dom-module>