@schukai/monster 4.38.7 → 4.38.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,24 +17,24 @@ import { diff } from "../data/diff.mjs";
17
17
  import { Pathfinder } from "../data/pathfinder.mjs";
18
18
  import { Pipe } from "../data/pipe.mjs";
19
19
  import {
20
- ATTRIBUTE_ERRORMESSAGE,
21
- ATTRIBUTE_UPDATER_ATTRIBUTES,
22
- ATTRIBUTE_UPDATER_BIND,
23
- ATTRIBUTE_UPDATER_BIND_TYPE,
24
- ATTRIBUTE_UPDATER_INSERT,
25
- ATTRIBUTE_UPDATER_INSERT_REFERENCE,
26
- ATTRIBUTE_UPDATER_REMOVE,
27
- ATTRIBUTE_UPDATER_REPLACE,
28
- ATTRIBUTE_UPDATER_SELECT_THIS,
20
+ ATTRIBUTE_ERRORMESSAGE,
21
+ ATTRIBUTE_UPDATER_ATTRIBUTES,
22
+ ATTRIBUTE_UPDATER_BIND,
23
+ ATTRIBUTE_UPDATER_BIND_TYPE,
24
+ ATTRIBUTE_UPDATER_INSERT,
25
+ ATTRIBUTE_UPDATER_INSERT_REFERENCE,
26
+ ATTRIBUTE_UPDATER_REMOVE,
27
+ ATTRIBUTE_UPDATER_REPLACE,
28
+ ATTRIBUTE_UPDATER_SELECT_THIS,
29
29
  } from "./constants.mjs";
30
30
 
31
31
  import { Base } from "../types/base.mjs";
32
32
  import {
33
- isArray,
34
- isInteger,
35
- isString,
36
- isInstance,
37
- isIterable,
33
+ isArray,
34
+ isInteger,
35
+ isString,
36
+ isInstance,
37
+ isIterable,
38
38
  } from "../types/is.mjs";
39
39
  import { Observer } from "../types/observer.mjs";
40
40
  import { ProxyObserver } from "../types/proxyobserver.mjs";
@@ -43,8 +43,8 @@ import { clone } from "../util/clone.mjs";
43
43
  import { trimSpaces } from "../util/trimspaces.mjs";
44
44
  import { addAttributeToken, addToObjectLink } from "./attributes.mjs";
45
45
  import {
46
- CustomElement,
47
- updaterTransformerMethodsSymbol,
46
+ CustomElement,
47
+ updaterTransformerMethodsSymbol,
48
48
  } from "./customelement.mjs";
49
49
  import { findTargetElementFromEvent } from "./events.mjs";
50
50
  import { findDocumentTemplate } from "./template.mjs";
@@ -97,204 +97,204 @@ const processingSymbol = Symbol("processing");
97
97
  * @summary The updater class connects an object with the dom
98
98
  */
