-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathform_selectors.js.html
610 lines (545 loc) · 22.2 KB
/
form_selectors.js.html
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: form/selectors.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: form/selectors.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* Dropdown buttons organized in toolbars, acting as selectors for the
* alternative materializations of a JSON Schema (thus following the tree
* representation of schemas, {@link module:inPlaceApplicators~IPASchema}).
*
* ❗️ This module relies on [Bootstrap](https://getbootstrap.com/); if not
* available, the HTML result will not be properly displayed.
*
* @module selectors
*
* @see module:inPlaceApplicators~IPASchema
*/
import pointerToId from '../utils/pointerToId.js';
/**
* Class representing a container for {@link module:selectors~SelectorsToolbar}
* components.
*
* @implements {module:components~Component}
*/
class SelectorsContainer {
/**
* Class constructor.
*
* @param {Map.<string, module:selectors~SelectorsToolbar>} toolbarByPointer
* A map containing the selectors toolbars, indexed by the JSON Pointer string
* that points to the in-place applicator represented by the first selector of
* the mapped toolbar.
*/
constructor(toolbarByPointer) {
this.domElement = document.createElement('div');
this.domElement.classList.add('btn-toolbar');
this.domElement.setAttribute('role', 'toolbar');
/**
* The map containing the selectors toolbars indexed by the JSON Pointer
* string that points to the in-place applicator represented by the first
* selector of the mapped toolbar.
*
* @type {Map.<string, module:selectors~SelectorsToolbar>}
*/
this.toolbarByPointer = toolbarByPointer;
for (const [, toolbar] of this.toolbarByPointer)
this.domElement.appendChild(toolbar.domElement);
}
disable() {
for (const [, toolbar] of this.toolbarByPointer) toolbar.disable();
}
enable() {
for (const [, toolbar] of this.toolbarByPointer) toolbar.enable();
}
/**
* Updates selectors toolbars present in the container and the underlying
* {@link module:inPlaceApplicators~IPASchema} tree.
*
* @param {string} formElementId The `id` of the form element.
* @param {string} pointer The JSON Pointer to the in-place applicator
* represented by the first selector of the toolbar which triggered the
* update.
* @param {number} selectorIndex The index in the toolbar of the selector
* triggering the update.
* @param {number} dropdownItemIndex The index in the dropdown option list
* which triggered the update.
* @param {Function} callback The callback function to be called on `click`
* events from the newly appended selectors.
*/
update(formElementId, pointer, selectorIndex, dropdownItemIndex, callback) {
// Updates selection of in-place applicator.
this.toolbarByPointer
.get(pointer)
.selectors[selectorIndex].updateSelection(dropdownItemIndex);
// Generates the new selectors to attach.
const ipaSchema = this.toolbarByPointer
.get(pointer)
.selectors[selectorIndex].applicator.getSelectedIpaSchema();
const [selectorsToAppend, newSelectorsMatrix] = generateUpdatedSelectors(
formElementId,
ipaSchema,
pointer,
selectorIndex,
callback
);
// Updates the changed toolbar.
this.toolbarByPointer
.get(pointer)
.update(selectorIndex, dropdownItemIndex, selectorsToAppend);
// Removes the obsolete toolbars.
for (const [p] of this.toolbarByPointer) {
if (p.startsWith(pointer) && p !== pointer) {
this.toolbarByPointer.get(p).remove();
this.toolbarByPointer.delete(p);
}
}
// Adds the new toolbars.
for (const [p, selectors] of newSelectorsMatrix) {
this.toolbarByPointer.set(p, new SelectorsToolbar(selectors));
this.domElement.appendChild(this.toolbarByPointer.get(p).domElement);
}
}
}
/**
* Class representing a toolbar of {@link module:selectors~Selector} components.
*
* @implements {module:components~Component}
*/
class SelectorsToolbar {
/**
* Class constructor.
*
* @param {Array.<module:selectors~Selector>} selectors An array of selector
* components contained in the toolbar.
*/
constructor(selectors) {
this.domElement = document.createElement('div');
this.domElement.classList.add('btn-group', 'mr-2');
this.domElement.setAttribute('role', 'group');
this.domElement.setAttribute('aria-label', 'Selectors toolbar');
/**
* The array of selector components contained in the toolbar.
*
* @type {Array.<module:selectors~Selector>}
*/
this.selectors = selectors;
for (const selector of this.selectors)
this.domElement.appendChild(selector.domElement);
}
disable() {
for (const selector of this.selectors) selector.disable();
}
enable() {
for (const selector of this.selectors) selector.enable();
}
/**
* Updates the toolbar by removing the obsolete selectors and appending the
* ones provided.
*
* @param {number} selectorIndex The index in the toolbar of the selector
* triggering the update.
* @param {number} dropdownItemIndex The index in the dropdown option list
* which triggered the update.
* @param {Array.<module:selectors~Selector>} selectorsToAppend The array of
* selectors that should be appended to the toolbar.
*/
update(selectorIndex, dropdownItemIndex, selectorsToAppend) {
// Updates selector content.
this.selectors[selectorIndex].update(dropdownItemIndex);
// Removes the obsolete selectors and appends the new ones.
const deleteCount = this.selectors.length - 1 - selectorIndex;
Array.from(
{
length: deleteCount,
},
(_, index) => this.selectors[selectorIndex + 1 + index].remove()
);
this.selectors.splice(selectorIndex + 1, deleteCount, ...selectorsToAppend);
for (const selector of selectorsToAppend)
this.domElement.appendChild(selector.domElement);
}
/** Removes the DOM elements associated to the toolbar. */
remove() {
this.domElement.remove();
}
}
/**
* Class representing a selector component, which represents an
* {@link module:inPlaceApplicators~InPlaceApplicator} in the
* {@link module:inPlaceApplicators~IPASchema} tree.
*
* The selector consists of a dropdown button with a list of choices each
* representing a subschema in the associated in-place applicator.
*
* @implements {module:components~Component}
*/
class Selector {
/**
* Class constructor.
*
* @param {module:inPlaceApplicators~InPlaceApplicator} applicator The
* in-place applicator to be represented.
* @param {string} formElementId The `id` of the form element.
* @param {string} pointer The JSON Pointer to the in-place applicator
* represented by the first selector of the toolbar containing the newly
* created selector.
* @param {number} selectorIndex The index in the toolbar of the newly created
* selector.
* @param {Function} callback The callback function for the `click` DOM event
* generated by any of the choices listed in the dropdown.
* @param {boolean} [disabled=false] Flag indicating whether the button should
* be disabled at initialization.
*/
constructor(
applicator,
formElementId,
pointer,
selectorIndex,
callback,
disabled = false
) {
/**
* The represented in-place applicator.
*
* @type {module:inPlaceApplicators~InPlaceApplicator}
*/
this.applicator = applicator;
this.domElement = document.createElement('div');
this.domElement.classList.add('btn-group');
this.domElement.setAttribute('role', 'group');
/**
* The array of selector components contained in the toolbar.
*
* @type {Array.<module:selectors~Selector>}
*/
this.button = this.domElement.appendChild(document.createElement('button'));
this.button.id = `${formElementId}__selectors__${pointerToId(
pointer + '/' + selectorIndex
)}`;
this.button.type = 'button';
this.button.classList.add(
'btn',
'btn-primary',
'btn-sm',
'dropdown-toggle'
);
this.button.dataset.toggle = 'dropdown';
this.button.setAttribute('aria-haspopup', true);
this.button.setAttribute('aria-expanded', false);
this.button.disabled = !!disabled;
const dropdownDiv = this.domElement.appendChild(
document.createElement('div')
);
dropdownDiv.classList.add('dropdown-menu');
dropdownDiv.setAttribute('aria-labelledby', this.button.id);
for (const [
dropdownItemIndex,
ipaSchema,
] of this.applicator.subschemas.entries()) {
const a = dropdownDiv.appendChild(document.createElement('a'));
a.classList.add('dropdown-item');
a.href = '#';
a.innerText = ipaSchema.getAnnotations().title;
a.addEventListener(
'click',
() =>
void callback(
formElementId,
pointer,
selectorIndex,
dropdownItemIndex
)
);
if (window.$)
window
.$(a)
.click((e) =>
e.preventDefault ? e.preventDefault() : (e.returnValue = false)
);
}
this.update();
}
disable() {
this.button.disabled = true;
}
enable() {
this.button.disabled = false;
}
/** Removes the DOM elements associated to the selector. */
remove() {
this.domElement.remove();
}
/**
* Updates the underlying {@link module:inPlaceApplicators~InPlaceApplicator}
* and the selector display.
*
* @param {number} selected Index of the selected in-place applicator
* subschema.
*/
updateSelection(selected) {
this.applicator.selected = selected;
this.update();
}
/** Updates the selector display. */
update() {
this.button.innerText = this.applicator
.getSelectedIpaSchema()
.getAnnotations().title;
}
}
/**
* Creates a {@link module:selectors~SelectorsContainer} which handles the
* selectors representing the given {@link module:inPlaceApplicators~IPASchema}
* tree.
*
* @param {string} formElementId The `id` of the form element.
* @param {module:inPlaceApplicators~IPASchema} ipaSchema The root element of
* the {@link module:inPlaceApplicators~IPASchema} tree that the selectors
* should represent.
* @param {Function} callback The callback function to be called on `click`
* events from the created selectors.
* @param {boolean} [disabled=false] Flag indicating whether the button should
* be disabled at initialization.
*
* @returns {module:selectors~SelectorsContainer} The created
* {@link module:selectors~SelectorsContainer}.
*/
function createSelectors(formElementId, ipaSchema, callback, disabled = false) {
const selectorsMatrix = generateSelectors(
formElementId,
ipaSchema,
callback,
disabled
);
return new SelectorsContainer(
new Map(
selectorsMatrix.map(([pointer, selectors]) => [
pointer,
new SelectorsToolbar(selectors),
])
)
);
}
/**
* Generates a matrix containing the selectors representing the given
* {@link module:inPlaceApplicators~IPASchema} tree.
*
* @param {string} formElementId The `id` of the form element.
* @param {module:inPlaceApplicators~IPASchema} ipaSchema The root element of
* the {@link module:inPlaceApplicators~IPASchema} tree that the selectors
* should represent.
* @param {Function} callback The callback function to be called on `click`
* events from the created selectors.
* @param {boolean} disabled Flag indicating whether the selectors should be
* disabled at initialization.
*
* @returns {Array.<Array>} A matrix whose rows are 2-length arrays, each of
* them representing a selectors toolbar:
*
* - The first element is a JSON Pointer string that points to the in-place
* applicator represented by the first selector of the mapped toolbar.
*
* - The second element is an array of {@link module:selectors~Selector} to be
* assembled as a {@link module:selectors~SelectorsToolbar}.
*/
function generateSelectors(formElementId, ipaSchema, callback, disabled) {
return forkRecursiveSelectorGenerator(
formElementId,
ipaSchema,
callback,
disabled
);
}
/**
* Generates the update data which includes the new selectors to be added to a
* {@link module:selector~SelectorContainer}, with respect to the given
* {@link module:inPlaceApplicators~IPASchema} tree.
*
* @param {string} formElementId The `id` of the form element.
* @param {module:inPlaceApplicators~IPASchema} ipaSchema The root element of
* the {@link module:inPlaceApplicators~IPASchema} tree that the selectors
* should represent.
* @param {string} updatedToolbarPointer The JSON Pointer to the in-place
* applicator represented by the first selector of the toolbar which triggered
* the update.
* @param {number} triggererSelectorIndex The index in the toolbar of the
* selector which triggered the update.
* @param {Function} callback The callback function to be called on `click`
* events from the created selectors.
* @param {boolean} [disabled=false] Flag indicating whether the button should
* be disabled at initialization.
*
* @returns {Array.<Array>} A 2-length array with the following structure:
*
* - The first element is an array of {@link module:selectors~Selector}
* components to append to the toolbar which triggered the update.
*
* - The second element is a matrix whose rows are 2-length arrays, each of them
* representing a selectors toolbar to be appended as result of the update:
*
* - The first element is a JSON Pointer string that points to the in-place
* applicator represented by the first selector of the mapped toolbar.
*
* - The second element is an array of {@link module:selectors~Selector} to be
* assembled as a {@link module:selectors~SelectorsToolbar}.
*/
function generateUpdatedSelectors(
formElementId,
ipaSchema,
updatedToolbarPointer,
triggererSelectorIndex,
callback,
disabled = false
) {
if (ipaSchema.applicatorByPointer.size === 1) {
const nextApplicator = ipaSchema.applicatorByPointer.values().next().value;
const result = recursiveSelectorGenerator(
formElementId,
nextApplicator,
updatedToolbarPointer,
callback,
disabled,
triggererSelectorIndex + 1
);
const selectorsToAppend = result.shift();
return [selectorsToAppend[1], result];
} else
return [
[],
forkRecursiveSelectorGenerator(
formElementId,
ipaSchema,
callback,
disabled
),
];
}
/**
* Forks the execution of {@link module:selectors~recursiveSelectorGenerator} to
* produce multiple selectors toolbars.
*
* @param {string} formElementId The `id` of the form element.
* @param {module:inPlaceApplicators~IPASchema} ipaSchema The node of the
* {@link module:inPlaceApplicators~IPASchema} tree to be represented.
* @param {Function} callback The callback function to be called on `click`
* events from the created selectors.
* @param {boolean} disabled Flag indicating whether the selectors should be
* disabled at initialization.
*
* @returns {Array.<Array>} A matrix whose rows are 2-length arrays, each of
* them representing a selectors toolbar to be appended as result of the update:
*
* - The first element is a JSON Pointer string that points to the in-place
* applicator represented by the first selector of the mapped toolbar.
*
* - The second element is an array of {@link module:selectors~Selector} to be
* assembled as a {@link module:selectors~SelectorsToolbar}.
*/
function forkRecursiveSelectorGenerator(
formElementId,
ipaSchema,
callback,
disabled
) {
return Array.from(ipaSchema.applicatorByPointer).flatMap(([p, a]) =>
recursiveSelectorGenerator(formElementId, a, p, callback, disabled)
);
}
/**
* Recursive execution of the selector generation.
*
* @param {string} formElementId The `id` of the form element.
* @param {module:inPlaceApplicators~InPlaceApplicator} applicator The in-place
* applicator to be represented by the selector being currently built.
* @param {string} matrixKeyPointer A JSON Pointer string that points to the
* in-place applicator represented by the first selector of the toolbar being
* built.
* @param {Function} callback The callback function to be called on `click`
* events from the created selectors.
* @param {boolean} disabled Flag indicating whether the selectors should be
* disabled at initialization.
* @param {number} [currentSelectorIndex=0] The index in the toolbar of the
* selector being currently built.
*
* @returns {Array.<Array>} A matrix whose rows are 2-length arrays, each of
* them representing a selectors toolbar to be appended as result of the update:
*
* - The first element is a JSON Pointer string that points to the in-place
* applicator represented by the first selector of the mapped toolbar.
*
* - The second element is an array of {@link module:selectors~Selector} to be
* assembled as a {@link module:selectors~SelectorsToolbar}.
*/
function recursiveSelectorGenerator(
formElementId,
applicator,
matrixKeyPointer,
callback,
disabled,
currentSelectorIndex = 0
) {
const selector = new Selector(
applicator,
formElementId,
matrixKeyPointer,
currentSelectorIndex,
callback,
disabled
);
const selectedIpaSchema = applicator.getSelectedIpaSchema();
if (selectedIpaSchema.applicatorByPointer.size == 0)
return [[matrixKeyPointer, [selector]]];
else if (selectedIpaSchema.applicatorByPointer.size == 1) {
const nextApplicator = selectedIpaSchema.applicatorByPointer.values().next()
.value;
const result = recursiveSelectorGenerator(
formElementId,
nextApplicator,
matrixKeyPointer,
callback,
disabled,
currentSelectorIndex + 1
);
result[0][1] = [selector, ...result[0][1]];
return result;
} else {
// (selectedIpaSchema.applicatorByPointer.size > 1)
const results = forkRecursiveSelectorGenerator(
formElementId,
selectedIpaSchema,
callback,
disabled
);
return [[matrixKeyPointer, [selector]], ...results];
}
}
export default createSelectors;
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-childApplicators.html">childApplicators</a></li><li><a href="module-components.html">components</a></li><li><a href="module-formElement.html">formElement</a></li><li><a href="module-formElementDefinitions.html">formElementDefinitions</a></li><li><a href="module-inPlaceApplicators.html">inPlaceApplicators</a></li><li><a href="module-JsonSchemaForms.html">JsonSchemaForms</a></li><li><a href="module-JsonSchemaKeywords.html">JsonSchemaKeywords</a></li><li><a href="module-JsonSchemaType.html">JsonSchemaType</a></li><li><a href="module-layouts.html">layouts</a></li><li><a href="module-selectors.html">selectors</a></li></ul><h3>Classes</h3><ul><li><a href="module-childApplicators-AdditionalItems.html">AdditionalItems</a></li><li><a href="module-childApplicators-AdditionalProperties.html">AdditionalProperties</a></li><li><a href="module-childApplicators-ArrayHandler.html">ArrayHandler</a></li><li><a href="module-childApplicators-ChildrenHandler.html">ChildrenHandler</a></li><li><a href="module-childApplicators-Items.html">Items</a></li><li><a href="module-childApplicators-ObjectHandler.html">ObjectHandler</a></li><li><a href="module-childApplicators-Properties.html">Properties</a></li><li><a href="module-components-AddButton.html">AddButton</a></li><li><a href="module-components-BooleanInput.html">BooleanInput</a></li><li><a href="module-components-GeneratorIcon.html">GeneratorIcon</a></li><li><a href="module-components-InputTitle.html">InputTitle</a></li><li><a href="module-components-InstanceViewPanel.html">InstanceViewPanel</a></li><li><a href="module-components-LabelTitle.html">LabelTitle</a></li><li><a href="module-components-NumericInput.html">NumericInput</a></li><li><a href="module-components-PillsInstancePanel.html">PillsInstancePanel</a></li><li><a href="module-components-RemoveButton.html">RemoveButton</a></li><li><a href="module-components-RequiredIcon.html">RequiredIcon</a></li><li><a href="module-components-RootIcon.html">RootIcon</a></li><li><a href="module-components-Select.html">Select</a></li><li><a href="module-components-SelectInstancePanel.html">SelectInstancePanel</a></li><li><a href="module-components-TextInput.html">TextInput</a></li><li><a href="module-components-Toggler.html">Toggler</a></li><li><a href="module-formElementDefinitions-State.html">State</a></li><li><a href="module-formElement-FormElement.html">FormElement</a></li><li><a href="module-inPlaceApplicators-Aggregation.html">Aggregation</a></li><li><a href="module-inPlaceApplicators-InPlaceApplicator.html">InPlaceApplicator</a></li><li><a href="module-inPlaceApplicators-IPASchema.html">IPASchema</a></li><li><a href="module-layouts-Layout.html">Layout</a></li><li><a href="module-selectors-Selector.html">Selector</a></li><li><a href="module-selectors-SelectorsContainer.html">SelectorsContainer</a></li><li><a href="module-selectors-SelectorsToolbar.html">SelectorsToolbar</a></li></ul><h3>Interfaces</h3><ul><li><a href="module-childApplicators-ChildApplicator.html">ChildApplicator</a></li><li><a href="module-components-Component.html">Component</a></li><li><a href="module-components-InputComponent.html">InputComponent</a></li></ul><h3>Global</h3><ul><li><a href="global.html#defaultFormOptions">defaultFormOptions</a></li><li><a href="global.html#formElementByDiv">formElementByDiv</a></li><li><a href="global.html#lcm">lcm</a></li><li><a href="global.html#pointerToId">pointerToId</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a>
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>