99
99
  class Updater extends Base {
100
- /**
101
- * @since 1.8.0
102
- * @param {HTMLElement} element
103
- * @param {object|ProxyObserver|undefined} subject
104
- * @throws {TypeError} value is not a object
105
- * @throws {TypeError} value is not an instance of HTMLElement
106
- * @see {@link findDocumentTemplate}
107
- */
108
- constructor(element, subject) {
109
- super();
110
-
111
- /**
112
- * @type {HTMLElement}
113
- */
114
- if (subject === undefined) subject = {};
115
- if (!isInstance(subject, ProxyObserver)) {
116
- subject = new ProxyObserver(subject);
117
- }
118
-
119
- this[internalSymbol] = {
120
- element: validateInstance(element, HTMLElement),
121
- last: {},
122
- callbacks: new Map(),
123
- eventTypes: ["keyup", "click", "change", "drop", "touchend", "input"],
124
- subject: subject,
125
- };
126
-
127
- this[internalSymbol].callbacks.set(
128
- "checkstate",
129
- getCheckStateCallback.call(this),
130
- );
131
-
132
- this[pendingDiffsSymbol] = [];
133
- this[processingSymbol] = false;
134
-
135
- this[internalSymbol].subject.attachObserver(
136
- new Observer(() => {
137
- const real = this[internalSymbol].subject.getRealSubject();
138
- const diffResult = diff(this[internalSymbol].last, real);
139
- this[internalSymbol].last = clone(real);
140
- this[pendingDiffsSymbol].push(diffResult);
141
- return this.#processQueue();
142
- }),
143
- );
144
- }
145
-
146
- /**
147
- * @private
148
- * @return {Promise}
149
- */
150
- async #processQueue() {
151
- if (this[processingSymbol]) {
152
- return Promise.resolve();
153
- }
154
- this[processingSymbol] = true;
155
-
156
- try {
157
- while (this[pendingDiffsSymbol].length) {
158
- const diffResult = this[pendingDiffsSymbol].shift();
159
- for (const change of Object.values(diffResult)) {
160
- await this.#applyChange(change);
161
- }
162
- }
163
- } catch (err) {
164
- addErrorAttribute(this[internalSymbol]?.element, err);
165
- } finally {
166
- this[processingSymbol] = false;
167
- }
168
- }
169
-
170
- /** @private **/
171
- async #applyChange(change) {
172
- removeElement.call(this, change);
173
- insertElement.call(this, change);
174
- updateContent.call(this, change);
175
- await Promise.resolve();
176
- updateAttributes.call(this, change);
177
- }
178
-
179
- /**
180
- * Defaults: 'keyup', 'click', 'change', 'drop', 'touchend'
181
- *
182
- * @see {@link https://developer.mozilla.org/de/docs/Web/Events}
183
- * @since 1.9.0
184
- * @param {Array} types
185
- * @return {Updater}
186
- */
187
- setEventTypes(types) {
188
- this[internalSymbol].eventTypes = validateArray(types);
189
- return this;
190
- }
191
-
192
- /**
193
- * With this method, the eventlisteners are hooked in and the magic begins.
194
- *
195
- * ```js
196
- * updater.run().then(() => {
197
- * updater.enableEventProcessing();
198
- * });
199
- * ```
200
- *
201
- * @since 1.9.0
202
- * @return {Updater}
203
- * @throws {Error} the bind argument must start as a value with a path
204
- */
205
- enableEventProcessing() {
206
- this.disableEventProcessing();
207
-
208
- for (const type of this[internalSymbol].eventTypes) {
209
- // @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
210
- this[internalSymbol].element.addEventListener(
211
- type,
212
- getControlEventHandler.call(this),
213
- {
214
- capture: true,
215
- passive: true,
216
- },
217
- );
218
- }
219
-
220
- return this;
221
- }
222
-
223
- /**
224
- * This method turns off the magic or who loves it more profane it removes the eventListener.
225
- *
226
- * @since 1.9.0
227
- * @return {Updater}
228
- */
229
- disableEventProcessing() {
230
- for (const type of this[internalSymbol].eventTypes) {
231
- this[internalSymbol].element.removeEventListener(
232
- type,
233
- getControlEventHandler.call(this),
234
- );
235
- }
236
-
237
- return this;
238
- }
239
-
240
- /**
241
- * The run method must be called for the update to start working.
242
- * The method ensures that changes are detected.
243
- *
244
- * ```js
245
- * updater.run().then(() => {
246
- * updater.enableEventProcessing();
247
- * });
248
- * ```
249
- *
250
- * @summary Let the magic begin
251
- * @return {Promise}
252
- */
253
- run() {
254
- // the key __init__has no further meaning and is only
255
- // used to create the diff for empty objects.
256
- this[internalSymbol].last = { __init__: true };
257
- return this[internalSymbol].subject.notifyObservers();
258
- }
259
-
260
- /**
261
- * Gets the values of bound elements and changes them in subject
262
- *
263
- * @since 1.27.0
264
- * @return {Monster.DOM.Updater}
265
- */
266
- retrieve() {
267
- retrieveFromBindings.call(this);
268
- return this;
269
- }
270
-
271
- /**
272
- * If you have passed a ProxyObserver in the constructor, you will get the object that the ProxyObserver manages here.
273
- * However, if you passed a simple object, here you will get a proxy for that object.
274
- *
275
- * For changes, the ProxyObserver must be used.
276
- *
277
- * @since 1.8.0
278
- * @return {Proxy}
279
- */
280
- getSubject() {
281
- return this[internalSymbol].subject.getSubject();
282
- }
283
-
284
- /**
285
- * This method can be used to register commands that can be called via call: instruction.
286
- * This can be used to provide a pipe with its own functionality.
287
- *
288
- * @param {string} name
289
- * @param {function} callback
290
- * @return {Transformer}
291
- * @throws {TypeError} value is not a string
292
- * @throws {TypeError} value is not a function
293
- */
294
- setCallback(name, callback) {
295
- this[internalSymbol].callbacks.set(name, callback);
296
- return this;
297
- }
100
+ /**
101
+ * @since 1.8.0
102
+ * @param {HTMLElement} element
103
+ * @param {object|ProxyObserver|undefined} subject
104
+ * @throws {TypeError} value is not a object
105
+ * @throws {TypeError} value is not an instance of HTMLElement
106
+ * @see {@link findDocumentTemplate}
107
+ */
108
+ constructor(element, subject) {
109
+ super();
110
+
111
+ /**
112
+ * @type {HTMLElement}
113
+ */
114
+ if (subject === undefined) subject = {};
115
+ if (!isInstance(subject, ProxyObserver)) {
116
+ subject = new ProxyObserver(subject);
117
+ }
118
+
119
+ this[internalSymbol] = {
120
+ element: validateInstance(element, HTMLElement),
121
+ last: {},
122
+ callbacks: new Map(),
123
+ eventTypes: ["keyup", "click", "change", "drop", "touchend", "input"],
124
+ subject: subject,
125
+ };
126
+
127
+ this[internalSymbol].callbacks.set(
128
+ "checkstate",
129
+ getCheckStateCallback.call(this),
130
+ );
131
+
132
+ this[pendingDiffsSymbol] = [];
133
+ this[processingSymbol] = false;
134
+
135
+ this[internalSymbol].subject.attachObserver(
136
+ new Observer(() => {
137
+ const real = this[internalSymbol].subject.getRealSubject();
138
+ const diffResult = diff(this[internalSymbol].last, real);
139
+ this[internalSymbol].last = clone(real);
140
+ this[pendingDiffsSymbol].push(diffResult);
141
+ return this.#processQueue();
142
+ }),
143
+ );
144
+ }
145
+
146
+ /**
147
+ * @private
148
+ * @return {Promise}
149
+ */
150
+ async #processQueue() {
151
+ if (this[processingSymbol]) {
152
+ return Promise.resolve();
153
+ }
154
+ this[processingSymbol] = true;
155
+
156
+ try {
157
+ while (this[pendingDiffsSymbol].length) {
158
+ const diffResult = this[pendingDiffsSymbol].shift();
159
+ for (const change of Object.values(diffResult)) {
160
+ await this.#applyChange(change);
161
+ }
162
+ }
163
+ } catch (err) {
164
+ addErrorAttribute(this[internalSymbol]?.element, err);
165
+ } finally {
166
+ this[processingSymbol] = false;
167
+ }
168
+ }
169
+
170
+ /** @private **/
171
+ async #applyChange(change) {
172
+ removeElement.call(this, change);
173
+ insertElement.call(this, change);
174
+ updateContent.call(this, change);
175
+ await Promise.resolve();
176
+ updateAttributes.call(this, change);
177
+ }
178
+
179
+ /**
180
+ * Defaults: 'keyup', 'click', 'change', 'drop', 'touchend'
181
+ *
182
+ * @see {@link https://developer.mozilla.org/de/docs/Web/Events}
183
+ * @since 1.9.0
184
+ * @param {Array} types
185
+ * @return {Updater}
186
+ */
187
+ setEventTypes(types) {
188
+ this[internalSymbol].eventTypes = validateArray(types);
189
+ return this;
190
+ }
191
+
192
+ /**
193
+ * With this method, the eventlisteners are hooked in and the magic begins.
194
+ *
195
+ * ```js
196
+ * updater.run().then(() => {
197
+ * updater.enableEventProcessing();
198
+ * });
199
+ * ```
200
+ *
201
+ * @since 1.9.0
202
+ * @return {Updater}
203
+ * @throws {Error} the bind argument must start as a value with a path
204
+ */
205
+ enableEventProcessing() {
206
+ this.disableEventProcessing();
207
+
208
+ for (const type of this[internalSymbol].eventTypes) {
209
+ // @see https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener
210
+ this[internalSymbol].element.addEventListener(
211
+ type,
212
+ getControlEventHandler.call(this),
213
+ {
214
+ capture: true,
215
+ passive: true,
216
+ },
217
+ );
218
+ }
219
+
220
+ return this;
221
+ }
222
+
223
+ /**
224
+ * This method turns off the magic or who loves it more profane it removes the eventListener.
225
+ *
226
+ * @since 1.9.0
227
+ * @return {Updater}
228
+ */
229
+ disableEventProcessing() {
230
+ for (const type of this[internalSymbol].eventTypes) {
231
+ this[internalSymbol].element.removeEventListener(
232
+ type,
233
+ getControlEventHandler.call(this),
234
+ );
235
+ }
236
+
237
+ return this;
238
+ }
239
+
240
+ /**
241
+ * The run method must be called for the update to start working.
242
+ * The method ensures that changes are detected.
243
+ *
244
+ * ```js
245
+ * updater.run().then(() => {
246
+ * updater.enableEventProcessing();
247
+ * });
248
+ * ```
249
+ *
250
+ * @summary Let the magic begin
251
+ * @return {Promise}
252
+ */
253
+ run() {
254
+ // the key __init__has no further meaning and is only
255
+ // used to create the diff for empty objects.
256
+ this[internalSymbol].last = { __init__: true };
257
+ return this[internalSymbol].subject.notifyObservers();
258
+ }
259
+
260
+ /**
261
+ * Gets the values of bound elements and changes them in subject
262
+ *
263
+ * @since 1.27.0
264
+ * @return {Monster.DOM.Updater}
265
+ */
266
+ retrieve() {
267
+ retrieveFromBindings.call(this);
268
+ return this;
269
+ }
270
+
271
+ /**
272
+ * If you have passed a ProxyObserver in the constructor, you will get the object that the ProxyObserver manages here.
273
+ * However, if you passed a simple object, here you will get a proxy for that object.
274
+ *
275
+ * For changes, the ProxyObserver must be used.
276
+ *
277
+ * @since 1.8.0
278
+ * @return {Proxy}
279
+ */
280
+ getSubject() {
281
+ return this[internalSymbol].subject.getSubject();
282
+ }
283
+
284
+ /**
285
+ * This method can be used to register commands that can be called via call: instruction.
286
+ * This can be used to provide a pipe with its own functionality.
287
+ *
288
+ * @param {string} name
289
+ * @param {function} callback
290
+ * @return {Transformer}
291
+ * @throws {TypeError} value is not a string
292
+ * @throws {TypeError} value is not a function
293
+ */
294
+ setCallback(name, callback) {
295
+ this[internalSymbol].callbacks.set(name, callback);
296
+ return this;
297
+ }
298
298
  }
299
299
 
300
300
  /**
@@ -305,20 +305,20 @@ class Updater extends Base {
305
305
  * @this Updater
306
306
  */
307
307
  function getCheckStateCallback() {
308
- return function (current) {
309
- // this is a reference to the current object (therefore no array function here)
310
- if (this instanceof HTMLInputElement) {
311
- if (["radio", "checkbox"].indexOf(this.type) !== -1) {
312
- return `${this.value}` === `${current}` ? "true" : undefined;
313
- }
314
- } else if (this instanceof HTMLOptionElement) {
315
- if (isArray(current) && current.indexOf(this.value) !== -1) {
316
- return "true";
317
- }
318
-
319
- return undefined;
320
- }
321
- };
308
+ return function (current) {
309
+ // this is a reference to the current object (therefore no array function here)
310
+ if (this instanceof HTMLInputElement) {
311
+ if (["radio", "checkbox"].indexOf(this.type) !== -1) {
312
+ return `${this.value}` === `${current}` ? "true" : undefined;
313
+ }
314
+ } else if (this instanceof HTMLOptionElement) {
315
+ if (isArray(current) && current.indexOf(this.value) !== -1) {
316
+ return "true";
317
+ }
318
+
319
+ return undefined;
320
+ }
321
+ };
322
322
  }
323
323
 
324
324
  /**
@@ -333,41 +333,41 @@ const symbol = Symbol("@schukai/monster/updater@@EventHandler");
333
333
  * @throws {Error} the bind argument must start as a value with a path
334
334
  */
335
335
  function getControlEventHandler() {
336
- if (this[symbol]) {
337
- return this[symbol];
338
- }
339
-
340
- /**
341
- * @throws {Error} the bind argument must start as a value with a path.
342
- * @throws {Error} unsupported object
343
- * @param {Event} event
344
- */
345
- this[symbol] = (event) => {
346
- const element = findTargetElementFromEvent(event, ATTRIBUTE_UPDATER_BIND);
347
-
348
- if (element === undefined) {
349
- return;
350
- }
351
-
352
- if (this[timerElementEventHandlerSymbol] instanceof DeadMansSwitch) {
353
- try {
354
- this[timerElementEventHandlerSymbol].touch();
355
- return;
356
- } catch (e) {
357
- delete this[timerElementEventHandlerSymbol];
358
- }
359
- }
360
-
361
- this[timerElementEventHandlerSymbol] = new DeadMansSwitch(50, () => {
362
- try {
363
- retrieveAndSetValue.call(this, element);
364
- } catch (e) {
365
- addErrorAttribute(element, e);
366
- }
367
- });
368
- };
369
-
370
- return this[symbol];
336
+ if (this[symbol]) {
337
+ return this[symbol];
338
+ }
339
+
340
+ /**
341
+ * @throws {Error} the bind argument must start as a value with a path.
342
+ * @throws {Error} unsupported object
343
+ * @param {Event} event
344
+ */
345
+ this[symbol] = (event) => {
346
+ const element = findTargetElementFromEvent(event, ATTRIBUTE_UPDATER_BIND);
347
+
348
+ if (element === undefined) {
349
+ return;
350
+ }
351
+
352
+ if (this[timerElementEventHandlerSymbol] instanceof DeadMansSwitch) {
353
+ try {
354
+ this[timerElementEventHandlerSymbol].touch();
355
+ return;
356
+ } catch (e) {
357
+ delete this[timerElementEventHandlerSymbol];
358
+ }
359
+ }
360
+
361
+ this[timerElementEventHandlerSymbol] = new DeadMansSwitch(50, () => {
362
+ try {
363
+ retrieveAndSetValue.call(this, element);
364
+ } catch (e) {
365
+ addErrorAttribute(element, e);
366
+ }
367
+ });
368
+ };
369
+
370
+ return this[symbol];
371
371
  }
372
372
 
373
373
  /**
@@ -377,179 +377,179 @@ function getControlEventHandler() {
377
377
  * @private
378
378
  */
379
379
  function retrieveAndSetValue(element) {
380
- const pathfinder = new Pathfinder(this[internalSymbol].subject.getSubject());
381
-
382
- let path = element.getAttribute(ATTRIBUTE_UPDATER_BIND);
383
- if (path === null)
384
- throw new Error("the bind argument must start as a value with a path");
385
-
386
- if (path.indexOf("path:") !== 0) {
387
- throw new Error("the bind argument must start as a value with a path");
388
- }
389
-
390
- path = path.substring(5); // remove path: from the string
391
-
392
- let value;
393
-
394
- if (element instanceof HTMLInputElement) {
395
- switch (element.type) {
396
- case "checkbox":
397
- value = element.checked ? element.value : undefined;
398
- break;
399
- default:
400
- value = element.value;
401
- break;
402
- }
403
- } else if (element instanceof HTMLTextAreaElement) {
404
- value = element.value;
405
- } else if (element instanceof HTMLSelectElement) {
406
- switch (element.type) {
407
- case "select-one":
408
- value = element.value;
409
- break;
410
- case "select-multiple":
411
- value = element.value;
412
-
413
- let options = element?.selectedOptions;
414
- if (options === undefined)
415
- options = element.querySelectorAll(":scope option:checked");
416
- value = Array.from(options).map(({ value }) => value);
417
-
418
- break;
419
- }
420
-
421
- // values from custom elements
422
- } else if (
423
- (element?.constructor?.prototype &&
424
- !!Object.getOwnPropertyDescriptor(
425
- element.constructor.prototype,
426
- "value",
427
- )?.["get"]) ||
428
- "value" in element
429
- ) {
430
- value = element?.["value"];
431
- } else {
432
- throw new Error("unsupported object");
433
- }
434
-
435
- const type = element.getAttribute(ATTRIBUTE_UPDATER_BIND_TYPE);
436
- switch (type) {
437
- case "integer?":
438
- case "int?":
439
- case "number?":
440
- value = Number(value);
441
- if (isNaN(value) || 0 === value) {
442
- value = undefined;
443
- }
444
- break;
445
-
446
- case "number":
447
- case "int":
448
- case "float":
449
- case "integer":
450
- value = Number(value);
451
- if (isNaN(value)) {
452
- value = 0;
453
- }
454
- break;
455
- case "boolean":
456
- case "bool":
457
- case "checkbox":
458
- value =
459
- value === "true" || value === "1" || value === "on" || value === true;
460
- break;
461
-
462
- case "string[]":
463
- case "[]string":
464
- if (isString(value)) {
465
- if (value.trim() === "") {
466
- value = [];
467
- } else {
468
- value = value.split(",").map((v) => `${v}`);
469
- }
470
- } else if (isInteger(value)) {
471
- value = [`${value}`];
472
- } else if (value === undefined || value === null) {
473
- value = [];
474
- } else if (isArray(value)) {
475
- value = value.map((v) => `${v}`);
476
- } else {
477
- throw new Error("unsupported value");
478
- }
479
-
480
- break;
481
-
482
- case "int[]":
483
- case "integer[]":
484
- case "number[]":
485
- case "[]int":
486
- case "[]integer":
487
- case "[]number":
488
- value = parseIntArray(value);
489
- break;
490
- case "[]":
491
- case "array":
492
- case "list":
493
- if (isString(value)) {
494
- if (value.trim() === "") {
495
- value = [];
496
- } else {
497
- value = value.split(",");
498
- }
499
- } else if (isInteger(value)) {
500
- value = [value];
501
- } else if (value === undefined || value === null) {
502
- value = [];
503
- } else if (isArray(value)) {
504
- // nothing to do
505
- } else {
506
- throw new Error("unsupported value for array");
507
- }
508
- break;
509
- case "object":
510
- case "json":
511
- if (isString(value)) {
512
- value = JSON.parse(value);
513
- } else {
514
- throw new Error("unsupported value for object");
515
- }
516
-
517
- break;
518
- default:
519
- break;
520
- }
521
-
522
- const copy = clone(this[internalSymbol].subject.getRealSubject());
523
-
524
- const pf = new Pathfinder(copy);
525
- pf.setVia(path, value);
526
-
527
- const diffResult = diff(copy, this[internalSymbol].subject.getRealSubject());
528
-
529
- if (diffResult.length > 0) {
530
- pathfinder.setVia(path, value);
531
- }
380
+ const pathfinder = new Pathfinder(this[internalSymbol].subject.getSubject());
381
+
382
+ let path = element.getAttribute(ATTRIBUTE_UPDATER_BIND);
383
+ if (path === null)
384
+ throw new Error("the bind argument must start as a value with a path");
385
+
386
+ if (path.indexOf("path:") !== 0) {
387
+ throw new Error("the bind argument must start as a value with a path");
388
+ }
389
+
390
+ path = path.substring(5); // remove path: from the string
391
+
392
+ let value;
393
+
394
+ if (element instanceof HTMLInputElement) {
395
+ switch (element.type) {
396
+ case "checkbox":
397
+ value = element.checked ? element.value : undefined;
398
+ break;
399
+ default:
400
+ value = element.value;
401
+ break;
402
+ }
403
+ } else if (element instanceof HTMLTextAreaElement) {
404
+ value = element.value;
405
+ } else if (element instanceof HTMLSelectElement) {
406
+ switch (element.type) {
407
+ case "select-one":
408
+ value = element.value;
409
+ break;
410
+ case "select-multiple":
411
+ value = element.value;
412
+
413
+ let options = element?.selectedOptions;
414
+ if (options === undefined)
415
+ options = element.querySelectorAll(":scope option:checked");
416
+ value = Array.from(options).map(({ value }) => value);
417
+
418
+ break;
419
+ }
420
+
421
+ // values from custom elements
422
+ } else if (
423
+ (element?.constructor?.prototype &&
424
+ !!Object.getOwnPropertyDescriptor(
425
+ element.constructor.prototype,
426
+ "value",
427
+ )?.["get"]) ||
428
+ "value" in element
429
+ ) {
430
+ value = element?.["value"];
431
+ } else {
432
+ throw new Error("unsupported object");
433
+ }
434
+
435
+ const type = element.getAttribute(ATTRIBUTE_UPDATER_BIND_TYPE);
436
+ switch (type) {
437
+ case "integer?":
438
+ case "int?":
439
+ case "number?":
440
+ value = Number(value);
441
+ if (isNaN(value) || 0 === value) {
442
+ value = undefined;
443
+ }
444
+ break;
445
+
446
+ case "number":
447
+ case "int":
448
+ case "float":
449
+ case "integer":
450
+ value = Number(value);
451
+ if (isNaN(value)) {
452
+ value = 0;
453
+ }
454
+ break;
455
+ case "boolean":
456
+ case "bool":
457
+ case "checkbox":
458
+ value =
459
+ value === "true" || value === "1" || value === "on" || value === true;
460
+ break;
461
+
462
+ case "string[]":
463
+ case "[]string":
464
+ if (isString(value)) {
465
+ if (value.trim() === "") {
466
+ value = [];
467
+ } else {
468
+ value = value.split(",").map((v) => `${v}`);
469
+ }
470
+ } else if (isInteger(value)) {
471
+ value = [`${value}`];
472
+ } else if (value === undefined || value === null) {
473
+ value = [];
474
+ } else if (isArray(value)) {
475
+ value = value.map((v) => `${v}`);
476
+ } else {
477
+ throw new Error("unsupported value");
478
+ }
479
+
480
+ break;
481
+
482
+ case "int[]":
483
+ case "integer[]":
484
+ case "number[]":
485
+ case "[]int":
486
+ case "[]integer":
487
+ case "[]number":
488
+ value = parseIntArray(value);
489
+ break;
490
+ case "[]":
491
+ case "array":
492
+ case "list":
493
+ if (isString(value)) {
494
+ if (value.trim() === "") {
495
+ value = [];
496
+ } else {
497
+ value = value.split(",");
498
+ }
499
+ } else if (isInteger(value)) {
500
+ value = [value];
501
+ } else if (value === undefined || value === null) {
502
+ value = [];
503
+ } else if (isArray(value)) {
504
+ // nothing to do
505
+ } else {
506
+ throw new Error("unsupported value for array");
507
+ }
508
+ break;
509
+ case "object":
510
+ case "json":
511
+ if (isString(value)) {
512
+ value = JSON.parse(value);
513
+ } else {
514
+ throw new Error("unsupported value for object");
515
+ }
516
+
517
+ break;
518
+ default:
519
+ break;
520
+ }
521
+
522
+ const copy = clone(this[internalSymbol].subject.getRealSubject());
523
+
524
+ const pf = new Pathfinder(copy);
525
+ pf.setVia(path, value);
526
+
527
+ const diffResult = diff(copy, this[internalSymbol].subject.getRealSubject());
528
+
529
+ if (diffResult.length > 0) {
530
+ pathfinder.setVia(path, value);
531
+ }
532
532
  }
533
533
 
534
534
  /**
535
535
  * @private
536
536
  */
537
537
  function parseIntArray(val) {
538
- if (isString(val)) {
539
- return val.trim() === ""
540
- ? []
541
- : val
542
- .split(",")
543
- .map((v) => parseInt(v, 10))
544
- .filter((v) => !isNaN(v));
545
- } else if (isInteger(val)) {
546
- return [val];
547
- } else if (val === undefined || val === null) {
548
- return [];
549
- } else if (isArray(val)) {
550
- return val.map((v) => parseInt(v, 10)).filter((v) => !isNaN(v));
551
- }
552
- throw new Error("unsupported value for int array");
538
+ if (isString(val)) {
539
+ return val.trim() === ""
540
+ ? []
541
+ : val
542
+ .split(",")
543
+ .map((v) => parseInt(v, 10))
544
+ .filter((v) => !isNaN(v));
545
+ } else if (isInteger(val)) {
546
+ return [val];
547
+ } else if (val === undefined || val === null) {
548
+ return [];
549
+ } else if (isArray(val)) {
550
+ return val.map((v) => parseInt(v, 10)).filter((v) => !isNaN(v));
551
+ }
552
+ throw new Error("unsupported value for int array");
553
553
  }
554
554
 
555
555
  /**
@@ -559,15 +559,15 @@ function parseIntArray(val) {
559
559
  * @private
560
560
  */
561
561
  function retrieveFromBindings() {
562
- if (this[internalSymbol].element.matches(`[${ATTRIBUTE_UPDATER_BIND}]`)) {
563
- retrieveAndSetValue.call(this, this[internalSymbol].element);
564
- }
565
-
566
- for (const [, element] of this[internalSymbol].element
567
- .querySelectorAll(`[${ATTRIBUTE_UPDATER_BIND}]`)
568
- .entries()) {
569
- retrieveAndSetValue.call(this, element);
570
- }
562
+ if (this[internalSymbol].element.matches(`[${ATTRIBUTE_UPDATER_BIND}]`)) {
563
+ retrieveAndSetValue.call(this, this[internalSymbol].element);
564
+ }
565
+
566
+ for (const [, element] of this[internalSymbol].element
567
+ .querySelectorAll(`[${ATTRIBUTE_UPDATER_BIND}]`)
568
+ .entries()) {
569
+ retrieveAndSetValue.call(this, element);
570
+ }
571
571
  }
572
572
 
573
573
  /**
@@ -578,11 +578,11 @@ function retrieveFromBindings() {
578
578
  * @return {void}
579
579
  */
580
580
  function removeElement(change) {
581
- for (const [, element] of this[internalSymbol].element
582
- .querySelectorAll(`:scope [${ATTRIBUTE_UPDATER_REMOVE}]`)
583
- .entries()) {
584
- element.parentNode.removeChild(element);
585
- }
581
+ for (const [, element] of this[internalSymbol].element
582
+ .querySelectorAll(`:scope [${ATTRIBUTE_UPDATER_REMOVE}]`)
583
+ .entries()) {
584
+ element.parentNode.removeChild(element);
585
+ }
586
586
  }
587
587
 
588
588
  /**
@@ -598,128 +598,128 @@ function removeElement(change) {
598
598
  * @this Updater
599
599
  */
600
600
  function insertElement(change) {
601
- const subject = this[internalSymbol].subject.getRealSubject();
601
+ const subject = this[internalSymbol].subject.getRealSubject();
602
602
 
603
- const mem = new WeakSet();
604
- let wd = 0;
603
+ const mem = new WeakSet();
604
+ let wd = 0;
605
605
 
606
- const container = this[internalSymbol].element;
606
+ const container = this[internalSymbol].element;
607
607
 
608
- while (true) {
609
- let found = false;
610
- wd++;
611
-
612
- const p = clone(change?.["path"]);
613
- if (!isArray(p)) return;
614
-
615
- while (p.length > 0) {
616
- const current = p.join(".");
617
-
618
- let iterator = new Set();
619
- const query = `[${ATTRIBUTE_UPDATER_INSERT}*="path:${current}"]`;
620
-
621
- const e = container.querySelectorAll(query);
622
-
623
- if (e.length > 0) {
624
- iterator = new Set([...e]);
625
- }
626
-
627
- if (container.matches(query)) {
628
- iterator.add(container);
629
- }
630
-
631
- for (const [, containerElement] of iterator.entries()) {
632
- if (mem.has(containerElement)) continue;
633
- mem.add(containerElement);
634
-
635
- found = true;
636
-
637
- const attributes = containerElement.getAttribute(
638
- ATTRIBUTE_UPDATER_INSERT,
639
- );
640
- if (attributes === null) continue;
641
-
642
- const def = trimSpaces(attributes);
643
- const i = def.indexOf(" ");
644
- const key = trimSpaces(def.substr(0, i));
645
- const refPrefix = `${key}-`;
646
- const cmd = trimSpaces(def.substr(i));
647
-
648
- // this case is actually excluded by the query but is nevertheless checked again here
649
- if (cmd.indexOf("|") > 0) {
650
- throw new Error("pipes are not allowed when cloning a node.");
651
- }
652
-
653
- const pipe = new Pipe(cmd);
654
- this[internalSymbol].callbacks.forEach((f, n) => {
655
- pipe.setCallback(n, f);
656
- });
657
-
658
- let value;
659
- try {
660
- containerElement.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
661
- value = pipe.run(subject);
662
- } catch (e) {
663
- addErrorAttribute(containerElement, e);
664
- }
665
-
666
- const dataPath = cmd.split(":").pop();
667
-
668
- let insertPoint;
669
- if (containerElement.hasChildNodes()) {
670
- insertPoint = containerElement.lastChild;
671
- }
672
-
673
- if (!isIterable(value)) {
674
- throw new Error("the value is not iterable");
675
- }
676
-
677
- const available = new Set();
678
-
679
- for (const [i] of Object.entries(value)) {
680
- const ref = refPrefix + i;
681
- const currentPath = `${dataPath}.${i}`;
682
-
683
- available.add(ref);
684
- const refElement = containerElement.querySelector(
685
- `[${ATTRIBUTE_UPDATER_INSERT_REFERENCE}="${ref}"]`,
686
- );
687
-
688
- if (refElement instanceof HTMLElement) {
689
- insertPoint = refElement;
690
- continue;
691
- }
692
-
693
- appendNewDocumentFragment(containerElement, key, ref, currentPath);
694
- }
695
-
696
- const nodes = containerElement.querySelectorAll(
697
- `[${ATTRIBUTE_UPDATER_INSERT_REFERENCE}*="${refPrefix}"]`,
698
- );
699
-
700
- for (const [, node] of Object.entries(nodes)) {
701
- if (
702
- !available.has(
703
- node.getAttribute(ATTRIBUTE_UPDATER_INSERT_REFERENCE),
704
- )
705
- ) {
706
- try {
707
- containerElement.removeChild(node);
708
- } catch (e) {
709
- addErrorAttribute(containerElement, e);
710
- }
711
- }
712
- }
713
- }
714
-
715
- p.pop();
716
- }
717
-
718
- if (found === false) break;
719
- if (wd++ > 200) {
720
- throw new Error("the maximum depth for the recursion is reached.");
721
- }
722
- }
608
+ while (true) {
609
+ let found = false;
610
+ wd++;
611
+
612
+ const p = clone(change?.["path"]);
613
+ if (!isArray(p)) return;
614
+
615
+ while (p.length > 0) {
616
+ const current = p.join(".");
617
+
618
+ let iterator = new Set();
619
+ const query = `[${ATTRIBUTE_UPDATER_INSERT}*="path:${current}"]`;
620
+
621
+ const e = container.querySelectorAll(query);
622
+
623
+ if (e.length > 0) {
624
+ iterator = new Set([...e]);
625
+ }
626
+
627
+ if (container.matches(query)) {
628
+ iterator.add(container);
629
+ }
630
+
631
+ for (const [, containerElement] of iterator.entries()) {
632
+ if (mem.has(containerElement)) continue;
633
+ mem.add(containerElement);
634
+
635
+ found = true;
636
+
637
+ const attributes = containerElement.getAttribute(
638
+ ATTRIBUTE_UPDATER_INSERT,
639
+ );
640
+ if (attributes === null) continue;
641
+
642
+ const def = trimSpaces(attributes);
643
+ const i = def.indexOf(" ");
644
+ const key = trimSpaces(def.substr(0, i));
645
+ const refPrefix = `${key}-`;
646
+ const cmd = trimSpaces(def.substr(i));
647
+
648
+ // this case is actually excluded by the query but is nevertheless checked again here
649
+ if (cmd.indexOf("|") > 0) {
650
+ throw new Error("pipes are not allowed when cloning a node.");
651
+ }
652
+
653
+ const pipe = new Pipe(cmd);
654
+ this[internalSymbol].callbacks.forEach((f, n) => {
655
+ pipe.setCallback(n, f);
656
+ });
657
+
658
+ let value;
659
+ try {
660
+ containerElement.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
661
+ value = pipe.run(subject);
662
+ } catch (e) {
663
+ addErrorAttribute(containerElement, e);
664
+ }
665
+
666
+ const dataPath = cmd.split(":").pop();
667
+
668
+ let insertPoint;
669
+ if (containerElement.hasChildNodes()) {
670
+ insertPoint = containerElement.lastChild;
671
+ }
672
+
673
+ if (!isIterable(value)) {
674
+ throw new Error("the value is not iterable");
675
+ }
676
+
677
+ const available = new Set();
678
+
679
+ for (const [i] of Object.entries(value)) {
680
+ const ref = refPrefix + i;
681
+ const currentPath = `${dataPath}.${i}`;
682
+
683
+ available.add(ref);
684
+ const refElement = containerElement.querySelector(
685
+ `[${ATTRIBUTE_UPDATER_INSERT_REFERENCE}="${ref}"]`,
686
+ );
687
+
688
+ if (refElement instanceof HTMLElement) {
689
+ insertPoint = refElement;
690
+ continue;
691
+ }
692
+
693
+ appendNewDocumentFragment(containerElement, key, ref, currentPath);
694
+ }
695
+
696
+ const nodes = containerElement.querySelectorAll(
697
+ `[${ATTRIBUTE_UPDATER_INSERT_REFERENCE}*="${refPrefix}"]`,
698
+ );
699
+
700
+ for (const [, node] of Object.entries(nodes)) {
701
+ if (
702
+ !available.has(
703
+ node.getAttribute(ATTRIBUTE_UPDATER_INSERT_REFERENCE),
704
+ )
705
+ ) {
706
+ try {
707
+ containerElement.removeChild(node);
708
+ } catch (e) {
709
+ addErrorAttribute(containerElement, e);
710
+ }
711
+ }
712
+ }
713
+ }
714
+
715
+ p.pop();
716
+ }
717
+
718
+ if (found === false) break;
719
+ if (wd++ > 200) {
720
+ throw new Error("the maximum depth for the recursion is reached.");
721
+ }
722
+ }
723
723
  }
724
724
 
725
725
  /**
@@ -734,17 +734,17 @@ function insertElement(change) {
734
734
  * @throws {Error} no template was found with the specified key.
735
735
  */
736
736
  function appendNewDocumentFragment(container, key, ref, path) {
737
- const template = findDocumentTemplate(key, container);
737
+ const template = findDocumentTemplate(key, container);
738
738
 
739
- const nodes = template.createDocumentFragment();
740
- for (const [, node] of Object.entries(nodes.childNodes)) {
741
- if (node instanceof HTMLElement) {
742
- applyRecursive(node, key, path);
743
- node.setAttribute(ATTRIBUTE_UPDATER_INSERT_REFERENCE, ref);
744
- }
739
+ const nodes = template.createDocumentFragment();
740
+ for (const [, node] of Object.entries(nodes.childNodes)) {
741
+ if (node instanceof HTMLElement) {
742
+ applyRecursive(node, key, path);
743
+ node.setAttribute(ATTRIBUTE_UPDATER_INSERT_REFERENCE, ref);
744
+ }
745
745
 
746
- container.appendChild(node);
747
- }
746
+ container.appendChild(node);
747
+ }
748
748
  }
749
749
 
750
750
  /**
@@ -757,31 +757,31 @@ function appendNewDocumentFragment(container, key, ref, path) {
757
757
  * @return {void}
758
758
  */
759
759
  function applyRecursive(node, key, path) {
760
- if (!(node instanceof HTMLElement)) {
761
- return;
762
- }
763
-
764
- if (node.hasAttribute(ATTRIBUTE_UPDATER_REPLACE)) {
765
- const value = node.getAttribute(ATTRIBUTE_UPDATER_REPLACE);
766
- node.setAttribute(
767
- ATTRIBUTE_UPDATER_REPLACE,
768
- value.replaceAll(`path:${key}`, `path:${path}`),
769
- );
770
- }
771
-
772
- if (node.hasAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES)) {
773
- const value = node.getAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES);
774
- node.setAttribute(
775
- ATTRIBUTE_UPDATER_ATTRIBUTES,
776
- value.replaceAll(`path:${key}`, `path:${path}`),
777
- );
778
- }
779
-
780
- for (const [, child] of Object.entries(node.childNodes)) {
781
- if (child instanceof HTMLElement) {
782
- applyRecursive(child, key, path);
783
- }
784
- }
760
+ if (!(node instanceof HTMLElement)) {
761
+ return;
762
+ }
763
+
764
+ if (node.hasAttribute(ATTRIBUTE_UPDATER_REPLACE)) {
765
+ const value = node.getAttribute(ATTRIBUTE_UPDATER_REPLACE);
766
+ node.setAttribute(
767
+ ATTRIBUTE_UPDATER_REPLACE,
768
+ value.replaceAll(`path:${key}`, `path:${path}`),
769
+ );
770
+ }
771
+
772
+ if (node.hasAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES)) {
773
+ const value = node.getAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES);
774
+ node.setAttribute(
775
+ ATTRIBUTE_UPDATER_ATTRIBUTES,
776
+ value.replaceAll(`path:${key}`, `path:${path}`),
777
+ );
778
+ }
779
+
780
+ for (const [, child] of Object.entries(node.childNodes)) {
781
+ if (child instanceof HTMLElement) {
782
+ applyRecursive(child, key, path);
783
+ }
784
+ }
785
785
  }
786
786
 
787
787
  /**
@@ -793,19 +793,19 @@ function applyRecursive(node, key, path) {
793
793
  * @this Updater
794
794
  */
795
795
  function updateContent(change) {
796
- const subject = this[internalSymbol].subject.getRealSubject();
797
-
798
- const p = clone(change?.["path"]);
799
- runUpdateContent.call(this, this[internalSymbol].element, p, subject);
800
-
801
- const slots = this[internalSymbol].element.querySelectorAll("slot");
802
- if (slots.length > 0) {
803
- for (const [, slot] of Object.entries(slots)) {
804
- for (const [, element] of Object.entries(slot.assignedNodes())) {
805
- runUpdateContent.call(this, element, p, subject);
806
- }
807
- }
808
- }
796
+ const subject = this[internalSymbol].subject.getRealSubject();
797
+
798
+ const p = clone(change?.["path"]);
799
+ runUpdateContent.call(this, this[internalSymbol].element, p, subject);
800
+
801
+ const slots = this[internalSymbol].element.querySelectorAll("slot");
802
+ if (slots.length > 0) {
803
+ for (const [, slot] of Object.entries(slots)) {
804
+ for (const [, element] of Object.entries(slot.assignedNodes())) {
805
+ runUpdateContent.call(this, element, p, subject);
806
+ }
807
+ }
808
+ }
809
809
  }
810
810
 
811
811
  /**
@@ -818,64 +818,64 @@ function updateContent(change) {
818
818
  * @return {void}
819
819
  */
820
820
  function runUpdateContent(container, parts, subject) {
821
- if (!isArray(parts)) return;
822
- if (!(container instanceof HTMLElement)) return;
823
- parts = clone(parts);
824
-
825
- const mem = new WeakSet();
826
-
827
- while (parts.length > 0) {
828
- const current = parts.join(".");
829
- parts.pop();
830
-
831
- // Unfortunately, static data is always changed as well, since it is not possible to react to changes here.
832
- const query = `[${ATTRIBUTE_UPDATER_REPLACE}^="path:${current}"], [${ATTRIBUTE_UPDATER_REPLACE}^="static:"], [${ATTRIBUTE_UPDATER_REPLACE}^="i18n:"]`;
833
- const e = container.querySelectorAll(`${query}`);
834
-
835
- const iterator = new Set([...e]);
836
-
837
- if (container.matches(query)) {
838
- iterator.add(container);
839
- }
840
-
841
- /**
842
- * @type {HTMLElement}
843
- */
844
- for (const [element] of iterator.entries()) {
845
- if (mem.has(element)) return;
846
- mem.add(element);
847
-
848
- const attributes = element.getAttribute(ATTRIBUTE_UPDATER_REPLACE);
849
- const cmd = trimSpaces(attributes);
850
-
851
- const pipe = new Pipe(cmd);
852
- this[internalSymbol].callbacks.forEach((f, n) => {
853
- pipe.setCallback(n, f);
854
- });
855
-
856
- let value;
857
- try {
858
- element.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
859
- value = pipe.run(subject);
860
- } catch (e) {
861
- element.setAttribute(ATTRIBUTE_ERRORMESSAGE, e.message);
862
- }
863
-
864
- if (value instanceof HTMLElement) {
865
- while (element.firstChild) {
866
- element.removeChild(element.firstChild);
867
- }
868
-
869
- try {
870
- element.appendChild(value);
871
- } catch (e) {
872
- addErrorAttribute(element, e);
873
- }
874
- } else {
875
- element.innerHTML = value;
876
- }
877
- }
878
- }
821
+ if (!isArray(parts)) return;
822
+ if (!(container instanceof HTMLElement)) return;
823
+ parts = clone(parts);
824
+
825
+ const mem = new WeakSet();
826
+
827
+ while (parts.length > 0) {
828
+ const current = parts.join(".");
829
+ parts.pop();
830
+
831
+ // Unfortunately, static data is always changed as well, since it is not possible to react to changes here.
832
+ const query = `[${ATTRIBUTE_UPDATER_REPLACE}^="path:${current}"], [${ATTRIBUTE_UPDATER_REPLACE}^="static:"], [${ATTRIBUTE_UPDATER_REPLACE}^="i18n:"]`;
833
+ const e = container.querySelectorAll(`${query}`);
834
+
835
+ const iterator = new Set([...e]);
836
+
837
+ if (container.matches(query)) {
838
+ iterator.add(container);
839
+ }
840
+
841
+ /**
842
+ * @type {HTMLElement}
843
+ */
844
+ for (const [element] of iterator.entries()) {
845
+ if (mem.has(element)) return;
846
+ mem.add(element);
847
+
848
+ const attributes = element.getAttribute(ATTRIBUTE_UPDATER_REPLACE);
849
+ const cmd = trimSpaces(attributes);
850
+
851
+ const pipe = new Pipe(cmd);
852
+ this[internalSymbol].callbacks.forEach((f, n) => {
853
+ pipe.setCallback(n, f);
854
+ });
855
+
856
+ let value;
857
+ try {
858
+ element.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
859
+ value = pipe.run(subject);
860
+ } catch (e) {
861
+ element.setAttribute(ATTRIBUTE_ERRORMESSAGE, e.message);
862
+ }
863
+
864
+ if (value instanceof HTMLElement) {
865
+ while (element.firstChild) {
866
+ element.removeChild(element.firstChild);
867
+ }
868
+
869
+ try {
870
+ element.appendChild(value);
871
+ } catch (e) {
872
+ addErrorAttribute(element, e);
873
+ }
874
+ } else {
875
+ element.innerHTML = value;
876
+ }
877
+ }
878
+ }
879
879
  }
880
880
 
881
881
  /**
@@ -885,9 +885,9 @@ function runUpdateContent(container, parts, subject) {
885
885
  * @return {void}
886
886
  */
887
887
  function updateAttributes(change) {
888
- const subject = this[internalSymbol].subject.getRealSubject();
889
- const p = clone(change?.["path"]);
890
- runUpdateAttributes.call(this, this[internalSymbol].element, p, subject);
888
+ const subject = this[internalSymbol].subject.getRealSubject();
889
+ const p = clone(change?.["path"]);
890
+ runUpdateAttributes.call(this, this[internalSymbol].element, p, subject);
891
891
  }
892
892
 
893
893
  /**
@@ -899,70 +899,70 @@ function updateAttributes(change) {
899
899
  * @this Updater
900
900
  */
901
901
  function runUpdateAttributes(container, parts, subject) {
902
- if (!isArray(parts)) return;
903
- parts = clone(parts);
902
+ if (!isArray(parts)) return;
903
+ parts = clone(parts);
904
904
 
905
- const mem = new WeakSet();
905
+ const mem = new WeakSet();
906
906
 
907
- while (parts.length > 0) {
908
- const current = parts.join(".");
909
- parts.pop();
907
+ while (parts.length > 0) {
908
+ const current = parts.join(".");
909
+ parts.pop();
910
910
 
911
- let iterator = new Set();
911
+ let iterator = new Set();
912
912
 
913
- const query = `[${ATTRIBUTE_UPDATER_SELECT_THIS}][${ATTRIBUTE_UPDATER_ATTRIBUTES}], [${ATTRIBUTE_UPDATER_ATTRIBUTES}*="path:${current}"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="static:"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="i18n:"]`;
913
+ const query = `[${ATTRIBUTE_UPDATER_SELECT_THIS}][${ATTRIBUTE_UPDATER_ATTRIBUTES}], [${ATTRIBUTE_UPDATER_ATTRIBUTES}*="path:${current}"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="static:"], [${ATTRIBUTE_UPDATER_ATTRIBUTES}^="i18n:"]`;
914
914
 
915
- const e = container.querySelectorAll(query);
915
+ const e = container.querySelectorAll(query);
916
916
 
917
- if (e.length > 0) {
918
- iterator = new Set([...e]);
919
- }
917
+ if (e.length > 0) {
918
+ iterator = new Set([...e]);
919
+ }
920
920
 
921
- if (container.matches(query)) {
922
- iterator.add(container);
923
- }
921
+ if (container.matches(query)) {
922
+ iterator.add(container);
923
+ }
924
924
 
925
- for (const [element] of iterator.entries()) {
926
- if (mem.has(element)) return;
927
- mem.add(element);
925
+ for (const [element] of iterator.entries()) {
926
+ if (mem.has(element)) return;
927
+ mem.add(element);
928
928
 
929
- // this case occurs when the ATTRIBUTE_UPDATER_SELECT_THIS attribute is set
930
- if (!element.hasAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES)) {
931
- continue;
932
- }
929
+ // this case occurs when the ATTRIBUTE_UPDATER_SELECT_THIS attribute is set
930
+ if (!element.hasAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES)) {
931
+ continue;
932
+ }
933
933
 
934
- const attributes = element.getAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES);
934
+ const attributes = element.getAttribute(ATTRIBUTE_UPDATER_ATTRIBUTES);
935
935
 
936
- for (let [, def] of Object.entries(attributes.split(","))) {
937
- def = trimSpaces(def);
938
- const i = def.indexOf(" ");
939
- const name = trimSpaces(def.substr(0, i));
940
- const cmd = trimSpaces(def.substr(i));
936
+ for (let [, def] of Object.entries(attributes.split(","))) {
937
+ def = trimSpaces(def);
938
+ const i = def.indexOf(" ");
939
+ const name = trimSpaces(def.substr(0, i));
940
+ const cmd = trimSpaces(def.substr(i));
941
941
 
942
- const pipe = new Pipe(cmd);
942
+ const pipe = new Pipe(cmd);
943
943
 
944
- this[internalSymbol].callbacks.forEach((f, n) => {
945
- pipe.setCallback(n, f, element);
946
- });
944
+ this[internalSymbol].callbacks.forEach((f, n) => {
945
+ pipe.setCallback(n, f, element);
946
+ });
947
947
 
948
- let value;
949
- try {
950
- element.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
951
- value = pipe.run(subject);
952
- } catch (e) {
953
- addErrorAttribute(element, e);
954
- }
948
+ let value;
949
+ try {
950
+ element.removeAttribute(ATTRIBUTE_ERRORMESSAGE);
951
+ value = pipe.run(subject);
952
+ } catch (e) {
953
+ addErrorAttribute(element, e);
954
+ }
955
955
 
956
- if (value === undefined) {
957
- element.removeAttribute(name);
958
- } else if (element.getAttribute(name) !== value) {
959
- element.setAttribute(name, value);
960
- }
956
+ if (value === undefined) {
957
+ element.removeAttribute(name);
958
+ } else if (element.getAttribute(name) !== value) {
959
+ element.setAttribute(name, value);
960
+ }
961
961
 
962
- handleInputControlAttributeUpdate.call(this, element, name, value);
963
- }
964
- }
965
- }
962
+ handleInputControlAttributeUpdate.call(this, element, name, value);
963
+ }
964
+ }
965
+ }
966
966
  }
967
967
 
968
968
  /**
@@ -975,52 +975,52 @@ function runUpdateAttributes(container, parts, subject) {
975
975
  */
976
976
 
977
977
  function handleInputControlAttributeUpdate(element, name, value) {
978
- if (element instanceof HTMLSelectElement) {
979
- switch (element.type) {
980
- case "select-multiple":
981
- for (const [index, opt] of Object.entries(element.options)) {
982
- opt.selected = value.indexOf(opt.value) !== -1;
983
- }
984
-
985
- break;
986
- case "select-one":
987
- // Only one value may be selected
988
-
989
- for (const [index, opt] of Object.entries(element.options)) {
990
- if (opt.value === value) {
991
- element.selectedIndex = index;
992
- break;
993
- }
994
- }
995
-
996
- break;
997
- }
998
- } else if (element instanceof HTMLInputElement) {
999
- switch (element.type) {
1000
- case "radio":
1001
- if (name === "checked") {
1002
- element.checked = value !== undefined;
1003
- }
1004
- break;
1005
-
1006
- case "checkbox":
1007
- if (name === "checked") {
1008
- element.checked = value !== undefined;
1009
- }
1010
- break;
1011
-
1012
- case "text":
1013
- default:
1014
- if (name === "value") {
1015
- element.value = value === undefined ? "" : value;
1016
- }
1017
- break;
1018
- }
1019
- } else if (element instanceof HTMLTextAreaElement) {
1020
- if (name === "value") {
1021
- element.value = value === undefined ? "" : value;
1022
- }
1023
- }
978
+ if (element instanceof HTMLSelectElement) {
979
+ switch (element.type) {
980
+ case "select-multiple":
981
+ for (const [index, opt] of Object.entries(element.options)) {
982
+ opt.selected = value.indexOf(opt.value) !== -1;
983
+ }
984
+
985
+ break;
986
+ case "select-one":
987
+ // Only one value may be selected
988
+
989
+ for (const [index, opt] of Object.entries(element.options)) {
990
+ if (opt.value === value) {
991
+ element.selectedIndex = index;
992
+ break;
993
+ }
994
+ }
995
+
996
+ break;
997
+ }
998
+ } else if (element instanceof HTMLInputElement) {
999
+ switch (element.type) {
1000
+ case "radio":
1001
+ if (name === "checked") {
1002
+ element.checked = value !== undefined;
1003
+ }
1004
+ break;
1005
+
1006
+ case "checkbox":
1007
+ if (name === "checked") {
1008
+ element.checked = value !== undefined;
1009
+ }
1010
+ break;
1011
+
1012
+ case "text":
1013
+ default:
1014
+ if (name === "value") {
1015
+ element.value = value === undefined ? "" : value;
1016
+ }
1017
+ break;
1018
+ }
1019
+ } else if (element instanceof HTMLTextAreaElement) {
1020
+ if (name === "value") {
1021
+ element.value = value === undefined ? "" : value;
1022
+ }
1023
+ }
1024
1024
  }
1025
1025
 
1026
1026
  /**
@@ -1039,81 +1039,81 @@ function handleInputControlAttributeUpdate(element, name, value) {
1039
1039
  * @throws {TypeError} symbol must be an instance of Symbol
1040
1040
  */
1041
1041
  function addObjectWithUpdaterToElement(elements, symbol, object, config = {}) {
1042
- if (!(this instanceof HTMLElement)) {
1043
- throw new TypeError(
1044
- "the context of this function must be an instance of HTMLElement",
1045
- );
1046
- }
1047
-
1048
- if (!(typeof symbol === "symbol")) {
1049
- throw new TypeError("symbol must be an instance of Symbol");
1050
- }
1051
-
1052
- const updaters = new Set();
1053
-
1054
- if (elements instanceof NodeList) {
1055
- elements = new Set([...elements]);
1056
- } else if (elements instanceof HTMLElement) {
1057
- elements = new Set([elements]);
1058
- } else if (elements instanceof Set) {
1059
- } else {
1060
- throw new TypeError(
1061
- `elements is not a valid type. (actual: ${typeof elements})`,
1062
- );
1063
- }
1064
-
1065
- const result = [];
1066
-
1067
- const updaterCallbacks = [];
1068
- const cb = this?.[updaterTransformerMethodsSymbol];
1069
- if (this instanceof HTMLElement && typeof cb === "function") {
1070
- const callbacks = cb.call(this);
1071
- if (typeof callbacks === "object") {
1072
- for (const [name, callback] of Object.entries(callbacks)) {
1073
- if (typeof callback === "function") {
1074
- updaterCallbacks.push([name, callback]);
1075
- } else {
1076
- addErrorAttribute(
1077
- this,
1078
- `onUpdaterPipeCallbacks: ${name} is not a function`,
1079
- );
1080
- }
1081
- }
1082
- } else {
1083
- addErrorAttribute(
1084
- this,
1085
- `onUpdaterPipeCallbacks do not return an object with functions`,
1086
- );
1087
- }
1088
- }
1089
-
1090
- elements.forEach((element) => {
1091
- if (!(element instanceof HTMLElement)) return;
1092
- if (element instanceof HTMLTemplateElement) return;
1093
-
1094
- const u = new Updater(element, object);
1095
- updaters.add(u);
1096
-
1097
- if (updaterCallbacks.length > 0) {
1098
- for (const [name, callback] of updaterCallbacks) {
1099
- u.setCallback(name, callback);
1100
- }
1101
- }
1102
-
1103
- result.push(
1104
- u.run().then(() => {
1105
- if (config.eventProcessing === true) {
1106
- u.enableEventProcessing();
1107
- }
1108
-
1109
- return u;
1110
- }),
1111
- );
1112
- });
1113
-
1114
- if (updaters.size > 0) {
1115
- addToObjectLink(this, symbol, updaters);
1116
- }
1117
-
1118
- return result;
1042
+ if (!(this instanceof HTMLElement)) {
1043
+ throw new TypeError(
1044
+ "the context of this function must be an instance of HTMLElement",
1045
+ );
1046
+ }
1047
+
1048
+ if (!(typeof symbol === "symbol")) {
1049
+ throw new TypeError("symbol must be an instance of Symbol");
1050
+ }
1051
+
1052
+ const updaters = new Set();
1053
+
1054
+ if (elements instanceof NodeList) {
1055
+ elements = new Set([...elements]);
1056
+ } else if (elements instanceof HTMLElement) {
1057
+ elements = new Set([elements]);
1058
+ } else if (elements instanceof Set) {
1059
+ } else {
1060
+ throw new TypeError(
1061
+ `elements is not a valid type. (actual: ${typeof elements})`,
1062
+ );
1063
+ }
1064
+
1065
+ const result = [];
1066
+
1067
+ const updaterCallbacks = [];
1068
+ const cb = this?.[updaterTransformerMethodsSymbol];
1069
+ if (this instanceof HTMLElement && typeof cb === "function") {
1070
+ const callbacks = cb.call(this);
1071
+ if (typeof callbacks === "object") {
1072
+ for (const [name, callback] of Object.entries(callbacks)) {
1073
+ if (typeof callback === "function") {
1074
+ updaterCallbacks.push([name, callback]);
1075
+ } else {
1076
+ addErrorAttribute(
1077
+ this,
1078
+ `onUpdaterPipeCallbacks: ${name} is not a function`,
1079
+ );
1080
+ }
1081
+ }
1082
+ } else {
1083
+ addErrorAttribute(
1084
+ this,
1085
+ `onUpdaterPipeCallbacks do not return an object with functions`,
1086
+ );
1087
+ }
1088
+ }
1089
+
1090
+ elements.forEach((element) => {
1091
+ if (!(element instanceof HTMLElement)) return;
1092
+ if (element instanceof HTMLTemplateElement) return;
1093
+
1094
+ const u = new Updater(element, object);
1095
+ updaters.add(u);
1096
+
1097
+ if (updaterCallbacks.length > 0) {
1098
+ for (const [name, callback] of updaterCallbacks) {
1099
+ u.setCallback(name, callback);
1100
+ }
1101
+ }
1102
+
1103
+ result.push(
1104
+ u.run().then(() => {
1105
+ if (config.eventProcessing === true) {
1106
+ u.enableEventProcessing();
1107
+ }
1108
+
1109
+ return u;
1110
+ }),
1111
+ );
1112
+ });
1113
+
1114
+ if (updaters.size > 0) {
1115
+ addToObjectLink(this, symbol, updaters);
1116
+ }
1117
+
1118
+ return result;
1119
1119
  }