@ng-formworks/core 18.5.6 → 18.5.7

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.
@@ -1,1401 +1,1416 @@
1
1
  import * as i1 from '@angular/common';
2
2
  import { CommonModule } from '@angular/common';
3
- import * as i2 from '@angular/forms';
4
- import { UntypedFormControl, UntypedFormArray, UntypedFormGroup, NG_VALUE_ACCESSOR, FormsModule, ReactiveFormsModule } from '@angular/forms';
5
3
  import * as i0 from '@angular/core';
6
- import { Injectable, inject, input, Component, ChangeDetectionStrategy, Directive, Input, viewChild, ViewContainerRef, ElementRef, NgZone, signal, Inject, forwardRef, ChangeDetectorRef, output, NgModule } from '@angular/core';
7
- import cloneDeep from 'lodash/cloneDeep';
8
- import isEqual$1 from 'lodash/isEqual';
9
- import { from, Observable, forkJoin, Subject, lastValueFrom } from 'rxjs';
10
- import { map, takeUntil } from 'rxjs/operators';
11
- import { HttpClient } from '@angular/common/http';
4
+ import { Injectable, inject, input, viewChild, ViewContainerRef, Component, Directive, Input, ChangeDetectionStrategy, ViewChild, ElementRef, NgZone, signal, NgModule, Inject, forwardRef, ChangeDetectorRef, output } from '@angular/core';
5
+ import * as i2 from '@angular/forms';
6
+ import { UntypedFormControl, UntypedFormArray, UntypedFormGroup, FormsModule, ReactiveFormsModule, NG_VALUE_ACCESSOR } from '@angular/forms';
12
7
  import Ajv2019 from 'ajv/dist/2019';
13
8
  import jsonDraft6 from 'ajv/lib/refs/json-schema-draft-06.json';
14
9
  import jsonDraft7 from 'ajv/lib/refs/json-schema-draft-07.json';
10
+ import cloneDeep from 'lodash/cloneDeep';
11
+ import { from, Observable, forkJoin, Subject, BehaviorSubject, lastValueFrom } from 'rxjs';
12
+ import isEqual$1 from 'lodash/isEqual';
13
+ import { map, takeUntil } from 'rxjs/operators';
15
14
  import filter from 'lodash/filter';
16
15
  import map$1 from 'lodash/map';
17
16
  import _isArray from 'lodash/isArray';
18
17
  import _isPlainObject from 'lodash/isPlainObject';
19
18
  import uniqueId from 'lodash/uniqueId';
19
+ import * as i2$1 from 'nxt-sortablejs';
20
+ import { SortablejsModule } from 'nxt-sortablejs';
21
+ import { HttpClient } from '@angular/common/http';
20
22
 
21
- /**
22
- * '_executeValidators' utility function
23
- *
24
- * Validates a control against an array of validators, and returns
25
- * an array of the same length containing a combination of error messages
26
- * (from invalid validators) and null values (from valid validators)
27
- *
28
- * // { AbstractControl } control - control to validate
29
- * // { IValidatorFn[] } validators - array of validators
30
- * // { boolean } invert - invert?
31
- * // { PlainObject[] } - array of nulls and error message
32
- */
33
- function _executeValidators(control, validators, invert = false) {
34
- return validators.map(validator => validator(control, invert));
35
- }
36
- /**
37
- * '_executeAsyncValidators' utility function
38
- *
39
- * Validates a control against an array of async validators, and returns
40
- * an array of observabe results of the same length containing a combination of
41
- * error messages (from invalid validators) and null values (from valid ones)
42
- *
43
- * // { AbstractControl } control - control to validate
44
- * // { AsyncIValidatorFn[] } validators - array of async validators
45
- * // { boolean } invert - invert?
46
- * // - array of observable nulls and error message
47
- */
48
- function _executeAsyncValidators(control, validators, invert = false) {
49
- return validators.map(validator => validator(control, invert));
50
- }
51
- /**
52
- * '_mergeObjects' utility function
53
- *
54
- * Recursively Merges one or more objects into a single object with combined keys.
55
- * Automatically detects and ignores null and undefined inputs.
56
- * Also detects duplicated boolean 'not' keys and XORs their values.
57
- *
58
- * // { PlainObject[] } objects - one or more objects to merge
59
- * // { PlainObject } - merged object
60
- */
61
- function _mergeObjects(...objects) {
62
- const mergedObject = {};
63
- for (const currentObject of objects) {
64
- if (isObject(currentObject)) {
65
- for (const key of Object.keys(currentObject)) {
66
- const currentValue = currentObject[key];
67
- const mergedValue = mergedObject[key];
68
- mergedObject[key] = !isDefined(mergedValue) ? currentValue :
69
- key === 'not' && isBoolean(mergedValue, 'strict') &&
70
- isBoolean(currentValue, 'strict') ? xor(mergedValue, currentValue) :
71
- getType(mergedValue) === 'object' && getType(currentValue) === 'object' ?
72
- _mergeObjects(mergedValue, currentValue) :
73
- currentValue;
74
- }
75
- }
76
- }
77
- return mergedObject;
78
- }
79
- /**
80
- * '_mergeErrors' utility function
81
- *
82
- * Merges an array of objects.
83
- * Used for combining the validator errors returned from 'executeValidators'
84
- *
85
- * // { PlainObject[] } arrayOfErrors - array of objects
86
- * // { PlainObject } - merged object, or null if no usable input objectcs
87
- */
88
- function _mergeErrors(arrayOfErrors) {
89
- const mergedErrors = _mergeObjects(...arrayOfErrors);
90
- return isEmpty(mergedErrors) ? null : mergedErrors;
91
- }
92
- /**
93
- * 'isDefined' utility function
94
- *
95
- * Checks if a variable contains a value of any type.
96
- * Returns true even for otherwise 'falsey' values of 0, '', and false.
97
- *
98
- * // value - the value to check
99
- * // { boolean } - false if undefined or null, otherwise true
100
- */
101
- function isDefined(value) {
102
- return value !== undefined && value !== null;
103
- }
104
- /**
105
- * 'hasValue' utility function
106
- *
107
- * Checks if a variable contains a value.
108
- * Returs false for null, undefined, or a zero-length strng, '',
109
- * otherwise returns true.
110
- * (Stricter than 'isDefined' because it also returns false for '',
111
- * though it stil returns true for otherwise 'falsey' values 0 and false.)
112
- *
113
- * // value - the value to check
114
- * // { boolean } - false if undefined, null, or '', otherwise true
115
- */
116
- function hasValue(value) {
117
- return value !== undefined && value !== null && value !== '';
118
- }
119
- /**
120
- * 'isEmpty' utility function
121
- *
122
- * Similar to !hasValue, but also returns true for empty arrays and objects.
123
- *
124
- * // value - the value to check
125
- * // { boolean } - false if undefined, null, or '', otherwise true
126
- */
127
- function isEmpty(value) {
128
- if (isArray(value)) {
129
- return !value.length;
130
- }
131
- if (isObject(value)) {
132
- return !Object.keys(value).length;
133
- }
134
- return value === undefined || value === null || value === '';
135
- }
136
- /**
137
- * 'isString' utility function
138
- *
139
- * Checks if a value is a string.
140
- *
141
- * // value - the value to check
142
- * // { boolean } - true if string, false if not
143
- */
144
- function isString(value) {
145
- return typeof value === 'string';
146
- }
147
- /**
148
- * 'isNumber' utility function
149
- *
150
- * Checks if a value is a regular number, numeric string, or JavaScript Date.
151
- *
152
- * // value - the value to check
153
- * // { any = false } strict - if truthy, also checks JavaScript tyoe
154
- * // { boolean } - true if number, false if not
155
- */
156
- function isNumber(value, strict = false) {
157
- if (strict && typeof value !== 'number') {
158
- return false;
159
- }
160
- return !isNaN(value) && value !== value / 0;
161
- }
162
- /**
163
- * 'isInteger' utility function
164
- *
165
- * Checks if a value is an integer.
166
- *
167
- * // value - the value to check
168
- * // { any = false } strict - if truthy, also checks JavaScript tyoe
169
- * // {boolean } - true if number, false if not
170
- */
171
- function isInteger(value, strict = false) {
172
- if (strict && typeof value !== 'number') {
173
- return false;
174
- }
175
- return !isNaN(value) && value !== value / 0 && value % 1 === 0;
176
- }
177
- /**
178
- * 'isBoolean' utility function
179
- *
180
- * Checks if a value is a boolean.
181
- *
182
- * // value - the value to check
183
- * // { any = null } option - if 'strict', also checks JavaScript type
184
- * if TRUE or FALSE, checks only for that value
185
- * // { boolean } - true if boolean, false if not
186
- */
187
- function isBoolean(value, option = null) {
188
- if (option === 'strict') {
189
- return value === true || value === false;
190
- }
191
- if (option === true) {
192
- return value === true || value === 1 || value === 'true' || value === '1';
193
- }
194
- if (option === false) {
195
- return value === false || value === 0 || value === 'false' || value === '0';
23
+ class Framework {
24
+ constructor() {
25
+ this.widgets = {};
26
+ this.stylesheets = [];
27
+ this.scripts = [];
196
28
  }
197
- return value === true || value === 1 || value === 'true' || value === '1' ||
198
- value === false || value === 0 || value === 'false' || value === '0';
199
- }
200
- function isFunction(item) {
201
- return typeof item === 'function';
202
- }
203
- function isObject(item) {
204
- return item !== null && typeof item === 'object';
205
- }
206
- function isArray(item) {
207
- return Array.isArray(item);
208
- }
209
- function isDate(item) {
210
- return !!item && Object.prototype.toString.call(item) === '[object Date]';
211
- }
212
- function isMap(item) {
213
- return !!item && Object.prototype.toString.call(item) === '[object Map]';
214
- }
215
- function isSet(item) {
216
- return !!item && Object.prototype.toString.call(item) === '[object Set]';
217
- }
218
- function isSymbol(item) {
219
- return typeof item === 'symbol';
29
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
30
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework }); }
220
31
  }
221
- /**
222
- * 'getType' function
223
- *
224
- * Detects the JSON Schema Type of a value.
225
- * By default, detects numbers and integers even if formatted as strings.
226
- * (So all integers are also numbers, and any number may also be a string.)
227
- * However, it only detects true boolean values (to detect boolean values
228
- * in non-boolean formats, use isBoolean() instead).
229
- *
230
- * If passed a second optional parameter of 'strict', it will only detect
231
- * numbers and integers if they are formatted as JavaScript numbers.
232
- *
233
- * Examples:
234
- * getType('10.5') = 'number'
235
- * getType(10.5) = 'number'
236
- * getType('10') = 'integer'
237
- * getType(10) = 'integer'
238
- * getType('true') = 'string'
239
- * getType(true) = 'boolean'
240
- * getType(null) = 'null'
241
- * getType({ }) = 'object'
242
- * getType([]) = 'array'
243
- *
244
- * getType('10.5', 'strict') = 'string'
245
- * getType(10.5, 'strict') = 'number'
246
- * getType('10', 'strict') = 'string'
247
- * getType(10, 'strict') = 'integer'
248
- * getType('true', 'strict') = 'string'
249
- * getType(true, 'strict') = 'boolean'
250
- *
251
- * // value - value to check
252
- * // { any = false } strict - if truthy, also checks JavaScript tyoe
253
- * // { SchemaType }
254
- */
255
- function getType(value, strict = false) {
256
- if (!isDefined(value)) {
257
- return 'null';
258
- }
259
- if (isArray(value)) {
260
- return 'array';
261
- }
262
- if (isObject(value)) {
263
- return 'object';
264
- }
265
- if (isBoolean(value, 'strict')) {
266
- return 'boolean';
267
- }
268
- if (isInteger(value, strict)) {
269
- return 'integer';
270
- }
271
- if (isNumber(value, strict)) {
272
- return 'number';
273
- }
274
- if (isString(value) || (!strict && isDate(value))) {
275
- return 'string';
276
- }
277
- return null;
278
- }
279
- /**
280
- * 'isType' function
281
- *
282
- * Checks wether an input (probably string) value contains data of
283
- * a specified JSON Schema type
284
- *
285
- * // { PrimitiveValue } value - value to check
286
- * // { SchemaPrimitiveType } type - type to check
287
- * // { boolean }
288
- */
289
- function isType(value, type) {
290
- switch (type) {
291
- case 'string':
292
- return isString(value) || isDate(value);
293
- case 'number':
294
- return isNumber(value);
295
- case 'integer':
296
- return isInteger(value);
297
- case 'boolean':
298
- return isBoolean(value);
299
- case 'null':
300
- return !hasValue(value);
301
- default:
302
- console.error(`isType error: "${type}" is not a recognized type.`);
303
- return null;
304
- }
305
- }
306
- /**
307
- * 'isPrimitive' function
308
- *
309
- * Checks wether an input value is a JavaScript primitive type:
310
- * string, number, boolean, or null.
311
- *
312
- * // value - value to check
313
- * // { boolean }
314
- */
315
- function isPrimitive(value) {
316
- return (isString(value) || isNumber(value) ||
317
- isBoolean(value, 'strict') || value === null);
318
- }
319
- /**
320
- *
321
- * @param date
322
- * @returns {string}
323
- * exmaple:
324
- * toDateString('2018-01-01') = '2018-01-01'
325
- * toDateString('2018-01-30T00:00:00.000Z') = '2018-01-30'
326
- */
327
- const toIsoString = (date) => {
328
- const day = date.getDate();
329
- const month = date.getMonth() + 1;
330
- const year = date.getFullYear();
331
- return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;
332
- };
333
- /**
334
- * 'toJavaScriptType' function
335
- *
336
- * Converts an input (probably string) value to a JavaScript primitive type -
337
- * 'string', 'number', 'boolean', or 'null' - before storing in a JSON object.
338
- *
339
- * Does not coerce values (other than null), and only converts the types
340
- * of values that would otherwise be valid.
341
- *
342
- * If the optional third parameter 'strictIntegers' is TRUE, and the
343
- * JSON Schema type 'integer' is specified, it also verifies the input value
344
- * is an integer and, if it is, returns it as a JaveScript number.
345
- * If 'strictIntegers' is FALSE (or not set) the type 'integer' is treated
346
- * exactly the same as 'number', and allows decimals.
347
- *
348
- * Valid Examples:
349
- * toJavaScriptType('10', 'number' ) = 10 // '10' is a number
350
- * toJavaScriptType('10', 'integer') = 10 // '10' is also an integer
351
- * toJavaScriptType( 10, 'integer') = 10 // 10 is still an integer
352
- * toJavaScriptType( 10, 'string' ) = '10' // 10 can be made into a string
353
- * toJavaScriptType('10.5', 'number' ) = 10.5 // '10.5' is a number
354
- *
355
- * Invalid Examples:
356
- * toJavaScriptType('10.5', 'integer') = null // '10.5' is not an integer
357
- * toJavaScriptType( 10.5, 'integer') = null // 10.5 is still not an integer
358
- *
359
- * // { PrimitiveValue } value - value to convert
360
- * // { SchemaPrimitiveType | SchemaPrimitiveType[] } types - types to convert to
361
- * // { boolean = false } strictIntegers - if FALSE, treat integers as numbers
362
- * // { PrimitiveValue }
363
- */
364
- function toJavaScriptType(value, types, strictIntegers = true) {
365
- if (!isDefined(value)) {
366
- return null;
367
- }
368
- if (isString(types)) {
369
- types = [types];
370
- }
371
- if (strictIntegers && inArray('integer', types)) {
372
- if (isInteger(value, 'strict')) {
373
- return value;
374
- }
375
- if (isInteger(value)) {
376
- return parseInt(value, 10);
377
- }
378
- }
379
- if (inArray('number', types) || (!strictIntegers && inArray('integer', types))) {
380
- if (isNumber(value, 'strict')) {
381
- return value;
382
- }
383
- if (isNumber(value)) {
384
- return parseFloat(value);
32
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework, decorators: [{
33
+ type: Injectable
34
+ }] });
35
+
36
+ const deValidationMessages = {
37
+ required: 'Darf nicht leer sein',
38
+ minLength: 'Mindestens {{minimumLength}} Zeichen benötigt (aktuell: {{currentLength}})',
39
+ maxLength: 'Maximal {{maximumLength}} Zeichen erlaubt (aktuell: {{currentLength}})',
40
+ pattern: 'Entspricht nicht diesem regulären Ausdruck: {{requiredPattern}}',
41
+ format: function (error) {
42
+ switch (error.requiredFormat) {
43
+ case 'date':
44
+ return 'Muss ein Datum sein, z. B. "2000-12-31"';
45
+ case 'time':
46
+ return 'Muss eine Zeitangabe sein, z. B. "16:20" oder "03:14:15.9265"';
47
+ case 'date-time':
48
+ return 'Muss Datum mit Zeit beinhalten, z. B. "2000-03-14T01:59" oder "2000-03-14T01:59:26.535Z"';
49
+ case 'email':
50
+ return 'Keine gültige E-Mail-Adresse (z. B. "name@example.com")';
51
+ case 'hostname':
52
+ return 'Kein gültiger Hostname (z. B. "example.com")';
53
+ case 'ipv4':
54
+ return 'Keine gültige IPv4-Adresse (z. B. "127.0.0.1")';
55
+ case 'ipv6':
56
+ return 'Keine gültige IPv6-Adresse (z. B. "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0")';
57
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
58
+ // case 'uri': case 'uri-reference': case 'uri-template':
59
+ case 'url':
60
+ return 'Keine gültige URL (z. B. "http://www.example.com/page.html")';
61
+ case 'uuid':
62
+ return 'Keine gültige UUID (z. B. "12345678-9ABC-DEF0-1234-56789ABCDEF0")';
63
+ case 'color':
64
+ return 'Kein gültiger Farbwert (z. B. "#FFFFFF" oder "rgb(255, 255, 255)")';
65
+ case 'json-pointer':
66
+ return 'Kein gültiger JSON-Pointer (z. B. "/pointer/to/something")';
67
+ case 'relative-json-pointer':
68
+ return 'Kein gültiger relativer JSON-Pointer (z. B. "2/pointer/to/something")';
69
+ case 'regex':
70
+ return 'Kein gültiger regulärer Ausdruck (z. B. "(1-)?\\d{3}-\\d{3}-\\d{4}")';
71
+ default:
72
+ return 'Muss diesem Format entsprechen: ' + error.requiredFormat;
385
73
  }
386
- }
387
- if (inArray('string', types)) {
388
- if (isString(value)) {
389
- return value;
74
+ },
75
+ minimum: 'Muss mindestens {{minimumValue}} sein',
76
+ exclusiveMinimum: 'Muss größer als {{exclusiveMinimumValue}} sein',
77
+ maximum: 'Darf maximal {{maximumValue}} sein',
78
+ exclusiveMaximum: 'Muss kleiner als {{exclusiveMaximumValue}} sein',
79
+ multipleOf: function (error) {
80
+ if ((1 / error.multipleOfValue) % 10 === 0) {
81
+ const decimals = Math.log10(1 / error.multipleOfValue);
82
+ return `Maximal ${decimals} Dezimalstellen erlaubt`;
390
83
  }
391
- // If value is a date, and types includes 'string',
392
- // convert the date to a string
393
- if (isDate(value)) {
394
- return toIsoString(value);
84
+ else {
85
+ return `Muss ein Vielfaches von ${error.multipleOfValue} sein`;
395
86
  }
396
- if (isNumber(value)) {
397
- return value.toString();
87
+ },
88
+ minProperties: 'Mindestens {{minimumProperties}} Attribute erforderlich (aktuell: {{currentProperties}})',
89
+ maxProperties: 'Maximal {{maximumProperties}} Attribute erlaubt (aktuell: {{currentProperties}})',
90
+ minItems: 'Mindestens {{minimumItems}} Werte erforderlich (aktuell: {{currentItems}})',
91
+ maxItems: 'Maximal {{maximumItems}} Werte erlaubt (aktuell: {{currentItems}})',
92
+ uniqueItems: 'Alle Werte müssen eindeutig sein',
93
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
94
+ };
95
+
96
+ const enValidationMessages = {
97
+ required: 'This field is required.',
98
+ minLength: 'Must be {{minimumLength}} characters or longer (current length: {{currentLength}})',
99
+ maxLength: 'Must be {{maximumLength}} characters or shorter (current length: {{currentLength}})',
100
+ pattern: 'Must match pattern: {{requiredPattern}}',
101
+ format: function (error) {
102
+ switch (error.requiredFormat) {
103
+ case 'date':
104
+ return 'Must be a date, like "2000-12-31"';
105
+ case 'time':
106
+ return 'Must be a time, like "16:20" or "03:14:15.9265"';
107
+ case 'date-time':
108
+ return 'Must be a date-time, like "2000-03-14T01:59" or "2000-03-14T01:59:26.535Z"';
109
+ case 'email':
110
+ return 'Must be an email address, like "name@example.com"';
111
+ case 'hostname':
112
+ return 'Must be a hostname, like "example.com"';
113
+ case 'ipv4':
114
+ return 'Must be an IPv4 address, like "127.0.0.1"';
115
+ case 'ipv6':
116
+ return 'Must be an IPv6 address, like "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
117
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
118
+ // case 'uri': case 'uri-reference': case 'uri-template':
119
+ case 'url':
120
+ return 'Must be a url, like "http://www.example.com/page.html"';
121
+ case 'uuid':
122
+ return 'Must be a uuid, like "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
123
+ case 'color':
124
+ return 'Must be a color, like "#FFFFFF" or "rgb(255, 255, 255)"';
125
+ case 'json-pointer':
126
+ return 'Must be a JSON Pointer, like "/pointer/to/something"';
127
+ case 'relative-json-pointer':
128
+ return 'Must be a relative JSON Pointer, like "2/pointer/to/something"';
129
+ case 'regex':
130
+ return 'Must be a regular expression, like "(1-)?\\d{3}-\\d{3}-\\d{4}"';
131
+ default:
132
+ return 'Must be a correctly formatted ' + error.requiredFormat;
398
133
  }
399
- }
400
- // If value is a date, and types includes 'integer' or 'number',
401
- // but not 'string', convert the date to a number
402
- if (isDate(value) && (inArray('integer', types) || inArray('number', types))) {
403
- return value.getTime();
404
- }
405
- if (inArray('boolean', types)) {
406
- if (isBoolean(value, true)) {
407
- return true;
134
+ },
135
+ minimum: 'Must be {{minimumValue}} or more',
136
+ exclusiveMinimum: 'Must be more than {{exclusiveMinimumValue}}',
137
+ maximum: 'Must be {{maximumValue}} or less',
138
+ exclusiveMaximum: 'Must be less than {{exclusiveMaximumValue}}',
139
+ multipleOf: function (error) {
140
+ if ((1 / error.multipleOfValue) % 10 === 0) {
141
+ const decimals = Math.log10(1 / error.multipleOfValue);
142
+ return `Must have ${decimals} or fewer decimal places.`;
408
143
  }
409
- if (isBoolean(value, false)) {
410
- return false;
144
+ else {
145
+ return `Must be a multiple of ${error.multipleOfValue}.`;
411
146
  }
412
- }
413
- return null;
414
- }
415
- /**
416
- * 'toSchemaType' function
417
- *
418
- * Converts an input (probably string) value to the "best" JavaScript
419
- * equivalent available from an allowed list of JSON Schema types, which may
420
- * contain 'string', 'number', 'integer', 'boolean', and/or 'null'.
421
- * If necssary, it does progressively agressive type coersion.
422
- * It will not return null unless null is in the list of allowed types.
423
- *
424
- * Number conversion examples:
425
- * toSchemaType('10', ['number','integer','string']) = 10 // integer
426
- * toSchemaType('10', ['number','string']) = 10 // number
427
- * toSchemaType('10', ['string']) = '10' // string
428
- * toSchemaType('10.5', ['number','integer','string']) = 10.5 // number
429
- * toSchemaType('10.5', ['integer','string']) = '10.5' // string
430
- * toSchemaType('10.5', ['integer']) = 10 // integer
431
- * toSchemaType(10.5, ['null','boolean','string']) = '10.5' // string
432
- * toSchemaType(10.5, ['null','boolean']) = true // boolean
433
- *
434
- * String conversion examples:
435
- * toSchemaType('1.5x', ['boolean','number','integer','string']) = '1.5x' // string
436
- * toSchemaType('1.5x', ['boolean','number','integer']) = '1.5' // number
437
- * toSchemaType('1.5x', ['boolean','integer']) = '1' // integer
438
- * toSchemaType('1.5x', ['boolean']) = true // boolean
439
- * toSchemaType('xyz', ['number','integer','boolean','null']) = true // boolean
440
- * toSchemaType('xyz', ['number','integer','null']) = null // null
441
- * toSchemaType('xyz', ['number','integer']) = 0 // number
442
- *
443
- * Boolean conversion examples:
444
- * toSchemaType('1', ['integer','number','string','boolean']) = 1 // integer
445
- * toSchemaType('1', ['number','string','boolean']) = 1 // number
446
- * toSchemaType('1', ['string','boolean']) = '1' // string
447
- * toSchemaType('1', ['boolean']) = true // boolean
448
- * toSchemaType('true', ['number','string','boolean']) = 'true' // string
449
- * toSchemaType('true', ['boolean']) = true // boolean
450
- * toSchemaType('true', ['number']) = 0 // number
451
- * toSchemaType(true, ['number','string','boolean']) = true // boolean
452
- * toSchemaType(true, ['number','string']) = 'true' // string
453
- * toSchemaType(true, ['number']) = 1 // number
454
- *
455
- * // { PrimitiveValue } value - value to convert
456
- * // { SchemaPrimitiveType | SchemaPrimitiveType[] } types - allowed types to convert to
457
- * // { PrimitiveValue }
458
- */
459
- function toSchemaType(value, types) {
460
- if (!isArray(types)) {
461
- types = [types];
462
- }
463
- if (types.includes('null') && !hasValue(value)) {
464
- return null;
465
- }
466
- if (types.includes('boolean') && !isBoolean(value, 'strict')) {
467
- return value;
468
- }
469
- if (types.includes('integer')) {
470
- const testValue = toJavaScriptType(value, 'integer');
471
- if (testValue !== null) {
472
- return +testValue;
147
+ },
148
+ minProperties: 'Must have {{minimumProperties}} or more items (current items: {{currentProperties}})',
149
+ maxProperties: 'Must have {{maximumProperties}} or fewer items (current items: {{currentProperties}})',
150
+ minItems: 'Must have {{minimumItems}} or more items (current items: {{currentItems}})',
151
+ maxItems: 'Must have {{maximumItems}} or fewer items (current items: {{currentItems}})',
152
+ uniqueItems: 'All items must be unique',
153
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
154
+ };
155
+
156
+ const esValidationMessages = {
157
+ required: 'Este campo está requerido.',
158
+ minLength: 'Debe tener {{minimumLength}} caracteres o más longitud (longitud actual: {{currentLength}})',
159
+ maxLength: 'Debe tener {{maximumLength}} caracteres o menos longitud (longitud actual: {{currentLength}})',
160
+ pattern: 'Must match pattern: {{requiredPattern}}',
161
+ format: function (error) {
162
+ switch (error.requiredFormat) {
163
+ case 'date':
164
+ return 'Debe tener una fecha, ej "2000-12-31"';
165
+ case 'time':
166
+ return 'Debe tener una hora, ej "16:20" o "03:14:15.9265"';
167
+ case 'date-time':
168
+ return 'Debe tener fecha y hora, ej "2000-03-14T01:59" o "2000-03-14T01:59:26.535Z"';
169
+ case 'email':
170
+ return 'No hay dirección de correo electrónico válida, ej "name@example.com"';
171
+ case 'hostname':
172
+ return 'Debe ser un nombre de host válido, ej "example.com"';
173
+ case 'ipv4':
174
+ return 'Debe ser una dirección de IPv4, ej "127.0.0.1"';
175
+ case 'ipv6':
176
+ return 'Debe ser una dirección de IPv6, ej "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
177
+ case 'url':
178
+ return 'Debe ser una URL, ej "http://www.example.com/page.html"';
179
+ case 'uuid':
180
+ return 'Debe ser un UUID, ej "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
181
+ case 'color':
182
+ return 'Debe ser un color, ej "#FFFFFF" or "rgb(255, 255, 255)"';
183
+ case 'json-pointer':
184
+ return 'Debe ser un JSON Pointer, ej "/pointer/to/something"';
185
+ case 'relative-json-pointer':
186
+ return 'Debe ser un JSON Pointer relativo, ej "2/pointer/to/something"';
187
+ case 'regex':
188
+ return 'Debe ser una expresión regular, ej "(1-)?\\d{3}-\\d{3}-\\d{4}"';
189
+ default:
190
+ return 'Debe tener el formato correcto ' + error.requiredFormat;
473
191
  }
474
- }
475
- if (types.includes('number')) {
476
- const testValue = toJavaScriptType(value, 'number');
477
- if (testValue !== null) {
478
- return +testValue;
192
+ },
193
+ minimum: 'Debe ser {{minimumValue}} o más',
194
+ exclusiveMinimum: 'Debe ser superior a {{exclusiveMinimumValue}}',
195
+ maximum: 'Debe ser {{maximumValue}} o menos',
196
+ exclusiveMaximum: 'Debe ser menor que {{exclusiveMaximumValue}}',
197
+ multipleOf: function (error) {
198
+ if ((1 / error.multipleOfValue) % 10 === 0) {
199
+ const decimals = Math.log10(1 / error.multipleOfValue);
200
+ return `Se permite un máximo de ${decimals} decimales`;
479
201
  }
480
- }
481
- if ((isString(value) || isNumber(value, 'strict')) &&
482
- types.includes('string')) { // Convert number to string
483
- return toJavaScriptType(value, 'string');
484
- }
485
- if (types.includes('boolean') && isBoolean(value)) {
486
- return toJavaScriptType(value, 'boolean');
487
- }
488
- if (types.includes('string')) { // Convert null & boolean to string
489
- if (value === null) {
490
- return '';
202
+ else {
203
+ return `Debe ser múltiplo de ${error.multipleOfValue}.`;
491
204
  }
492
- const testValue = toJavaScriptType(value, 'string');
493
- if (testValue !== null) {
494
- return testValue;
205
+ },
206
+ minProperties: 'Debe tener {{minimumProperties}} o más elementos (elementos actuales: {{currentProperties}})',
207
+ maxProperties: 'Debe tener {{maximumProperties}} o menos elementos (elementos actuales: {{currentProperties}})',
208
+ minItems: 'Debe tener {{minimumItems}} o más elementos (elementos actuales: {{currentItems}})',
209
+ maxItems: 'Debe tener {{maximumItems}} o menos elementos (elementos actuales: {{currentItems}})',
210
+ uniqueItems: 'Todos los elementos deben ser únicos',
211
+ };
212
+
213
+ const frValidationMessages = {
214
+ required: 'Est obligatoire.',
215
+ minLength: 'Doit avoir minimum {{minimumLength}} caractères (actuellement: {{currentLength}})',
216
+ maxLength: 'Doit avoir maximum {{maximumLength}} caractères (actuellement: {{currentLength}})',
217
+ pattern: 'Doit respecter: {{requiredPattern}}',
218
+ format: function (error) {
219
+ switch (error.requiredFormat) {
220
+ case 'date':
221
+ return 'Doit être une date, tel que "2000-12-31"';
222
+ case 'time':
223
+ return 'Doit être une heure, tel que "16:20" ou "03:14:15.9265"';
224
+ case 'date-time':
225
+ return 'Doit être une date et une heure, tel que "2000-03-14T01:59" ou "2000-03-14T01:59:26.535Z"';
226
+ case 'email':
227
+ return 'Doit être une adresse e-mail, tel que "name@example.com"';
228
+ case 'hostname':
229
+ return 'Doit être un nom de domaine, tel que "example.com"';
230
+ case 'ipv4':
231
+ return 'Doit être une adresse IPv4, tel que "127.0.0.1"';
232
+ case 'ipv6':
233
+ return 'Doit être une adresse IPv6, tel que "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
234
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
235
+ // case 'uri': case 'uri-reference': case 'uri-template':
236
+ case 'url':
237
+ return 'Doit être une URL, tel que "http://www.example.com/page.html"';
238
+ case 'uuid':
239
+ return 'Doit être un UUID, tel que "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
240
+ case 'color':
241
+ return 'Doit être une couleur, tel que "#FFFFFF" or "rgb(255, 255, 255)"';
242
+ case 'json-pointer':
243
+ return 'Doit être un JSON Pointer, tel que "/pointer/to/something"';
244
+ case 'relative-json-pointer':
245
+ return 'Doit être un relative JSON Pointer, tel que "2/pointer/to/something"';
246
+ case 'regex':
247
+ return 'Doit être une expression régulière, tel que "(1-)?\\d{3}-\\d{3}-\\d{4}"';
248
+ default:
249
+ return 'Doit être avoir le format correct: ' + error.requiredFormat;
495
250
  }
496
- }
497
- if ((types.includes('number') ||
498
- types.includes('integer'))) {
499
- if (value === true) {
500
- return 1;
501
- } // Convert boolean & null to number
502
- if (value === false || value === null || value === '') {
503
- return 0;
251
+ },
252
+ minimum: 'Doit être supérieur à {{minimumValue}}',
253
+ exclusiveMinimum: 'Doit avoir minimum {{exclusiveMinimumValue}} charactères',
254
+ maximum: 'Doit être inférieur à {{maximumValue}}',
255
+ exclusiveMaximum: 'Doit avoir maximum {{exclusiveMaximumValue}} charactères',
256
+ multipleOf: function (error) {
257
+ if ((1 / error.multipleOfValue) % 10 === 0) {
258
+ const decimals = Math.log10(1 / error.multipleOfValue);
259
+ return `Doit comporter ${decimals} ou moins de decimales.`;
504
260
  }
505
- }
506
- if (types.includes('number')) { // Convert mixed string to number
507
- const testValue = parseFloat(value);
508
- if (!!testValue) {
509
- return testValue;
261
+ else {
262
+ return `Doit être un multiple de ${error.multipleOfValue}.`;
510
263
  }
511
- }
512
- if (types.includes('integer')) { // Convert string or number to integer
513
- const testValue = parseInt(value, 10);
514
- if (!!testValue) {
515
- return testValue;
264
+ },
265
+ minProperties: 'Doit comporter au minimum {{minimumProperties}} éléments',
266
+ maxProperties: 'Doit comporter au maximum {{maximumProperties}} éléments',
267
+ minItems: 'Doit comporter au minimum {{minimumItems}} éléments',
268
+ maxItems: 'Doit comporter au maximum {{minimumItems}} éléments',
269
+ uniqueItems: 'Tous les éléments doivent être uniques',
270
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
271
+ };
272
+
273
+ const itValidationMessages = {
274
+ required: 'Il campo è obbligatorio',
275
+ minLength: 'Deve inserire almeno {{minimumLength}} caratteri (lunghezza corrente: {{currentLength}})',
276
+ maxLength: 'Il numero massimo di caratteri consentito è {{maximumLength}} (lunghezza corrente: {{currentLength}})',
277
+ pattern: 'Devi rispettare il pattern : {{requiredPattern}}',
278
+ format: function (error) {
279
+ switch (error.requiredFormat) {
280
+ case 'date':
281
+ return 'Deve essere una data, come "31-12-2000"';
282
+ case 'time':
283
+ return 'Deve essere un orario, come "16:20" o "03:14:15.9265"';
284
+ case 'date-time':
285
+ return 'Deve essere data-orario, come "14-03-2000T01:59" or "14-03-2000T01:59:26.535Z"';
286
+ case 'email':
287
+ return 'Deve essere un indirzzo email, come "name@example.com"';
288
+ case 'hostname':
289
+ return 'Deve essere un hostname, come "example.com"';
290
+ case 'ipv4':
291
+ return 'Deve essere un indirizzo IPv4, come "127.0.0.1"';
292
+ case 'ipv6':
293
+ return 'Deve essere un indirizzo IPv6, come "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
294
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
295
+ // case 'uri': case 'uri-reference': case 'uri-template':
296
+ case 'url':
297
+ return 'Deve essere un url, come "http://www.example.com/page.html"';
298
+ case 'uuid':
299
+ return 'Deve essere un uuid, come "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
300
+ case 'color':
301
+ return 'Deve essere un colore, come "#FFFFFF" o "rgb(255, 255, 255)"';
302
+ case 'json-pointer':
303
+ return 'Deve essere un JSON Pointer, come "/pointer/to/something"';
304
+ case 'relative-json-pointer':
305
+ return 'Deve essere un JSON Pointer relativo, come "2/pointer/to/something"';
306
+ case 'regex':
307
+ return 'Deve essere una regular expression, come "(1-)?\\d{3}-\\d{3}-\\d{4}"';
308
+ default:
309
+ return 'Deve essere formattato correttamente ' + error.requiredFormat;
516
310
  }
517
- }
518
- if (types.includes('boolean')) { // Convert anything to boolean
519
- return !!value;
520
- }
521
- if ((types.includes('number') ||
522
- types.includes('integer')) && !types.includes('null')) {
523
- return 0; // If null not allowed, return 0 for non-convertable values
524
- }
525
- }
311
+ },
312
+ minimum: 'Deve essere {{minimumValue}} o più',
313
+ exclusiveMinimum: 'Deve essere più di {{exclusiveMinimumValue}}',
314
+ maximum: 'Deve essere {{maximumValue}} o meno',
315
+ exclusiveMaximum: 'Deve essere minore di {{exclusiveMaximumValue}}',
316
+ multipleOf: function (error) {
317
+ if ((1 / error.multipleOfValue) % 10 === 0) {
318
+ const decimals = Math.log10(1 / error.multipleOfValue);
319
+ return `Deve avere ${decimals} o meno decimali.`;
320
+ }
321
+ else {
322
+ return `Deve essere multiplo di ${error.multipleOfValue}.`;
323
+ }
324
+ },
325
+ minProperties: 'Deve avere {{minimumProperties}} o più elementi (elementi correnti: {{currentProperties}})',
326
+ maxProperties: 'Deve avere {{maximumProperties}} o meno elementi (elementi correnti: {{currentProperties}})',
327
+ minItems: 'Deve avere {{minimumItems}} o più elementi (elementi correnti: {{currentItems}})',
328
+ maxItems: 'Deve avere {{maximumItems}} o meno elementi (elementi correnti: {{currentItems}})',
329
+ uniqueItems: 'Tutti gli elementi devono essere unici',
330
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
331
+ };
332
+
333
+ const ptValidationMessages = {
334
+ required: 'Este campo é obrigatório.',
335
+ minLength: 'É preciso no mínimo {{minimumLength}} caracteres ou mais (tamanho atual: {{currentLength}})',
336
+ maxLength: 'É preciso no máximo {{maximumLength}} caracteres ou menos (tamanho atual: {{currentLength}})',
337
+ pattern: 'Tem que ajustar ao formato: {{requiredPattern}}',
338
+ format: function (error) {
339
+ switch (error.requiredFormat) {
340
+ case 'date':
341
+ return 'Tem que ser uma data, por exemplo "2000-12-31"';
342
+ case 'time':
343
+ return 'Tem que ser horário, por exemplo "16:20" ou "03:14:15.9265"';
344
+ case 'date-time':
345
+ return 'Tem que ser data e hora, por exemplo "2000-03-14T01:59" ou "2000-03-14T01:59:26.535Z"';
346
+ case 'email':
347
+ return 'Tem que ser um email, por exemplo "fulano@exemplo.com.br"';
348
+ case 'hostname':
349
+ return 'Tem que ser uma nome de domínio, por exemplo "exemplo.com.br"';
350
+ case 'ipv4':
351
+ return 'Tem que ser um endereço IPv4, por exemplo "127.0.0.1"';
352
+ case 'ipv6':
353
+ return 'Tem que ser um endereço IPv6, por exemplo "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
354
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
355
+ // case 'uri': case 'uri-reference': case 'uri-template':
356
+ case 'url':
357
+ return 'Tem que ser uma URL, por exemplo "http://www.exemplo.com.br/pagina.html"';
358
+ case 'uuid':
359
+ return 'Tem que ser um uuid, por exemplo "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
360
+ case 'color':
361
+ return 'Tem que ser uma cor, por exemplo "#FFFFFF" ou "rgb(255, 255, 255)"';
362
+ case 'json-pointer':
363
+ return 'Tem que ser um JSON Pointer, por exemplo "/referencia/para/algo"';
364
+ case 'relative-json-pointer':
365
+ return 'Tem que ser um JSON Pointer relativo, por exemplo "2/referencia/para/algo"';
366
+ case 'regex':
367
+ return 'Tem que ser uma expressão regular, por exemplo "(1-)?\\d{3}-\\d{3}-\\d{4}"';
368
+ default:
369
+ return 'Tem que ser no formato: ' + error.requiredFormat;
370
+ }
371
+ },
372
+ minimum: 'Tem que ser {{minimumValue}} ou mais',
373
+ exclusiveMinimum: 'Tem que ser mais que {{exclusiveMinimumValue}}',
374
+ maximum: 'Tem que ser {{maximumValue}} ou menos',
375
+ exclusiveMaximum: 'Tem que ser menor que {{exclusiveMaximumValue}}',
376
+ multipleOf: function (error) {
377
+ if ((1 / error.multipleOfValue) % 10 === 0) {
378
+ const decimals = Math.log10(1 / error.multipleOfValue);
379
+ return `Tem que ter ${decimals} ou menos casas decimais.`;
380
+ }
381
+ else {
382
+ return `Tem que ser um múltiplo de ${error.multipleOfValue}.`;
383
+ }
384
+ },
385
+ minProperties: 'Deve ter {{minimumProperties}} ou mais itens (itens até o momento: {{currentProperties}})',
386
+ maxProperties: 'Deve ter {{maximumProperties}} ou menos intens (itens até o momento: {{currentProperties}})',
387
+ minItems: 'Deve ter {{minimumItems}} ou mais itens (itens até o momento: {{currentItems}})',
388
+ maxItems: 'Deve ter {{maximumItems}} ou menos itens (itens até o momento: {{currentItems}})',
389
+ uniqueItems: 'Todos os itens devem ser únicos',
390
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
391
+ };
392
+
393
+ const zhValidationMessages = {
394
+ required: '必填字段.',
395
+ minLength: '字符长度必须大于或者等于 {{minimumLength}} (当前长度: {{currentLength}})',
396
+ maxLength: '字符长度必须小于或者等于 {{maximumLength}} (当前长度: {{currentLength}})',
397
+ pattern: '必须匹配正则表达式: {{requiredPattern}}',
398
+ format: function (error) {
399
+ switch (error.requiredFormat) {
400
+ case 'date':
401
+ return '必须为日期格式, 比如 "2000-12-31"';
402
+ case 'time':
403
+ return '必须为时间格式, 比如 "16:20" 或者 "03:14:15.9265"';
404
+ case 'date-time':
405
+ return '必须为日期时间格式, 比如 "2000-03-14T01:59" 或者 "2000-03-14T01:59:26.535Z"';
406
+ case 'email':
407
+ return '必须为邮箱地址, 比如 "name@example.com"';
408
+ case 'hostname':
409
+ return '必须为主机名, 比如 "example.com"';
410
+ case 'ipv4':
411
+ return '必须为 IPv4 地址, 比如 "127.0.0.1"';
412
+ case 'ipv6':
413
+ return '必须为 IPv6 地址, 比如 "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
414
+ // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
415
+ // case 'uri': case 'uri-reference': case 'uri-template':
416
+ case 'url':
417
+ return '必须为 url, 比如 "http://www.example.com/page.html"';
418
+ case 'uuid':
419
+ return '必须为 uuid, 比如 "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
420
+ case 'color':
421
+ return '必须为颜色值, 比如 "#FFFFFF" 或者 "rgb(255, 255, 255)"';
422
+ case 'json-pointer':
423
+ return '必须为 JSON Pointer, 比如 "/pointer/to/something"';
424
+ case 'relative-json-pointer':
425
+ return '必须为相对的 JSON Pointer, 比如 "2/pointer/to/something"';
426
+ case 'regex':
427
+ return '必须为正则表达式, 比如 "(1-)?\\d{3}-\\d{3}-\\d{4}"';
428
+ default:
429
+ return '必须为格式正确的 ' + error.requiredFormat;
430
+ }
431
+ },
432
+ minimum: '必须大于或者等于最小值: {{minimumValue}}',
433
+ exclusiveMinimum: '必须大于最小值: {{exclusiveMinimumValue}}',
434
+ maximum: '必须小于或者等于最大值: {{maximumValue}}',
435
+ exclusiveMaximum: '必须小于最大值: {{exclusiveMaximumValue}}',
436
+ multipleOf: function (error) {
437
+ if ((1 / error.multipleOfValue) % 10 === 0) {
438
+ const decimals = Math.log10(1 / error.multipleOfValue);
439
+ return `必须有 ${decimals} 位或更少的小数位`;
440
+ }
441
+ else {
442
+ return `必须为 ${error.multipleOfValue} 的倍数`;
443
+ }
444
+ },
445
+ minProperties: '项目数必须大于或者等于 {{minimumProperties}} (当前项目数: {{currentProperties}})',
446
+ maxProperties: '项目数必须小于或者等于 {{maximumProperties}} (当前项目数: {{currentProperties}})',
447
+ minItems: '项目数必须大于或者等于 {{minimumItems}} (当前项目数: {{currentItems}})',
448
+ maxItems: '项目数必须小于或者等于 {{maximumItems}} (当前项目数: {{currentItems}})',
449
+ uniqueItems: '所有项目必须是唯一的',
450
+ // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
451
+ };
452
+
526
453
  /**
527
- * 'isPromise' function
454
+ * '_executeValidators' utility function
528
455
  *
529
- * // object
530
- * // { boolean }
531
- */
532
- function isPromise(object) {
533
- return !!object && typeof object.then === 'function';
534
- }
535
- /**
536
- * 'isObservable' function
456
+ * Validates a control against an array of validators, and returns
457
+ * an array of the same length containing a combination of error messages
458
+ * (from invalid validators) and null values (from valid validators)
537
459
  *
538
- * // object
539
- * // { boolean }
460
+ * // { AbstractControl } control - control to validate
461
+ * // { IValidatorFn[] } validators - array of validators
462
+ * // { boolean } invert - invert?
463
+ * // { PlainObject[] } - array of nulls and error message
540
464
  */
541
- function isObservable(object) {
542
- return !!object && typeof object.subscribe === 'function';
465
+ function _executeValidators(control, validators, invert = false) {
466
+ return validators.map(validator => validator(control, invert));
543
467
  }
544
468
  /**
545
- * '_toPromise' function
469
+ * '_executeAsyncValidators' utility function
546
470
  *
547
- * // { object } object
548
- * // { Promise<any> }
549
- */
550
- function _toPromise(object) {
551
- return isPromise(object) ? object : object.toPromise();
552
- }
553
- /**
554
- * 'toObservable' function
471
+ * Validates a control against an array of async validators, and returns
472
+ * an array of observabe results of the same length containing a combination of
473
+ * error messages (from invalid validators) and null values (from valid ones)
555
474
  *
556
- * // { object } object
557
- * // { Observable<any> }
475
+ * // { AbstractControl } control - control to validate
476
+ * // { AsyncIValidatorFn[] } validators - array of async validators
477
+ * // { boolean } invert - invert?
478
+ * // - array of observable nulls and error message
558
479
  */
559
- function toObservable(object) {
560
- const observable = isPromise(object) ? from(object) : object;
561
- if (isObservable(observable)) {
562
- return observable;
563
- }
564
- console.error('toObservable error: Expected validator to return Promise or Observable.');
565
- return new Observable();
480
+ function _executeAsyncValidators(control, validators, invert = false) {
481
+ return validators.map(validator => validator(control, invert));
566
482
  }
567
483
  /**
568
- * 'inArray' function
569
- *
570
- * Searches an array for an item, or one of a list of items, and returns true
571
- * as soon as a match is found, or false if no match.
484
+ * '_mergeObjects' utility function
572
485
  *
573
- * If the optional third parameter allIn is set to TRUE, and the item to find
574
- * is an array, then the function returns true only if all elements from item
575
- * are found in the array list, and false if any element is not found. If the
576
- * item to find is not an array, setting allIn to TRUE has no effect.
486
+ * Recursively Merges one or more objects into a single object with combined keys.
487
+ * Automatically detects and ignores null and undefined inputs.
488
+ * Also detects duplicated boolean 'not' keys and XORs their values.
577
489
  *
578
- * // { any|any[] } item - the item to search for
579
- * // array - the array to search
580
- * // { boolean = false } allIn - if TRUE, all items must be in array
581
- * // { boolean } - true if item(s) in array, false otherwise
490
+ * // { PlainObject[] } objects - one or more objects to merge
491
+ * // { PlainObject } - merged object
582
492
  */
583
- function inArray(item, array, allIn = false) {
584
- if (!isDefined(item) || !isArray(array)) {
585
- return false;
493
+ function _mergeObjects(...objects) {
494
+ const mergedObject = {};
495
+ for (const currentObject of objects) {
496
+ if (isObject(currentObject)) {
497
+ for (const key of Object.keys(currentObject)) {
498
+ const currentValue = currentObject[key];
499
+ const mergedValue = mergedObject[key];
500
+ mergedObject[key] = !isDefined(mergedValue) ? currentValue :
501
+ key === 'not' && isBoolean(mergedValue, 'strict') &&
502
+ isBoolean(currentValue, 'strict') ? xor(mergedValue, currentValue) :
503
+ getType(mergedValue) === 'object' && getType(currentValue) === 'object' ?
504
+ _mergeObjects(mergedValue, currentValue) :
505
+ currentValue;
506
+ }
507
+ }
586
508
  }
587
- return isArray(item) ?
588
- item[allIn ? 'every' : 'some'](subItem => array.includes(subItem)) :
589
- array.includes(item);
509
+ return mergedObject;
590
510
  }
591
511
  /**
592
- * 'xor' utility function - exclusive or
512
+ * '_mergeErrors' utility function
593
513
  *
594
- * Returns true if exactly one of two values is truthy.
514
+ * Merges an array of objects.
515
+ * Used for combining the validator errors returned from 'executeValidators'
595
516
  *
596
- * // value1 - first value to check
597
- * // value2 - second value to check
598
- * // { boolean } - true if exactly one input value is truthy, false if not
517
+ * // { PlainObject[] } arrayOfErrors - array of objects
518
+ * // { PlainObject } - merged object, or null if no usable input objectcs
599
519
  */
600
- function xor(value1, value2) {
601
- return (!!value1 && !value2) || (!value1 && !!value2);
520
+ function _mergeErrors(arrayOfErrors) {
521
+ const mergedErrors = _mergeObjects(...arrayOfErrors);
522
+ return isEmpty(mergedErrors) ? null : mergedErrors;
602
523
  }
603
-
604
524
  /**
605
- * Utility function library:
525
+ * 'isDefined' utility function
606
526
  *
607
- * addClasses, copy, forEach, forEachCopy, hasOwn, mergeFilteredObject,
608
- * uniqueItems, commonItems, fixTitle, toTitleCase
609
- */
527
+ * Checks if a variable contains a value of any type.
528
+ * Returns true even for otherwise 'falsey' values of 0, '', and false.
529
+ *
530
+ * // value - the value to check
531
+ * // { boolean } - false if undefined or null, otherwise true
532
+ */
533
+ function isDefined(value) {
534
+ return value !== undefined && value !== null;
535
+ }
610
536
  /**
611
- * 'addClasses' function
537
+ * 'hasValue' utility function
612
538
  *
613
- * Merges two space-delimited lists of CSS classes and removes duplicates.
539
+ * Checks if a variable contains a value.
540
+ * Returs false for null, undefined, or a zero-length strng, '',
541
+ * otherwise returns true.
542
+ * (Stricter than 'isDefined' because it also returns false for '',
543
+ * though it stil returns true for otherwise 'falsey' values 0 and false.)
614
544
  *
615
- * // {string | string[] | Set<string>} oldClasses
616
- * // {string | string[] | Set<string>} newClasses
617
- * // {string | string[] | Set<string>} - Combined classes
545
+ * // value - the value to check
546
+ * // { boolean } - false if undefined, null, or '', otherwise true
618
547
  */
619
- function addClasses(oldClasses, newClasses) {
620
- const badType = i => !isSet(i) && !isArray(i) && !isString(i);
621
- if (badType(newClasses)) {
622
- return oldClasses;
623
- }
624
- if (badType(oldClasses)) {
625
- oldClasses = '';
626
- }
627
- const toSet = i => isSet(i) ? i : isArray(i) ? new Set(i) : new Set(i.split(' '));
628
- const combinedSet = toSet(oldClasses);
629
- const newSet = toSet(newClasses);
630
- newSet.forEach(c => combinedSet.add(c));
631
- if (isSet(oldClasses)) {
632
- return combinedSet;
633
- }
634
- if (isArray(oldClasses)) {
635
- return Array.from(combinedSet);
636
- }
637
- return Array.from(combinedSet).join(' ');
548
+ function hasValue(value) {
549
+ return value !== undefined && value !== null && value !== '';
638
550
  }
639
551
  /**
640
- * 'copy' function
552
+ * 'isEmpty' utility function
641
553
  *
642
- * Makes a shallow copy of a JavaScript object, array, Map, or Set.
643
- * If passed a JavaScript primitive value (string, number, boolean, or null),
644
- * it returns the value.
554
+ * Similar to !hasValue, but also returns true for empty arrays and objects.
645
555
  *
646
- * // {Object|Array|string|number|boolean|null} object - The object to copy
647
- * // {boolean = false} errors - Show errors?
648
- * // {Object|Array|string|number|boolean|null} - The copied object
556
+ * // value - the value to check
557
+ * // { boolean } - false if undefined, null, or '', otherwise true
649
558
  */
650
- function copy(object, errors = false) {
651
- if (typeof object !== 'object' || object === null) {
652
- return object;
653
- }
654
- if (isMap(object)) {
655
- return new Map(object);
656
- }
657
- if (isSet(object)) {
658
- return new Set(object);
659
- }
660
- if (isArray(object)) {
661
- return [...object];
662
- }
663
- if (isObject(object)) {
664
- return { ...object };
559
+ function isEmpty(value) {
560
+ if (isArray(value)) {
561
+ return !value.length;
665
562
  }
666
- if (errors) {
667
- console.error('copy error: Object to copy must be a JavaScript object or value.');
563
+ if (isObject(value)) {
564
+ return !Object.keys(value).length;
668
565
  }
669
- return object;
566
+ return value === undefined || value === null || value === '';
670
567
  }
671
568
  /**
672
- * 'forEach' function
673
- *
674
- * Iterates over all items in the first level of an object or array
675
- * and calls an iterator funciton on each item.
676
- *
677
- * The iterator function is called with four values:
678
- * 1. The current item's value
679
- * 2. The current item's key
680
- * 3. The parent object, which contains the current item
681
- * 4. The root object
569
+ * 'isString' utility function
682
570
  *
683
- * Setting the optional third parameter to 'top-down' or 'bottom-up' will cause
684
- * it to also recursively iterate over items in sub-objects or sub-arrays in the
685
- * specified direction.
571
+ * Checks if a value is a string.
686
572
  *
687
- * // {Object|Array} object - The object or array to iterate over
688
- * // {function} fn - the iterator funciton to call on each item
689
- * // {boolean = false} errors - Show errors?
690
- * // {void}
573
+ * // value - the value to check
574
+ * // { boolean } - true if string, false if not
691
575
  */
692
- function forEach(object, fn, recurse = false, rootObject = object, errors = false) {
693
- if (isEmpty(object)) {
694
- return;
695
- }
696
- if ((isObject(object) || isArray(object)) && typeof fn === 'function') {
697
- for (const key of Object.keys(object)) {
698
- const value = object[key];
699
- if (recurse === 'bottom-up' && (isObject(value) || isArray(value))) {
700
- forEach(value, fn, recurse, rootObject);
701
- }
702
- fn(value, key, object, rootObject);
703
- if (recurse === 'top-down' && (isObject(value) || isArray(value))) {
704
- forEach(value, fn, recurse, rootObject);
705
- }
706
- }
707
- }
708
- if (errors) {
709
- if (typeof fn !== 'function') {
710
- console.error('forEach error: Iterator must be a function.');
711
- console.error('function', fn);
712
- }
713
- if (!isObject(object) && !isArray(object)) {
714
- console.error('forEach error: Input object must be an object or array.');
715
- console.error('object', object);
716
- }
717
- }
576
+ function isString(value) {
577
+ return typeof value === 'string';
718
578
  }
719
579
  /**
720
- * 'forEachCopy' function
721
- *
722
- * Iterates over all items in the first level of an object or array
723
- * and calls an iterator function on each item. Returns a new object or array
724
- * with the same keys or indexes as the original, and values set to the results
725
- * of the iterator function.
580
+ * 'isNumber' utility function
726
581
  *
727
- * Does NOT recursively iterate over items in sub-objects or sub-arrays.
582
+ * Checks if a value is a regular number, numeric string, or JavaScript Date.
728
583
  *
729
- * // {Object | Array} object - The object or array to iterate over
730
- * // {function} fn - The iterator funciton to call on each item
731
- * // {boolean = false} errors - Show errors?
732
- * // {Object | Array} - The resulting object or array
584
+ * // value - the value to check
585
+ * // { any = false } strict - if truthy, also checks JavaScript tyoe
586
+ * // { boolean } - true if number, false if not
733
587
  */
734
- function forEachCopy(object, fn, errors = false) {
735
- if (!hasValue(object)) {
736
- return;
737
- }
738
- if ((isObject(object) || isArray(object)) && typeof object !== 'function') {
739
- const newObject = isArray(object) ? [] : {};
740
- for (const key of Object.keys(object)) {
741
- newObject[key] = fn(object[key], key, object);
742
- }
743
- return newObject;
744
- }
745
- if (errors) {
746
- if (typeof fn !== 'function') {
747
- console.error('forEachCopy error: Iterator must be a function.');
748
- console.error('function', fn);
749
- }
750
- if (!isObject(object) && !isArray(object)) {
751
- console.error('forEachCopy error: Input object must be an object or array.');
752
- console.error('object', object);
753
- }
588
+ function isNumber(value, strict = false) {
589
+ if (strict && typeof value !== 'number') {
590
+ return false;
754
591
  }
592
+ return !isNaN(value) && value !== value / 0;
755
593
  }
756
594
  /**
757
- * 'hasOwn' utility function
595
+ * 'isInteger' utility function
758
596
  *
759
- * Checks whether an object or array has a particular property.
597
+ * Checks if a value is an integer.
760
598
  *
761
- * // {any} object - the object to check
762
- * // {string} property - the property to look for
763
- * // {boolean} - true if object has property, false if not
599
+ * // value - the value to check
600
+ * // { any = false } strict - if truthy, also checks JavaScript tyoe
601
+ * // {boolean } - true if number, false if not
764
602
  */
765
- function hasOwn(object, property) {
766
- if (!object || !['number', 'string', 'symbol'].includes(typeof property) ||
767
- (!isObject(object) && !isArray(object) && !isMap(object) && !isSet(object))) {
603
+ function isInteger(value, strict = false) {
604
+ if (strict && typeof value !== 'number') {
768
605
  return false;
769
606
  }
770
- if (isMap(object) || isSet(object)) {
771
- return object.has(property);
772
- }
773
- if (typeof property === 'number') {
774
- if (isArray(object)) {
775
- return object[property];
776
- }
777
- property = property + '';
778
- }
779
- return object.hasOwnProperty(property);
607
+ return !isNaN(value) && value !== value / 0 && value % 1 === 0;
780
608
  }
781
609
  /**
782
- * Types of possible expressions which the app is able to evaluate.
783
- */
784
- var ExpressionType;
785
- (function (ExpressionType) {
786
- ExpressionType[ExpressionType["EQUALS"] = 0] = "EQUALS";
787
- ExpressionType[ExpressionType["NOT_EQUALS"] = 1] = "NOT_EQUALS";
788
- ExpressionType[ExpressionType["NOT_AN_EXPRESSION"] = 2] = "NOT_AN_EXPRESSION";
789
- })(ExpressionType || (ExpressionType = {}));
790
- /**
791
- * Detects the type of expression from the given candidate. `==` for equals,
792
- * `!=` for not equals. If none of these are contained in the candidate, the candidate
793
- * is not considered to be an expression at all and thus `NOT_AN_EXPRESSION` is returned.
794
- * // {expressionCandidate} expressionCandidate - potential expression
610
+ * 'isBoolean' utility function
611
+ *
612
+ * Checks if a value is a boolean.
613
+ *
614
+ * // value - the value to check
615
+ * // { any = null } option - if 'strict', also checks JavaScript type
616
+ * if TRUE or FALSE, checks only for that value
617
+ * // { boolean } - true if boolean, false if not
795
618
  */
796
- function getExpressionType(expressionCandidate) {
797
- if (expressionCandidate.indexOf('==') !== -1) {
798
- return ExpressionType.EQUALS;
619
+ function isBoolean(value, option = null) {
620
+ if (option === 'strict') {
621
+ return value === true || value === false;
799
622
  }
800
- if (expressionCandidate.toString().indexOf('!=') !== -1) {
801
- return ExpressionType.NOT_EQUALS;
623
+ if (option === true) {
624
+ return value === true || value === 1 || value === 'true' || value === '1';
802
625
  }
803
- return ExpressionType.NOT_AN_EXPRESSION;
626
+ if (option === false) {
627
+ return value === false || value === 0 || value === 'false' || value === '0';
628
+ }
629
+ return value === true || value === 1 || value === 'true' || value === '1' ||
630
+ value === false || value === 0 || value === 'false' || value === '0';
804
631
  }
805
- function isEqual(expressionType) {
806
- return expressionType === ExpressionType.EQUALS;
632
+ function isFunction(item) {
633
+ return typeof item === 'function';
807
634
  }
808
- function isNotEqual(expressionType) {
809
- return expressionType === ExpressionType.NOT_EQUALS;
635
+ function isObject(item) {
636
+ return item !== null && typeof item === 'object';
810
637
  }
811
- function isNotExpression(expressionType) {
812
- return expressionType === ExpressionType.NOT_AN_EXPRESSION;
638
+ function isArray(item) {
639
+ return Array.isArray(item);
813
640
  }
814
- /**
815
- * Splits the expression key by the expressionType on a pair of values
816
- * before and after the equals or nor equals sign.
817
- * // {expressionType} enum of an expression type
818
- * // {key} the given key from a for loop iver all conditions
819
- */
820
- function getKeyAndValueByExpressionType(expressionType, key) {
821
- if (isEqual(expressionType)) {
822
- return key.split('==', 2);
823
- }
824
- if (isNotEqual(expressionType)) {
825
- return key.split('!=', 2);
826
- }
827
- return null;
641
+ function isDate(item) {
642
+ return !!item && Object.prototype.toString.call(item) === '[object Date]';
828
643
  }
829
- function cleanValueOfQuotes(keyAndValue) {
830
- if (keyAndValue.charAt(0) === '\'' && keyAndValue.charAt(keyAndValue.length - 1) === '\'') {
831
- return keyAndValue.replace('\'', '').replace('\'', '');
832
- }
833
- return keyAndValue;
644
+ function isMap(item) {
645
+ return !!item && Object.prototype.toString.call(item) === '[object Map]';
646
+ }
647
+ function isSet(item) {
648
+ return !!item && Object.prototype.toString.call(item) === '[object Set]';
649
+ }
650
+ function isSymbol(item) {
651
+ return typeof item === 'symbol';
834
652
  }
835
653
  /**
836
- * 'mergeFilteredObject' utility function
654
+ * 'getType' function
837
655
  *
838
- * Shallowly merges two objects, setting key and values from source object
839
- * in target object, excluding specified keys.
656
+ * Detects the JSON Schema Type of a value.
657
+ * By default, detects numbers and integers even if formatted as strings.
658
+ * (So all integers are also numbers, and any number may also be a string.)
659
+ * However, it only detects true boolean values (to detect boolean values
660
+ * in non-boolean formats, use isBoolean() instead).
840
661
  *
841
- * Optionally, it can also use functions to transform the key names and/or
842
- * the values of the merging object.
662
+ * If passed a second optional parameter of 'strict', it will only detect
663
+ * numbers and integers if they are formatted as JavaScript numbers.
843
664
  *
844
- * // {PlainObject} targetObject - Target object to add keys and values to
845
- * // {PlainObject} sourceObject - Source object to copy keys and values from
846
- * // {string[]} excludeKeys - Array of keys to exclude
847
- * // {(string: string) => string = (k) => k} keyFn - Function to apply to keys
848
- * // {(any: any) => any = (v) => v} valueFn - Function to apply to values
849
- * // {PlainObject} - Returns targetObject
665
+ * Examples:
666
+ * getType('10.5') = 'number'
667
+ * getType(10.5) = 'number'
668
+ * getType('10') = 'integer'
669
+ * getType(10) = 'integer'
670
+ * getType('true') = 'string'
671
+ * getType(true) = 'boolean'
672
+ * getType(null) = 'null'
673
+ * getType({ }) = 'object'
674
+ * getType([]) = 'array'
675
+ *
676
+ * getType('10.5', 'strict') = 'string'
677
+ * getType(10.5, 'strict') = 'number'
678
+ * getType('10', 'strict') = 'string'
679
+ * getType(10, 'strict') = 'integer'
680
+ * getType('true', 'strict') = 'string'
681
+ * getType(true, 'strict') = 'boolean'
682
+ *
683
+ * // value - value to check
684
+ * // { any = false } strict - if truthy, also checks JavaScript tyoe
685
+ * // { SchemaType }
850
686
  */
851
- function mergeFilteredObject(targetObject, sourceObject, excludeKeys = [], keyFn = (key) => key, valFn = (val) => val) {
852
- if (!isObject(sourceObject)) {
853
- return targetObject;
687
+ function getType(value, strict = false) {
688
+ if (!isDefined(value)) {
689
+ return 'null';
854
690
  }
855
- if (!isObject(targetObject)) {
856
- targetObject = {};
691
+ if (isArray(value)) {
692
+ return 'array';
857
693
  }
858
- for (const key of Object.keys(sourceObject)) {
859
- if (!inArray(key, excludeKeys) && isDefined(sourceObject[key])) {
860
- targetObject[keyFn(key)] = valFn(sourceObject[key]);
861
- }
694
+ if (isObject(value)) {
695
+ return 'object';
862
696
  }
863
- return targetObject;
697
+ if (isBoolean(value, 'strict')) {
698
+ return 'boolean';
699
+ }
700
+ if (isInteger(value, strict)) {
701
+ return 'integer';
702
+ }
703
+ if (isNumber(value, strict)) {
704
+ return 'number';
705
+ }
706
+ if (isString(value) || (!strict && isDate(value))) {
707
+ return 'string';
708
+ }
709
+ return null;
864
710
  }
865
711
  /**
866
- * 'uniqueItems' function
712
+ * 'isType' function
867
713
  *
868
- * Accepts any number of string value inputs,
869
- * and returns an array of all input vaues, excluding duplicates.
714
+ * Checks wether an input (probably string) value contains data of
715
+ * a specified JSON Schema type
870
716
  *
871
- * // {...string} ...items -
872
- * // {string[]} -
717
+ * // { PrimitiveValue } value - value to check
718
+ * // { SchemaPrimitiveType } type - type to check
719
+ * // { boolean }
873
720
  */
874
- function uniqueItems(...items) {
875
- const returnItems = [];
876
- for (const item of items) {
877
- if (!returnItems.includes(item)) {
878
- returnItems.push(item);
879
- }
721
+ function isType(value, type) {
722
+ switch (type) {
723
+ case 'string':
724
+ return isString(value) || isDate(value);
725
+ case 'number':
726
+ return isNumber(value);
727
+ case 'integer':
728
+ return isInteger(value);
729
+ case 'boolean':
730
+ return isBoolean(value);
731
+ case 'null':
732
+ return !hasValue(value);
733
+ default:
734
+ console.error(`isType error: "${type}" is not a recognized type.`);
735
+ return null;
880
736
  }
881
- return returnItems;
882
737
  }
883
738
  /**
884
- * 'commonItems' function
739
+ * 'isPrimitive' function
885
740
  *
886
- * Accepts any number of strings or arrays of string values,
887
- * and returns a single array containing only values present in all inputs.
741
+ * Checks wether an input value is a JavaScript primitive type:
742
+ * string, number, boolean, or null.
888
743
  *
889
- * // {...string|string[]} ...arrays -
890
- * // {string[]} -
744
+ * // value - value to check
745
+ * // { boolean }
891
746
  */
892
- function commonItems(...arrays) {
893
- let returnItems = null;
894
- for (let array of arrays) {
895
- if (isString(array)) {
896
- array = [array];
897
- }
898
- returnItems = returnItems === null ? [...array] :
899
- returnItems.filter(item => array.includes(item));
900
- if (!returnItems.length) {
901
- return [];
902
- }
903
- }
904
- return returnItems;
747
+ function isPrimitive(value) {
748
+ return (isString(value) || isNumber(value) ||
749
+ isBoolean(value, 'strict') || value === null);
905
750
  }
906
751
  /**
907
- * 'fixTitle' function
908
752
  *
909
- *
910
- * // {string} input -
911
- * // {string} -
753
+ * @param date
754
+ * @returns {string}
755
+ * exmaple:
756
+ * toDateString('2018-01-01') = '2018-01-01'
757
+ * toDateString('2018-01-30T00:00:00.000Z') = '2018-01-30'
912
758
  */
913
- function fixTitle(name) {
914
- return name && toTitleCase(name.replace(/([a-z])([A-Z])/g, '$1 $2').replace(/_/g, ' '));
915
- }
759
+ const toIsoString = (date) => {
760
+ const day = date.getDate();
761
+ const month = date.getMonth() + 1;
762
+ const year = date.getFullYear();
763
+ return `${year}-${month < 10 ? '0' + month : month}-${day < 10 ? '0' + day : day}`;
764
+ };
916
765
  /**
917
- * 'toTitleCase' function
766
+ * 'toJavaScriptType' function
918
767
  *
919
- * Intelligently converts an input string to Title Case.
768
+ * Converts an input (probably string) value to a JavaScript primitive type -
769
+ * 'string', 'number', 'boolean', or 'null' - before storing in a JSON object.
920
770
  *
921
- * Accepts an optional second parameter with a list of additional
922
- * words and abbreviations to force into a particular case.
771
+ * Does not coerce values (other than null), and only converts the types
772
+ * of values that would otherwise be valid.
923
773
  *
924
- * This function is built on prior work by John Gruber and David Gouch:
925
- * http://daringfireball.net/2008/08/title_case_update
926
- * https://github.com/gouch/to-title-case
774
+ * If the optional third parameter 'strictIntegers' is TRUE, and the
775
+ * JSON Schema type 'integer' is specified, it also verifies the input value
776
+ * is an integer and, if it is, returns it as a JaveScript number.
777
+ * If 'strictIntegers' is FALSE (or not set) the type 'integer' is treated
778
+ * exactly the same as 'number', and allows decimals.
927
779
  *
928
- * // {string} input -
929
- * // {string|string[]} forceWords? -
930
- * // {string} -
780
+ * Valid Examples:
781
+ * toJavaScriptType('10', 'number' ) = 10 // '10' is a number
782
+ * toJavaScriptType('10', 'integer') = 10 // '10' is also an integer
783
+ * toJavaScriptType( 10, 'integer') = 10 // 10 is still an integer
784
+ * toJavaScriptType( 10, 'string' ) = '10' // 10 can be made into a string
785
+ * toJavaScriptType('10.5', 'number' ) = 10.5 // '10.5' is a number
786
+ *
787
+ * Invalid Examples:
788
+ * toJavaScriptType('10.5', 'integer') = null // '10.5' is not an integer
789
+ * toJavaScriptType( 10.5, 'integer') = null // 10.5 is still not an integer
790
+ *
791
+ * // { PrimitiveValue } value - value to convert
792
+ * // { SchemaPrimitiveType | SchemaPrimitiveType[] } types - types to convert to
793
+ * // { boolean = false } strictIntegers - if FALSE, treat integers as numbers
794
+ * // { PrimitiveValue }
931
795
  */
932
- function toTitleCase(input, forceWords) {
933
- if (!isString(input)) {
934
- return input;
935
- }
936
- let forceArray = ['a', 'an', 'and', 'as', 'at', 'but', 'by', 'en',
937
- 'for', 'if', 'in', 'nor', 'of', 'on', 'or', 'per', 'the', 'to', 'v', 'v.',
938
- 'vs', 'vs.', 'via'];
939
- if (isString(forceWords)) {
940
- forceWords = forceWords.split('|');
796
+ function toJavaScriptType(value, types, strictIntegers = true) {
797
+ if (!isDefined(value)) {
798
+ return null;
941
799
  }
942
- if (isArray(forceWords)) {
943
- forceArray = forceArray.concat(forceWords);
800
+ if (isString(types)) {
801
+ types = [types];
944
802
  }
945
- const forceArrayLower = forceArray.map(w => w.toLowerCase());
946
- const noInitialCase = input === input.toUpperCase() || input === input.toLowerCase();
947
- let prevLastChar = '';
948
- input = input.trim();
949
- return input.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, (word, idx) => {
950
- if (!noInitialCase && word.slice(1).search(/[A-Z]|\../) !== -1) {
951
- return word;
803
+ if (strictIntegers && inArray('integer', types)) {
804
+ if (isInteger(value, 'strict')) {
805
+ return value;
952
806
  }
953
- else {
954
- let newWord;
955
- const forceWord = forceArray[forceArrayLower.indexOf(word.toLowerCase())];
956
- if (!forceWord) {
957
- if (noInitialCase) {
958
- if (word.slice(1).search(/\../) !== -1) {
959
- newWord = word.toLowerCase();
960
- }
961
- else {
962
- newWord = word[0].toUpperCase() + word.slice(1).toLowerCase();
963
- }
964
- }
965
- else {
966
- newWord = word[0].toUpperCase() + word.slice(1);
967
- }
968
- }
969
- else if (forceWord === forceWord.toLowerCase() && (idx === 0 || idx + word.length === input.length ||
970
- prevLastChar === ':' || input[idx - 1].search(/[^\s-]/) !== -1 ||
971
- (input[idx - 1] !== '-' && input[idx + word.length] === '-'))) {
972
- newWord = forceWord[0].toUpperCase() + forceWord.slice(1);
973
- }
974
- else {
975
- newWord = forceWord;
976
- }
977
- prevLastChar = word.slice(-1);
978
- return newWord;
807
+ if (isInteger(value)) {
808
+ return parseInt(value, 10);
979
809
  }
980
- });
981
- }
982
-
983
- const deValidationMessages = {
984
- required: 'Darf nicht leer sein',
985
- minLength: 'Mindestens {{minimumLength}} Zeichen benötigt (aktuell: {{currentLength}})',
986
- maxLength: 'Maximal {{maximumLength}} Zeichen erlaubt (aktuell: {{currentLength}})',
987
- pattern: 'Entspricht nicht diesem regulären Ausdruck: {{requiredPattern}}',
988
- format: function (error) {
989
- switch (error.requiredFormat) {
990
- case 'date':
991
- return 'Muss ein Datum sein, z. B. "2000-12-31"';
992
- case 'time':
993
- return 'Muss eine Zeitangabe sein, z. B. "16:20" oder "03:14:15.9265"';
994
- case 'date-time':
995
- return 'Muss Datum mit Zeit beinhalten, z. B. "2000-03-14T01:59" oder "2000-03-14T01:59:26.535Z"';
996
- case 'email':
997
- return 'Keine gültige E-Mail-Adresse (z. B. "name@example.com")';
998
- case 'hostname':
999
- return 'Kein gültiger Hostname (z. B. "example.com")';
1000
- case 'ipv4':
1001
- return 'Keine gültige IPv4-Adresse (z. B. "127.0.0.1")';
1002
- case 'ipv6':
1003
- return 'Keine gültige IPv6-Adresse (z. B. "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0")';
1004
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1005
- // case 'uri': case 'uri-reference': case 'uri-template':
1006
- case 'url':
1007
- return 'Keine gültige URL (z. B. "http://www.example.com/page.html")';
1008
- case 'uuid':
1009
- return 'Keine gültige UUID (z. B. "12345678-9ABC-DEF0-1234-56789ABCDEF0")';
1010
- case 'color':
1011
- return 'Kein gültiger Farbwert (z. B. "#FFFFFF" oder "rgb(255, 255, 255)")';
1012
- case 'json-pointer':
1013
- return 'Kein gültiger JSON-Pointer (z. B. "/pointer/to/something")';
1014
- case 'relative-json-pointer':
1015
- return 'Kein gültiger relativer JSON-Pointer (z. B. "2/pointer/to/something")';
1016
- case 'regex':
1017
- return 'Kein gültiger regulärer Ausdruck (z. B. "(1-)?\\d{3}-\\d{3}-\\d{4}")';
1018
- default:
1019
- return 'Muss diesem Format entsprechen: ' + error.requiredFormat;
810
+ }
811
+ if (inArray('number', types) || (!strictIntegers && inArray('integer', types))) {
812
+ if (isNumber(value, 'strict')) {
813
+ return value;
1020
814
  }
1021
- },
1022
- minimum: 'Muss mindestens {{minimumValue}} sein',
1023
- exclusiveMinimum: 'Muss größer als {{exclusiveMinimumValue}} sein',
1024
- maximum: 'Darf maximal {{maximumValue}} sein',
1025
- exclusiveMaximum: 'Muss kleiner als {{exclusiveMaximumValue}} sein',
1026
- multipleOf: function (error) {
1027
- if ((1 / error.multipleOfValue) % 10 === 0) {
1028
- const decimals = Math.log10(1 / error.multipleOfValue);
1029
- return `Maximal ${decimals} Dezimalstellen erlaubt`;
815
+ if (isNumber(value)) {
816
+ return parseFloat(value);
1030
817
  }
1031
- else {
1032
- return `Muss ein Vielfaches von ${error.multipleOfValue} sein`;
818
+ }
819
+ if (inArray('string', types)) {
820
+ if (isString(value)) {
821
+ return value;
1033
822
  }
1034
- },
1035
- minProperties: 'Mindestens {{minimumProperties}} Attribute erforderlich (aktuell: {{currentProperties}})',
1036
- maxProperties: 'Maximal {{maximumProperties}} Attribute erlaubt (aktuell: {{currentProperties}})',
1037
- minItems: 'Mindestens {{minimumItems}} Werte erforderlich (aktuell: {{currentItems}})',
1038
- maxItems: 'Maximal {{maximumItems}} Werte erlaubt (aktuell: {{currentItems}})',
1039
- uniqueItems: 'Alle Werte müssen eindeutig sein',
1040
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1041
- };
1042
-
1043
- const enValidationMessages = {
1044
- required: 'This field is required.',
1045
- minLength: 'Must be {{minimumLength}} characters or longer (current length: {{currentLength}})',
1046
- maxLength: 'Must be {{maximumLength}} characters or shorter (current length: {{currentLength}})',
1047
- pattern: 'Must match pattern: {{requiredPattern}}',
1048
- format: function (error) {
1049
- switch (error.requiredFormat) {
1050
- case 'date':
1051
- return 'Must be a date, like "2000-12-31"';
1052
- case 'time':
1053
- return 'Must be a time, like "16:20" or "03:14:15.9265"';
1054
- case 'date-time':
1055
- return 'Must be a date-time, like "2000-03-14T01:59" or "2000-03-14T01:59:26.535Z"';
1056
- case 'email':
1057
- return 'Must be an email address, like "name@example.com"';
1058
- case 'hostname':
1059
- return 'Must be a hostname, like "example.com"';
1060
- case 'ipv4':
1061
- return 'Must be an IPv4 address, like "127.0.0.1"';
1062
- case 'ipv6':
1063
- return 'Must be an IPv6 address, like "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1064
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1065
- // case 'uri': case 'uri-reference': case 'uri-template':
1066
- case 'url':
1067
- return 'Must be a url, like "http://www.example.com/page.html"';
1068
- case 'uuid':
1069
- return 'Must be a uuid, like "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1070
- case 'color':
1071
- return 'Must be a color, like "#FFFFFF" or "rgb(255, 255, 255)"';
1072
- case 'json-pointer':
1073
- return 'Must be a JSON Pointer, like "/pointer/to/something"';
1074
- case 'relative-json-pointer':
1075
- return 'Must be a relative JSON Pointer, like "2/pointer/to/something"';
1076
- case 'regex':
1077
- return 'Must be a regular expression, like "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1078
- default:
1079
- return 'Must be a correctly formatted ' + error.requiredFormat;
823
+ // If value is a date, and types includes 'string',
824
+ // convert the date to a string
825
+ if (isDate(value)) {
826
+ return toIsoString(value);
1080
827
  }
1081
- },
1082
- minimum: 'Must be {{minimumValue}} or more',
1083
- exclusiveMinimum: 'Must be more than {{exclusiveMinimumValue}}',
1084
- maximum: 'Must be {{maximumValue}} or less',
1085
- exclusiveMaximum: 'Must be less than {{exclusiveMaximumValue}}',
1086
- multipleOf: function (error) {
1087
- if ((1 / error.multipleOfValue) % 10 === 0) {
1088
- const decimals = Math.log10(1 / error.multipleOfValue);
1089
- return `Must have ${decimals} or fewer decimal places.`;
828
+ if (isNumber(value)) {
829
+ return value.toString();
1090
830
  }
1091
- else {
1092
- return `Must be a multiple of ${error.multipleOfValue}.`;
831
+ }
832
+ // If value is a date, and types includes 'integer' or 'number',
833
+ // but not 'string', convert the date to a number
834
+ if (isDate(value) && (inArray('integer', types) || inArray('number', types))) {
835
+ return value.getTime();
836
+ }
837
+ if (inArray('boolean', types)) {
838
+ if (isBoolean(value, true)) {
839
+ return true;
1093
840
  }
1094
- },
1095
- minProperties: 'Must have {{minimumProperties}} or more items (current items: {{currentProperties}})',
1096
- maxProperties: 'Must have {{maximumProperties}} or fewer items (current items: {{currentProperties}})',
1097
- minItems: 'Must have {{minimumItems}} or more items (current items: {{currentItems}})',
1098
- maxItems: 'Must have {{maximumItems}} or fewer items (current items: {{currentItems}})',
1099
- uniqueItems: 'All items must be unique',
1100
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1101
- };
1102
-
1103
- const esValidationMessages = {
1104
- required: 'Este campo está requerido.',
1105
- minLength: 'Debe tener {{minimumLength}} caracteres o más longitud (longitud actual: {{currentLength}})',
1106
- maxLength: 'Debe tener {{maximumLength}} caracteres o menos longitud (longitud actual: {{currentLength}})',
1107
- pattern: 'Must match pattern: {{requiredPattern}}',
1108
- format: function (error) {
1109
- switch (error.requiredFormat) {
1110
- case 'date':
1111
- return 'Debe tener una fecha, ej "2000-12-31"';
1112
- case 'time':
1113
- return 'Debe tener una hora, ej "16:20" o "03:14:15.9265"';
1114
- case 'date-time':
1115
- return 'Debe tener fecha y hora, ej "2000-03-14T01:59" o "2000-03-14T01:59:26.535Z"';
1116
- case 'email':
1117
- return 'No hay dirección de correo electrónico válida, ej "name@example.com"';
1118
- case 'hostname':
1119
- return 'Debe ser un nombre de host válido, ej "example.com"';
1120
- case 'ipv4':
1121
- return 'Debe ser una dirección de IPv4, ej "127.0.0.1"';
1122
- case 'ipv6':
1123
- return 'Debe ser una dirección de IPv6, ej "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1124
- case 'url':
1125
- return 'Debe ser una URL, ej "http://www.example.com/page.html"';
1126
- case 'uuid':
1127
- return 'Debe ser un UUID, ej "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1128
- case 'color':
1129
- return 'Debe ser un color, ej "#FFFFFF" or "rgb(255, 255, 255)"';
1130
- case 'json-pointer':
1131
- return 'Debe ser un JSON Pointer, ej "/pointer/to/something"';
1132
- case 'relative-json-pointer':
1133
- return 'Debe ser un JSON Pointer relativo, ej "2/pointer/to/something"';
1134
- case 'regex':
1135
- return 'Debe ser una expresión regular, ej "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1136
- default:
1137
- return 'Debe tener el formato correcto ' + error.requiredFormat;
841
+ if (isBoolean(value, false)) {
842
+ return false;
1138
843
  }
1139
- },
1140
- minimum: 'Debe ser {{minimumValue}} o más',
1141
- exclusiveMinimum: 'Debe ser superior a {{exclusiveMinimumValue}}',
1142
- maximum: 'Debe ser {{maximumValue}} o menos',
1143
- exclusiveMaximum: 'Debe ser menor que {{exclusiveMaximumValue}}',
1144
- multipleOf: function (error) {
1145
- if ((1 / error.multipleOfValue) % 10 === 0) {
1146
- const decimals = Math.log10(1 / error.multipleOfValue);
1147
- return `Se permite un máximo de ${decimals} decimales`;
844
+ }
845
+ return null;
846
+ }
847
+ /**
848
+ * 'toSchemaType' function
849
+ *
850
+ * Converts an input (probably string) value to the "best" JavaScript
851
+ * equivalent available from an allowed list of JSON Schema types, which may
852
+ * contain 'string', 'number', 'integer', 'boolean', and/or 'null'.
853
+ * If necssary, it does progressively agressive type coersion.
854
+ * It will not return null unless null is in the list of allowed types.
855
+ *
856
+ * Number conversion examples:
857
+ * toSchemaType('10', ['number','integer','string']) = 10 // integer
858
+ * toSchemaType('10', ['number','string']) = 10 // number
859
+ * toSchemaType('10', ['string']) = '10' // string
860
+ * toSchemaType('10.5', ['number','integer','string']) = 10.5 // number
861
+ * toSchemaType('10.5', ['integer','string']) = '10.5' // string
862
+ * toSchemaType('10.5', ['integer']) = 10 // integer
863
+ * toSchemaType(10.5, ['null','boolean','string']) = '10.5' // string
864
+ * toSchemaType(10.5, ['null','boolean']) = true // boolean
865
+ *
866
+ * String conversion examples:
867
+ * toSchemaType('1.5x', ['boolean','number','integer','string']) = '1.5x' // string
868
+ * toSchemaType('1.5x', ['boolean','number','integer']) = '1.5' // number
869
+ * toSchemaType('1.5x', ['boolean','integer']) = '1' // integer
870
+ * toSchemaType('1.5x', ['boolean']) = true // boolean
871
+ * toSchemaType('xyz', ['number','integer','boolean','null']) = true // boolean
872
+ * toSchemaType('xyz', ['number','integer','null']) = null // null
873
+ * toSchemaType('xyz', ['number','integer']) = 0 // number
874
+ *
875
+ * Boolean conversion examples:
876
+ * toSchemaType('1', ['integer','number','string','boolean']) = 1 // integer
877
+ * toSchemaType('1', ['number','string','boolean']) = 1 // number
878
+ * toSchemaType('1', ['string','boolean']) = '1' // string
879
+ * toSchemaType('1', ['boolean']) = true // boolean
880
+ * toSchemaType('true', ['number','string','boolean']) = 'true' // string
881
+ * toSchemaType('true', ['boolean']) = true // boolean
882
+ * toSchemaType('true', ['number']) = 0 // number
883
+ * toSchemaType(true, ['number','string','boolean']) = true // boolean
884
+ * toSchemaType(true, ['number','string']) = 'true' // string
885
+ * toSchemaType(true, ['number']) = 1 // number
886
+ *
887
+ * // { PrimitiveValue } value - value to convert
888
+ * // { SchemaPrimitiveType | SchemaPrimitiveType[] } types - allowed types to convert to
889
+ * // { PrimitiveValue }
890
+ */
891
+ function toSchemaType(value, types) {
892
+ if (!isArray(types)) {
893
+ types = [types];
894
+ }
895
+ if (types.includes('null') && !hasValue(value)) {
896
+ return null;
897
+ }
898
+ if (types.includes('boolean') && !isBoolean(value, 'strict')) {
899
+ return value;
900
+ }
901
+ if (types.includes('integer')) {
902
+ const testValue = toJavaScriptType(value, 'integer');
903
+ if (testValue !== null) {
904
+ return +testValue;
1148
905
  }
1149
- else {
1150
- return `Debe ser múltiplo de ${error.multipleOfValue}.`;
906
+ }
907
+ if (types.includes('number')) {
908
+ const testValue = toJavaScriptType(value, 'number');
909
+ if (testValue !== null) {
910
+ return +testValue;
1151
911
  }
1152
- },
1153
- minProperties: 'Debe tener {{minimumProperties}} o más elementos (elementos actuales: {{currentProperties}})',
1154
- maxProperties: 'Debe tener {{maximumProperties}} o menos elementos (elementos actuales: {{currentProperties}})',
1155
- minItems: 'Debe tener {{minimumItems}} o más elementos (elementos actuales: {{currentItems}})',
1156
- maxItems: 'Debe tener {{maximumItems}} o menos elementos (elementos actuales: {{currentItems}})',
1157
- uniqueItems: 'Todos los elementos deben ser únicos',
1158
- };
1159
-
1160
- const frValidationMessages = {
1161
- required: 'Est obligatoire.',
1162
- minLength: 'Doit avoir minimum {{minimumLength}} caractères (actuellement: {{currentLength}})',
1163
- maxLength: 'Doit avoir maximum {{maximumLength}} caractères (actuellement: {{currentLength}})',
1164
- pattern: 'Doit respecter: {{requiredPattern}}',
1165
- format: function (error) {
1166
- switch (error.requiredFormat) {
1167
- case 'date':
1168
- return 'Doit être une date, tel que "2000-12-31"';
1169
- case 'time':
1170
- return 'Doit être une heure, tel que "16:20" ou "03:14:15.9265"';
1171
- case 'date-time':
1172
- return 'Doit être une date et une heure, tel que "2000-03-14T01:59" ou "2000-03-14T01:59:26.535Z"';
1173
- case 'email':
1174
- return 'Doit être une adresse e-mail, tel que "name@example.com"';
1175
- case 'hostname':
1176
- return 'Doit être un nom de domaine, tel que "example.com"';
1177
- case 'ipv4':
1178
- return 'Doit être une adresse IPv4, tel que "127.0.0.1"';
1179
- case 'ipv6':
1180
- return 'Doit être une adresse IPv6, tel que "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1181
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1182
- // case 'uri': case 'uri-reference': case 'uri-template':
1183
- case 'url':
1184
- return 'Doit être une URL, tel que "http://www.example.com/page.html"';
1185
- case 'uuid':
1186
- return 'Doit être un UUID, tel que "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1187
- case 'color':
1188
- return 'Doit être une couleur, tel que "#FFFFFF" or "rgb(255, 255, 255)"';
1189
- case 'json-pointer':
1190
- return 'Doit être un JSON Pointer, tel que "/pointer/to/something"';
1191
- case 'relative-json-pointer':
1192
- return 'Doit être un relative JSON Pointer, tel que "2/pointer/to/something"';
1193
- case 'regex':
1194
- return 'Doit être une expression régulière, tel que "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1195
- default:
1196
- return 'Doit être avoir le format correct: ' + error.requiredFormat;
1197
- }
1198
- },
1199
- minimum: 'Doit être supérieur à {{minimumValue}}',
1200
- exclusiveMinimum: 'Doit avoir minimum {{exclusiveMinimumValue}} charactères',
1201
- maximum: 'Doit être inférieur à {{maximumValue}}',
1202
- exclusiveMaximum: 'Doit avoir maximum {{exclusiveMaximumValue}} charactères',
1203
- multipleOf: function (error) {
1204
- if ((1 / error.multipleOfValue) % 10 === 0) {
1205
- const decimals = Math.log10(1 / error.multipleOfValue);
1206
- return `Doit comporter ${decimals} ou moins de decimales.`;
912
+ }
913
+ if ((isString(value) || isNumber(value, 'strict')) &&
914
+ types.includes('string')) { // Convert number to string
915
+ return toJavaScriptType(value, 'string');
916
+ }
917
+ if (types.includes('boolean') && isBoolean(value)) {
918
+ return toJavaScriptType(value, 'boolean');
919
+ }
920
+ if (types.includes('string')) { // Convert null & boolean to string
921
+ if (value === null) {
922
+ return '';
1207
923
  }
1208
- else {
1209
- return `Doit être un multiple de ${error.multipleOfValue}.`;
924
+ const testValue = toJavaScriptType(value, 'string');
925
+ if (testValue !== null) {
926
+ return testValue;
1210
927
  }
1211
- },
1212
- minProperties: 'Doit comporter au minimum {{minimumProperties}} éléments',
1213
- maxProperties: 'Doit comporter au maximum {{maximumProperties}} éléments',
1214
- minItems: 'Doit comporter au minimum {{minimumItems}} éléments',
1215
- maxItems: 'Doit comporter au maximum {{minimumItems}} éléments',
1216
- uniqueItems: 'Tous les éléments doivent être uniques',
1217
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1218
- };
1219
-
1220
- const itValidationMessages = {
1221
- required: 'Il campo è obbligatorio',
1222
- minLength: 'Deve inserire almeno {{minimumLength}} caratteri (lunghezza corrente: {{currentLength}})',
1223
- maxLength: 'Il numero massimo di caratteri consentito è {{maximumLength}} (lunghezza corrente: {{currentLength}})',
1224
- pattern: 'Devi rispettare il pattern : {{requiredPattern}}',
1225
- format: function (error) {
1226
- switch (error.requiredFormat) {
1227
- case 'date':
1228
- return 'Deve essere una data, come "31-12-2000"';
1229
- case 'time':
1230
- return 'Deve essere un orario, come "16:20" o "03:14:15.9265"';
1231
- case 'date-time':
1232
- return 'Deve essere data-orario, come "14-03-2000T01:59" or "14-03-2000T01:59:26.535Z"';
1233
- case 'email':
1234
- return 'Deve essere un indirzzo email, come "name@example.com"';
1235
- case 'hostname':
1236
- return 'Deve essere un hostname, come "example.com"';
1237
- case 'ipv4':
1238
- return 'Deve essere un indirizzo IPv4, come "127.0.0.1"';
1239
- case 'ipv6':
1240
- return 'Deve essere un indirizzo IPv6, come "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1241
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1242
- // case 'uri': case 'uri-reference': case 'uri-template':
1243
- case 'url':
1244
- return 'Deve essere un url, come "http://www.example.com/page.html"';
1245
- case 'uuid':
1246
- return 'Deve essere un uuid, come "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1247
- case 'color':
1248
- return 'Deve essere un colore, come "#FFFFFF" o "rgb(255, 255, 255)"';
1249
- case 'json-pointer':
1250
- return 'Deve essere un JSON Pointer, come "/pointer/to/something"';
1251
- case 'relative-json-pointer':
1252
- return 'Deve essere un JSON Pointer relativo, come "2/pointer/to/something"';
1253
- case 'regex':
1254
- return 'Deve essere una regular expression, come "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1255
- default:
1256
- return 'Deve essere formattato correttamente ' + error.requiredFormat;
928
+ }
929
+ if ((types.includes('number') ||
930
+ types.includes('integer'))) {
931
+ if (value === true) {
932
+ return 1;
933
+ } // Convert boolean & null to number
934
+ if (value === false || value === null || value === '') {
935
+ return 0;
1257
936
  }
1258
- },
1259
- minimum: 'Deve essere {{minimumValue}} o più',
1260
- exclusiveMinimum: 'Deve essere più di {{exclusiveMinimumValue}}',
1261
- maximum: 'Deve essere {{maximumValue}} o meno',
1262
- exclusiveMaximum: 'Deve essere minore di {{exclusiveMaximumValue}}',
1263
- multipleOf: function (error) {
1264
- if ((1 / error.multipleOfValue) % 10 === 0) {
1265
- const decimals = Math.log10(1 / error.multipleOfValue);
1266
- return `Deve avere ${decimals} o meno decimali.`;
937
+ }
938
+ if (types.includes('number')) { // Convert mixed string to number
939
+ const testValue = parseFloat(value);
940
+ if (!!testValue) {
941
+ return testValue;
1267
942
  }
1268
- else {
1269
- return `Deve essere multiplo di ${error.multipleOfValue}.`;
943
+ }
944
+ if (types.includes('integer')) { // Convert string or number to integer
945
+ const testValue = parseInt(value, 10);
946
+ if (!!testValue) {
947
+ return testValue;
1270
948
  }
1271
- },
1272
- minProperties: 'Deve avere {{minimumProperties}} o più elementi (elementi correnti: {{currentProperties}})',
1273
- maxProperties: 'Deve avere {{maximumProperties}} o meno elementi (elementi correnti: {{currentProperties}})',
1274
- minItems: 'Deve avere {{minimumItems}} o più elementi (elementi correnti: {{currentItems}})',
1275
- maxItems: 'Deve avere {{maximumItems}} o meno elementi (elementi correnti: {{currentItems}})',
1276
- uniqueItems: 'Tutti gli elementi devono essere unici',
1277
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1278
- };
949
+ }
950
+ if (types.includes('boolean')) { // Convert anything to boolean
951
+ return !!value;
952
+ }
953
+ if ((types.includes('number') ||
954
+ types.includes('integer')) && !types.includes('null')) {
955
+ return 0; // If null not allowed, return 0 for non-convertable values
956
+ }
957
+ }
958
+ /**
959
+ * 'isPromise' function
960
+ *
961
+ * // object
962
+ * // { boolean }
963
+ */
964
+ function isPromise(object) {
965
+ return !!object && typeof object.then === 'function';
966
+ }
967
+ /**
968
+ * 'isObservable' function
969
+ *
970
+ * // object
971
+ * // { boolean }
972
+ */
973
+ function isObservable(object) {
974
+ return !!object && typeof object.subscribe === 'function';
975
+ }
976
+ /**
977
+ * '_toPromise' function
978
+ *
979
+ * // { object } object
980
+ * // { Promise<any> }
981
+ */
982
+ function _toPromise(object) {
983
+ return isPromise(object) ? object : object.toPromise();
984
+ }
985
+ /**
986
+ * 'toObservable' function
987
+ *
988
+ * // { object } object
989
+ * // { Observable<any> }
990
+ */
991
+ function toObservable(object) {
992
+ const observable = isPromise(object) ? from(object) : object;
993
+ if (isObservable(observable)) {
994
+ return observable;
995
+ }
996
+ console.error('toObservable error: Expected validator to return Promise or Observable.');
997
+ return new Observable();
998
+ }
999
+ /**
1000
+ * 'inArray' function
1001
+ *
1002
+ * Searches an array for an item, or one of a list of items, and returns true
1003
+ * as soon as a match is found, or false if no match.
1004
+ *
1005
+ * If the optional third parameter allIn is set to TRUE, and the item to find
1006
+ * is an array, then the function returns true only if all elements from item
1007
+ * are found in the array list, and false if any element is not found. If the
1008
+ * item to find is not an array, setting allIn to TRUE has no effect.
1009
+ *
1010
+ * // { any|any[] } item - the item to search for
1011
+ * // array - the array to search
1012
+ * // { boolean = false } allIn - if TRUE, all items must be in array
1013
+ * // { boolean } - true if item(s) in array, false otherwise
1014
+ */
1015
+ function inArray(item, array, allIn = false) {
1016
+ if (!isDefined(item) || !isArray(array)) {
1017
+ return false;
1018
+ }
1019
+ return isArray(item) ?
1020
+ item[allIn ? 'every' : 'some'](subItem => array.includes(subItem)) :
1021
+ array.includes(item);
1022
+ }
1023
+ /**
1024
+ * 'xor' utility function - exclusive or
1025
+ *
1026
+ * Returns true if exactly one of two values is truthy.
1027
+ *
1028
+ * // value1 - first value to check
1029
+ * // value2 - second value to check
1030
+ * // { boolean } - true if exactly one input value is truthy, false if not
1031
+ */
1032
+ function xor(value1, value2) {
1033
+ return (!!value1 && !value2) || (!value1 && !!value2);
1034
+ }
1279
1035
 
1280
- const ptValidationMessages = {
1281
- required: 'Este campo é obrigatório.',
1282
- minLength: 'É preciso no mínimo {{minimumLength}} caracteres ou mais (tamanho atual: {{currentLength}})',
1283
- maxLength: preciso no máximo {{maximumLength}} caracteres ou menos (tamanho atual: {{currentLength}})',
1284
- pattern: 'Tem que ajustar ao formato: {{requiredPattern}}',
1285
- format: function (error) {
1286
- switch (error.requiredFormat) {
1287
- case 'date':
1288
- return 'Tem que ser uma data, por exemplo "2000-12-31"';
1289
- case 'time':
1290
- return 'Tem que ser horário, por exemplo "16:20" ou "03:14:15.9265"';
1291
- case 'date-time':
1292
- return 'Tem que ser data e hora, por exemplo "2000-03-14T01:59" ou "2000-03-14T01:59:26.535Z"';
1293
- case 'email':
1294
- return 'Tem que ser um email, por exemplo "fulano@exemplo.com.br"';
1295
- case 'hostname':
1296
- return 'Tem que ser uma nome de domínio, por exemplo "exemplo.com.br"';
1297
- case 'ipv4':
1298
- return 'Tem que ser um endereço IPv4, por exemplo "127.0.0.1"';
1299
- case 'ipv6':
1300
- return 'Tem que ser um endereço IPv6, por exemplo "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1301
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1302
- // case 'uri': case 'uri-reference': case 'uri-template':
1303
- case 'url':
1304
- return 'Tem que ser uma URL, por exemplo "http://www.exemplo.com.br/pagina.html"';
1305
- case 'uuid':
1306
- return 'Tem que ser um uuid, por exemplo "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1307
- case 'color':
1308
- return 'Tem que ser uma cor, por exemplo "#FFFFFF" ou "rgb(255, 255, 255)"';
1309
- case 'json-pointer':
1310
- return 'Tem que ser um JSON Pointer, por exemplo "/referencia/para/algo"';
1311
- case 'relative-json-pointer':
1312
- return 'Tem que ser um JSON Pointer relativo, por exemplo "2/referencia/para/algo"';
1313
- case 'regex':
1314
- return 'Tem que ser uma expressão regular, por exemplo "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1315
- default:
1316
- return 'Tem que ser no formato: ' + error.requiredFormat;
1036
+ /**
1037
+ * Utility function library:
1038
+ *
1039
+ * addClasses, copy, forEach, forEachCopy, hasOwn, mergeFilteredObject,
1040
+ * uniqueItems, commonItems, fixTitle, toTitleCase
1041
+ */
1042
+ /**
1043
+ * 'addClasses' function
1044
+ *
1045
+ * Merges two space-delimited lists of CSS classes and removes duplicates.
1046
+ *
1047
+ * // {string | string[] | Set<string>} oldClasses
1048
+ * // {string | string[] | Set<string>} newClasses
1049
+ * // {string | string[] | Set<string>} - Combined classes
1050
+ */
1051
+ function addClasses(oldClasses, newClasses) {
1052
+ const badType = i => !isSet(i) && !isArray(i) && !isString(i);
1053
+ if (badType(newClasses)) {
1054
+ return oldClasses;
1055
+ }
1056
+ if (badType(oldClasses)) {
1057
+ oldClasses = '';
1058
+ }
1059
+ const toSet = i => isSet(i) ? i : isArray(i) ? new Set(i) : new Set(i.split(' '));
1060
+ const combinedSet = toSet(oldClasses);
1061
+ const newSet = toSet(newClasses);
1062
+ newSet.forEach(c => combinedSet.add(c));
1063
+ if (isSet(oldClasses)) {
1064
+ return combinedSet;
1065
+ }
1066
+ if (isArray(oldClasses)) {
1067
+ return Array.from(combinedSet);
1068
+ }
1069
+ return Array.from(combinedSet).join(' ');
1070
+ }
1071
+ /**
1072
+ * 'copy' function
1073
+ *
1074
+ * Makes a shallow copy of a JavaScript object, array, Map, or Set.
1075
+ * If passed a JavaScript primitive value (string, number, boolean, or null),
1076
+ * it returns the value.
1077
+ *
1078
+ * // {Object|Array|string|number|boolean|null} object - The object to copy
1079
+ * // {boolean = false} errors - Show errors?
1080
+ * // {Object|Array|string|number|boolean|null} - The copied object
1081
+ */
1082
+ function copy(object, errors = false) {
1083
+ if (typeof object !== 'object' || object === null) {
1084
+ return object;
1085
+ }
1086
+ if (isMap(object)) {
1087
+ return new Map(object);
1088
+ }
1089
+ if (isSet(object)) {
1090
+ return new Set(object);
1091
+ }
1092
+ if (isArray(object)) {
1093
+ return [...object];
1094
+ }
1095
+ if (isObject(object)) {
1096
+ return { ...object };
1097
+ }
1098
+ if (errors) {
1099
+ console.error('copy error: Object to copy must be a JavaScript object or value.');
1100
+ }
1101
+ return object;
1102
+ }
1103
+ /**
1104
+ * 'forEach' function
1105
+ *
1106
+ * Iterates over all items in the first level of an object or array
1107
+ * and calls an iterator funciton on each item.
1108
+ *
1109
+ * The iterator function is called with four values:
1110
+ * 1. The current item's value
1111
+ * 2. The current item's key
1112
+ * 3. The parent object, which contains the current item
1113
+ * 4. The root object
1114
+ *
1115
+ * Setting the optional third parameter to 'top-down' or 'bottom-up' will cause
1116
+ * it to also recursively iterate over items in sub-objects or sub-arrays in the
1117
+ * specified direction.
1118
+ *
1119
+ * // {Object|Array} object - The object or array to iterate over
1120
+ * // {function} fn - the iterator funciton to call on each item
1121
+ * // {boolean = false} errors - Show errors?
1122
+ * // {void}
1123
+ */
1124
+ function forEach(object, fn, recurse = false, rootObject = object, errors = false) {
1125
+ if (isEmpty(object)) {
1126
+ return;
1127
+ }
1128
+ if ((isObject(object) || isArray(object)) && typeof fn === 'function') {
1129
+ for (const key of Object.keys(object)) {
1130
+ const value = object[key];
1131
+ if (recurse === 'bottom-up' && (isObject(value) || isArray(value))) {
1132
+ forEach(value, fn, recurse, rootObject);
1133
+ }
1134
+ fn(value, key, object, rootObject);
1135
+ if (recurse === 'top-down' && (isObject(value) || isArray(value))) {
1136
+ forEach(value, fn, recurse, rootObject);
1137
+ }
1317
1138
  }
1318
- },
1319
- minimum: 'Tem que ser {{minimumValue}} ou mais',
1320
- exclusiveMinimum: 'Tem que ser mais que {{exclusiveMinimumValue}}',
1321
- maximum: 'Tem que ser {{maximumValue}} ou menos',
1322
- exclusiveMaximum: 'Tem que ser menor que {{exclusiveMaximumValue}}',
1323
- multipleOf: function (error) {
1324
- if ((1 / error.multipleOfValue) % 10 === 0) {
1325
- const decimals = Math.log10(1 / error.multipleOfValue);
1326
- return `Tem que ter ${decimals} ou menos casas decimais.`;
1139
+ }
1140
+ if (errors) {
1141
+ if (typeof fn !== 'function') {
1142
+ console.error('forEach error: Iterator must be a function.');
1143
+ console.error('function', fn);
1327
1144
  }
1328
- else {
1329
- return `Tem que ser um múltiplo de ${error.multipleOfValue}.`;
1145
+ if (!isObject(object) && !isArray(object)) {
1146
+ console.error('forEach error: Input object must be an object or array.');
1147
+ console.error('object', object);
1148
+ }
1149
+ }
1150
+ }
1151
+ /**
1152
+ * 'forEachCopy' function
1153
+ *
1154
+ * Iterates over all items in the first level of an object or array
1155
+ * and calls an iterator function on each item. Returns a new object or array
1156
+ * with the same keys or indexes as the original, and values set to the results
1157
+ * of the iterator function.
1158
+ *
1159
+ * Does NOT recursively iterate over items in sub-objects or sub-arrays.
1160
+ *
1161
+ * // {Object | Array} object - The object or array to iterate over
1162
+ * // {function} fn - The iterator funciton to call on each item
1163
+ * // {boolean = false} errors - Show errors?
1164
+ * // {Object | Array} - The resulting object or array
1165
+ */
1166
+ function forEachCopy(object, fn, errors = false) {
1167
+ if (!hasValue(object)) {
1168
+ return;
1169
+ }
1170
+ if ((isObject(object) || isArray(object)) && typeof object !== 'function') {
1171
+ const newObject = isArray(object) ? [] : {};
1172
+ for (const key of Object.keys(object)) {
1173
+ newObject[key] = fn(object[key], key, object);
1174
+ }
1175
+ return newObject;
1176
+ }
1177
+ if (errors) {
1178
+ if (typeof fn !== 'function') {
1179
+ console.error('forEachCopy error: Iterator must be a function.');
1180
+ console.error('function', fn);
1181
+ }
1182
+ if (!isObject(object) && !isArray(object)) {
1183
+ console.error('forEachCopy error: Input object must be an object or array.');
1184
+ console.error('object', object);
1185
+ }
1186
+ }
1187
+ }
1188
+ /**
1189
+ * 'hasOwn' utility function
1190
+ *
1191
+ * Checks whether an object or array has a particular property.
1192
+ *
1193
+ * // {any} object - the object to check
1194
+ * // {string} property - the property to look for
1195
+ * // {boolean} - true if object has property, false if not
1196
+ */
1197
+ function hasOwn(object, property) {
1198
+ if (!object || !['number', 'string', 'symbol'].includes(typeof property) ||
1199
+ (!isObject(object) && !isArray(object) && !isMap(object) && !isSet(object))) {
1200
+ return false;
1201
+ }
1202
+ if (isMap(object) || isSet(object)) {
1203
+ return object.has(property);
1204
+ }
1205
+ if (typeof property === 'number') {
1206
+ if (isArray(object)) {
1207
+ return object[property];
1208
+ }
1209
+ property = property + '';
1210
+ }
1211
+ return object.hasOwnProperty(property);
1212
+ }
1213
+ /**
1214
+ * Types of possible expressions which the app is able to evaluate.
1215
+ */
1216
+ var ExpressionType;
1217
+ (function (ExpressionType) {
1218
+ ExpressionType[ExpressionType["EQUALS"] = 0] = "EQUALS";
1219
+ ExpressionType[ExpressionType["NOT_EQUALS"] = 1] = "NOT_EQUALS";
1220
+ ExpressionType[ExpressionType["NOT_AN_EXPRESSION"] = 2] = "NOT_AN_EXPRESSION";
1221
+ })(ExpressionType || (ExpressionType = {}));
1222
+ /**
1223
+ * Detects the type of expression from the given candidate. `==` for equals,
1224
+ * `!=` for not equals. If none of these are contained in the candidate, the candidate
1225
+ * is not considered to be an expression at all and thus `NOT_AN_EXPRESSION` is returned.
1226
+ * // {expressionCandidate} expressionCandidate - potential expression
1227
+ */
1228
+ function getExpressionType(expressionCandidate) {
1229
+ if (expressionCandidate.indexOf('==') !== -1) {
1230
+ return ExpressionType.EQUALS;
1231
+ }
1232
+ if (expressionCandidate.toString().indexOf('!=') !== -1) {
1233
+ return ExpressionType.NOT_EQUALS;
1234
+ }
1235
+ return ExpressionType.NOT_AN_EXPRESSION;
1236
+ }
1237
+ function isEqual(expressionType) {
1238
+ return expressionType === ExpressionType.EQUALS;
1239
+ }
1240
+ function isNotEqual(expressionType) {
1241
+ return expressionType === ExpressionType.NOT_EQUALS;
1242
+ }
1243
+ function isNotExpression(expressionType) {
1244
+ return expressionType === ExpressionType.NOT_AN_EXPRESSION;
1245
+ }
1246
+ /**
1247
+ * Splits the expression key by the expressionType on a pair of values
1248
+ * before and after the equals or nor equals sign.
1249
+ * // {expressionType} enum of an expression type
1250
+ * // {key} the given key from a for loop iver all conditions
1251
+ */
1252
+ function getKeyAndValueByExpressionType(expressionType, key) {
1253
+ if (isEqual(expressionType)) {
1254
+ return key.split('==', 2);
1255
+ }
1256
+ if (isNotEqual(expressionType)) {
1257
+ return key.split('!=', 2);
1258
+ }
1259
+ return null;
1260
+ }
1261
+ function cleanValueOfQuotes(keyAndValue) {
1262
+ if (keyAndValue.charAt(0) === '\'' && keyAndValue.charAt(keyAndValue.length - 1) === '\'') {
1263
+ return keyAndValue.replace('\'', '').replace('\'', '');
1264
+ }
1265
+ return keyAndValue;
1266
+ }
1267
+ /**
1268
+ * 'mergeFilteredObject' utility function
1269
+ *
1270
+ * Shallowly merges two objects, setting key and values from source object
1271
+ * in target object, excluding specified keys.
1272
+ *
1273
+ * Optionally, it can also use functions to transform the key names and/or
1274
+ * the values of the merging object.
1275
+ *
1276
+ * // {PlainObject} targetObject - Target object to add keys and values to
1277
+ * // {PlainObject} sourceObject - Source object to copy keys and values from
1278
+ * // {string[]} excludeKeys - Array of keys to exclude
1279
+ * // {(string: string) => string = (k) => k} keyFn - Function to apply to keys
1280
+ * // {(any: any) => any = (v) => v} valueFn - Function to apply to values
1281
+ * // {PlainObject} - Returns targetObject
1282
+ */
1283
+ function mergeFilteredObject(targetObject, sourceObject, excludeKeys = [], keyFn = (key) => key, valFn = (val) => val) {
1284
+ if (!isObject(sourceObject)) {
1285
+ return targetObject;
1286
+ }
1287
+ if (!isObject(targetObject)) {
1288
+ targetObject = {};
1289
+ }
1290
+ for (const key of Object.keys(sourceObject)) {
1291
+ if (!inArray(key, excludeKeys) && isDefined(sourceObject[key])) {
1292
+ targetObject[keyFn(key)] = valFn(sourceObject[key]);
1293
+ }
1294
+ }
1295
+ return targetObject;
1296
+ }
1297
+ /**
1298
+ * 'uniqueItems' function
1299
+ *
1300
+ * Accepts any number of string value inputs,
1301
+ * and returns an array of all input vaues, excluding duplicates.
1302
+ *
1303
+ * // {...string} ...items -
1304
+ * // {string[]} -
1305
+ */
1306
+ function uniqueItems(...items) {
1307
+ const returnItems = [];
1308
+ for (const item of items) {
1309
+ if (!returnItems.includes(item)) {
1310
+ returnItems.push(item);
1311
+ }
1312
+ }
1313
+ return returnItems;
1314
+ }
1315
+ /**
1316
+ * 'commonItems' function
1317
+ *
1318
+ * Accepts any number of strings or arrays of string values,
1319
+ * and returns a single array containing only values present in all inputs.
1320
+ *
1321
+ * // {...string|string[]} ...arrays -
1322
+ * // {string[]} -
1323
+ */
1324
+ function commonItems(...arrays) {
1325
+ let returnItems = null;
1326
+ for (let array of arrays) {
1327
+ if (isString(array)) {
1328
+ array = [array];
1330
1329
  }
1331
- },
1332
- minProperties: 'Deve ter {{minimumProperties}} ou mais itens (itens até o momento: {{currentProperties}})',
1333
- maxProperties: 'Deve ter {{maximumProperties}} ou menos intens (itens até o momento: {{currentProperties}})',
1334
- minItems: 'Deve ter {{minimumItems}} ou mais itens (itens até o momento: {{currentItems}})',
1335
- maxItems: 'Deve ter {{maximumItems}} ou menos itens (itens até o momento: {{currentItems}})',
1336
- uniqueItems: 'Todos os itens devem ser únicos',
1337
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1338
- };
1339
-
1340
- const zhValidationMessages = {
1341
- required: '必填字段.',
1342
- minLength: '字符长度必须大于或者等于 {{minimumLength}} (当前长度: {{currentLength}})',
1343
- maxLength: '字符长度必须小于或者等于 {{maximumLength}} (当前长度: {{currentLength}})',
1344
- pattern: '必须匹配正则表达式: {{requiredPattern}}',
1345
- format: function (error) {
1346
- switch (error.requiredFormat) {
1347
- case 'date':
1348
- return '必须为日期格式, 比如 "2000-12-31"';
1349
- case 'time':
1350
- return '必须为时间格式, 比如 "16:20" 或者 "03:14:15.9265"';
1351
- case 'date-time':
1352
- return '必须为日期时间格式, 比如 "2000-03-14T01:59" 或者 "2000-03-14T01:59:26.535Z"';
1353
- case 'email':
1354
- return '必须为邮箱地址, 比如 "name@example.com"';
1355
- case 'hostname':
1356
- return '必须为主机名, 比如 "example.com"';
1357
- case 'ipv4':
1358
- return '必须为 IPv4 地址, 比如 "127.0.0.1"';
1359
- case 'ipv6':
1360
- return '必须为 IPv6 地址, 比如 "1234:5678:9ABC:DEF0:1234:5678:9ABC:DEF0"';
1361
- // TODO: add examples for 'uri', 'uri-reference', and 'uri-template'
1362
- // case 'uri': case 'uri-reference': case 'uri-template':
1363
- case 'url':
1364
- return '必须为 url, 比如 "http://www.example.com/page.html"';
1365
- case 'uuid':
1366
- return '必须为 uuid, 比如 "12345678-9ABC-DEF0-1234-56789ABCDEF0"';
1367
- case 'color':
1368
- return '必须为颜色值, 比如 "#FFFFFF" 或者 "rgb(255, 255, 255)"';
1369
- case 'json-pointer':
1370
- return '必须为 JSON Pointer, 比如 "/pointer/to/something"';
1371
- case 'relative-json-pointer':
1372
- return '必须为相对的 JSON Pointer, 比如 "2/pointer/to/something"';
1373
- case 'regex':
1374
- return '必须为正则表达式, 比如 "(1-)?\\d{3}-\\d{3}-\\d{4}"';
1375
- default:
1376
- return '必须为格式正确的 ' + error.requiredFormat;
1330
+ returnItems = returnItems === null ? [...array] :
1331
+ returnItems.filter(item => array.includes(item));
1332
+ if (!returnItems.length) {
1333
+ return [];
1377
1334
  }
1378
- },
1379
- minimum: '必须大于或者等于最小值: {{minimumValue}}',
1380
- exclusiveMinimum: '必须大于最小值: {{exclusiveMinimumValue}}',
1381
- maximum: '必须小于或者等于最大值: {{maximumValue}}',
1382
- exclusiveMaximum: '必须小于最大值: {{exclusiveMaximumValue}}',
1383
- multipleOf: function (error) {
1384
- if ((1 / error.multipleOfValue) % 10 === 0) {
1385
- const decimals = Math.log10(1 / error.multipleOfValue);
1386
- return `必须有 ${decimals} 位或更少的小数位`;
1335
+ }
1336
+ return returnItems;
1337
+ }
1338
+ /**
1339
+ * 'fixTitle' function
1340
+ *
1341
+ *
1342
+ * // {string} input -
1343
+ * // {string} -
1344
+ */
1345
+ function fixTitle(name) {
1346
+ return name && toTitleCase(name.replace(/([a-z])([A-Z])/g, '$1 $2').replace(/_/g, ' '));
1347
+ }
1348
+ /**
1349
+ * 'toTitleCase' function
1350
+ *
1351
+ * Intelligently converts an input string to Title Case.
1352
+ *
1353
+ * Accepts an optional second parameter with a list of additional
1354
+ * words and abbreviations to force into a particular case.
1355
+ *
1356
+ * This function is built on prior work by John Gruber and David Gouch:
1357
+ * http://daringfireball.net/2008/08/title_case_update
1358
+ * https://github.com/gouch/to-title-case
1359
+ *
1360
+ * // {string} input -
1361
+ * // {string|string[]} forceWords? -
1362
+ * // {string} -
1363
+ */
1364
+ function toTitleCase(input, forceWords) {
1365
+ if (!isString(input)) {
1366
+ return input;
1367
+ }
1368
+ let forceArray = ['a', 'an', 'and', 'as', 'at', 'but', 'by', 'en',
1369
+ 'for', 'if', 'in', 'nor', 'of', 'on', 'or', 'per', 'the', 'to', 'v', 'v.',
1370
+ 'vs', 'vs.', 'via'];
1371
+ if (isString(forceWords)) {
1372
+ forceWords = forceWords.split('|');
1373
+ }
1374
+ if (isArray(forceWords)) {
1375
+ forceArray = forceArray.concat(forceWords);
1376
+ }
1377
+ const forceArrayLower = forceArray.map(w => w.toLowerCase());
1378
+ const noInitialCase = input === input.toUpperCase() || input === input.toLowerCase();
1379
+ let prevLastChar = '';
1380
+ input = input.trim();
1381
+ return input.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, (word, idx) => {
1382
+ if (!noInitialCase && word.slice(1).search(/[A-Z]|\../) !== -1) {
1383
+ return word;
1387
1384
  }
1388
1385
  else {
1389
- return `必须为 ${error.multipleOfValue} 的倍数`;
1386
+ let newWord;
1387
+ const forceWord = forceArray[forceArrayLower.indexOf(word.toLowerCase())];
1388
+ if (!forceWord) {
1389
+ if (noInitialCase) {
1390
+ if (word.slice(1).search(/\../) !== -1) {
1391
+ newWord = word.toLowerCase();
1392
+ }
1393
+ else {
1394
+ newWord = word[0].toUpperCase() + word.slice(1).toLowerCase();
1395
+ }
1396
+ }
1397
+ else {
1398
+ newWord = word[0].toUpperCase() + word.slice(1);
1399
+ }
1400
+ }
1401
+ else if (forceWord === forceWord.toLowerCase() && (idx === 0 || idx + word.length === input.length ||
1402
+ prevLastChar === ':' || input[idx - 1].search(/[^\s-]/) !== -1 ||
1403
+ (input[idx - 1] !== '-' && input[idx + word.length] === '-'))) {
1404
+ newWord = forceWord[0].toUpperCase() + forceWord.slice(1);
1405
+ }
1406
+ else {
1407
+ newWord = forceWord;
1408
+ }
1409
+ prevLastChar = word.slice(-1);
1410
+ return newWord;
1390
1411
  }
1391
- },
1392
- minProperties: '项目数必须大于或者等于 {{minimumProperties}} (当前项目数: {{currentProperties}})',
1393
- maxProperties: '项目数必须小于或者等于 {{maximumProperties}} (当前项目数: {{currentProperties}})',
1394
- minItems: '项目数必须大于或者等于 {{minimumItems}} (当前项目数: {{currentItems}})',
1395
- maxItems: '项目数必须小于或者等于 {{maximumItems}} (当前项目数: {{currentItems}})',
1396
- uniqueItems: '所有项目必须是唯一的',
1397
- // Note: No default error messages for 'type', 'const', 'enum', or 'dependencies'
1398
- };
1412
+ });
1413
+ }
1399
1414
 
1400
1415
  class JsonPointer {
1401
1416
  /**
@@ -6361,6 +6376,12 @@ function buildTitleMap(titleMap, enumList, fieldRequired = true, flatList = true
6361
6376
  // causes a library to be imported before another library it depends on.
6362
6377
 
6363
6378
  class JsonSchemaFormService {
6379
+ setDraggableState(value) {
6380
+ this.draggableStateSubject.next(value); // Update the draggable value
6381
+ }
6382
+ setSortableOptions(value) {
6383
+ this.sortableOptionsSubject.next(value); // Update the sortable options value
6384
+ }
6364
6385
  constructor() {
6365
6386
  this.JsonFormCompatibility = false;
6366
6387
  this.ReactJsonSchemaFormCompatibility = false;
@@ -6445,6 +6466,18 @@ class JsonSchemaFormService {
6445
6466
  validationMessages: {} // set by setLanguage()
6446
6467
  }
6447
6468
  };
6469
+ //this has been added to enable or disable the dragabble state of a component
6470
+ //using the OrderableDirective, mainly when an <input type="range">
6471
+ //elements are present, as the draggable attribute makes it difficult to
6472
+ //slide the range sliders and end up dragging
6473
+ //NB this will be set globally for all OrderableDirective instances
6474
+ //and will only be enabled when/if the caller sets the value back to true
6475
+ this.draggableStateSubject = new BehaviorSubject(true); // Default value true
6476
+ this.draggableState$ = this.draggableStateSubject.asObservable();
6477
+ //this is introduced to look at replacing the orderable directive with
6478
+ //nxt-sortablejs and sortablejs
6479
+ this.sortableOptionsSubject = new BehaviorSubject({ disabled: false }); // Default value true
6480
+ this.sortableOptions$ = this.sortableOptionsSubject.asObservable();
6448
6481
  this.setLanguage(this.language);
6449
6482
  this.ajv.addMetaSchema(jsonDraft6);
6450
6483
  this.ajv.addMetaSchema(jsonDraft7);
@@ -6996,53 +7029,153 @@ class JsonSchemaFormService {
6996
7029
  JsonPointer.insert(this.layout, this.getLayoutPointer(ctx), newLayoutNode);
6997
7030
  return true;
6998
7031
  }
6999
- moveArrayItem(ctx, oldIndex, newIndex) {
7000
- if (!ctx || !ctx.layoutNode ||
7001
- !isDefined(ctx.layoutNode().dataPointer) ||
7002
- !hasValue(ctx.dataIndex()) ||
7003
- !hasValue(ctx.layoutIndex()) ||
7004
- !isDefined(oldIndex) ||
7005
- !isDefined(newIndex) ||
7006
- oldIndex === newIndex) {
7007
- return false;
7008
- }
7009
- // Move item in the formArray
7010
- const formArray = this.getFormControlGroup(ctx);
7011
- const arrayItem = formArray.at(oldIndex);
7012
- formArray.removeAt(oldIndex);
7013
- formArray.insert(newIndex, arrayItem);
7014
- formArray.updateValueAndValidity();
7015
- // Move layout item
7016
- const layoutArray = this.getLayoutArray(ctx);
7017
- layoutArray.splice(newIndex, 0, layoutArray.splice(oldIndex, 1)[0]);
7018
- return true;
7032
+ moveArrayItem(ctx, oldIndex, newIndex, moveLayout = true) {
7033
+ if (!ctx || !ctx.layoutNode ||
7034
+ !isDefined(ctx.layoutNode().dataPointer) ||
7035
+ !hasValue(ctx.dataIndex()) ||
7036
+ !hasValue(ctx.layoutIndex()) ||
7037
+ !isDefined(oldIndex) ||
7038
+ !isDefined(newIndex) ||
7039
+ oldIndex === newIndex) {
7040
+ return false;
7041
+ }
7042
+ // Move item in the formArray
7043
+ const formArray = this.getFormControlGroup(ctx);
7044
+ const arrayItem = formArray.at(oldIndex);
7045
+ formArray.removeAt(oldIndex);
7046
+ formArray.insert(newIndex, arrayItem);
7047
+ formArray.updateValueAndValidity();
7048
+ // Move layout item
7049
+ if (moveLayout) {
7050
+ const layoutArray = this.getLayoutArray(ctx);
7051
+ layoutArray.splice(newIndex, 0, layoutArray.splice(oldIndex, 1)[0]);
7052
+ }
7053
+ return true;
7054
+ }
7055
+ removeItem(ctx) {
7056
+ if (!ctx || !ctx.layoutNode ||
7057
+ !isDefined(ctx.layoutNode().dataPointer) ||
7058
+ !hasValue(ctx.dataIndex()) ||
7059
+ !hasValue(ctx.layoutIndex())) {
7060
+ return false;
7061
+ }
7062
+ // Remove the Angular form control from the parent formArray or formGroup
7063
+ if (ctx.layoutNode().arrayItem) {
7064
+ // Remove array item from formArray
7065
+ this.getFormControlGroup(ctx).removeAt(ctx.dataIndex()[ctx.dataIndex().length - 1]);
7066
+ }
7067
+ else {
7068
+ // Remove $ref item from formGroup
7069
+ this.getFormControlGroup(ctx).removeControl(this.getFormControlName(ctx));
7070
+ }
7071
+ // Remove layoutNode from layout
7072
+ JsonPointer.remove(this.layout, this.getLayoutPointer(ctx));
7073
+ return true;
7074
+ }
7075
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
7076
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService }); }
7077
+ }
7078
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService, decorators: [{
7079
+ type: Injectable
7080
+ }], ctorParameters: () => [] });
7081
+
7082
+ class SelectWidgetComponent {
7083
+ constructor() {
7084
+ this.jsf = inject(JsonSchemaFormService);
7085
+ this.newComponent = null;
7086
+ this.layoutNode = input(undefined);
7087
+ this.layoutIndex = input(undefined);
7088
+ this.dataIndex = input(undefined);
7089
+ this.widgetContainer = viewChild('widgetContainer', { read: ViewContainerRef });
7090
+ }
7091
+ ngOnInit() {
7092
+ this.updateComponent();
7093
+ }
7094
+ ngOnChanges() {
7095
+ this.updateComponent();
7096
+ }
7097
+ updateComponent() {
7098
+ const widgetContainer = this.widgetContainer();
7099
+ if (widgetContainer && !this.newComponent && (this.layoutNode() || {}).widget) {
7100
+ this.newComponent = widgetContainer.createComponent((this.layoutNode().widget));
7101
+ }
7102
+ if (this.newComponent) {
7103
+ for (const input of ['layoutNode', 'layoutIndex', 'dataIndex']) {
7104
+ this.newComponent.instance[input] = this[input];
7105
+ }
7106
+ }
7107
+ }
7108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7109
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.13", type: SelectWidgetComponent, selector: "select-widget-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "widgetContainer", first: true, predicate: ["widgetContainer"], descendants: true, read: ViewContainerRef, isSignal: true }], usesOnChanges: true, ngImport: i0, template: `<div #widgetContainer></div>`, isInline: true }); }
7110
+ }
7111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectWidgetComponent, decorators: [{
7112
+ type: Component,
7113
+ args: [{
7114
+ // tslint:disable-next-line:component-selector
7115
+ selector: 'select-widget-widget',
7116
+ template: `<div #widgetContainer></div>`,
7117
+ }]
7118
+ }] });
7119
+
7120
+ class NoFrameworkComponent {
7121
+ constructor() {
7122
+ this.layoutNode = input(undefined);
7123
+ this.layoutIndex = input(undefined);
7124
+ this.dataIndex = input(undefined);
7125
+ }
7126
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7127
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: NoFrameworkComponent, selector: "no-framework", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<select-widget-widget [dataIndex]=\"dataIndex()\" [layoutIndex]=\"layoutIndex()\" [layoutNode]=\"layoutNode()\">\r\n</select-widget-widget>", dependencies: [{ kind: "component", type: SelectWidgetComponent, selector: "select-widget-widget", inputs: ["layoutNode", "layoutIndex", "dataIndex"] }] }); }
7128
+ }
7129
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkComponent, decorators: [{
7130
+ type: Component,
7131
+ args: [{ selector: 'no-framework', template: "<select-widget-widget [dataIndex]=\"dataIndex()\" [layoutIndex]=\"layoutIndex()\" [layoutNode]=\"layoutNode()\">\r\n</select-widget-widget>" }]
7132
+ }] });
7133
+
7134
+ // No framework - plain HTML controls (styles from form layout only)
7135
+ class NoFramework extends Framework {
7136
+ constructor() {
7137
+ super(...arguments);
7138
+ this.name = 'no-framework';
7139
+ this.text = 'None (plain HTML)';
7140
+ this.framework = NoFrameworkComponent;
7141
+ }
7142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
7143
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework }); }
7144
+ }
7145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework, decorators: [{
7146
+ type: Injectable
7147
+ }] });
7148
+
7149
+ class ElementAttributeDirective {
7150
+ constructor(renderer, elementRef) {
7151
+ this.renderer = renderer;
7152
+ this.elementRef = elementRef;
7019
7153
  }
7020
- removeItem(ctx) {
7021
- if (!ctx || !ctx.layoutNode ||
7022
- !isDefined(ctx.layoutNode().dataPointer) ||
7023
- !hasValue(ctx.dataIndex()) ||
7024
- !hasValue(ctx.layoutIndex())) {
7025
- return false;
7026
- }
7027
- // Remove the Angular form control from the parent formArray or formGroup
7028
- if (ctx.layoutNode().arrayItem) {
7029
- // Remove array item from formArray
7030
- this.getFormControlGroup(ctx).removeAt(ctx.dataIndex()[ctx.dataIndex().length - 1]);
7031
- }
7032
- else {
7033
- // Remove $ref item from formGroup
7034
- this.getFormControlGroup(ctx).removeControl(this.getFormControlName(ctx));
7154
+ ngOnChanges(changes) {
7155
+ if (changes.attributes) {
7156
+ for (let attributeName in this.attributes) {
7157
+ const attributeValue = this.attributes[attributeName];
7158
+ if (attributeValue) {
7159
+ this.renderer.setAttribute(this.elementRef.nativeElement, attributeName, attributeValue);
7160
+ }
7161
+ else {
7162
+ this.renderer.removeAttribute(this.elementRef.nativeElement, attributeName);
7163
+ }
7164
+ }
7035
7165
  }
7036
- // Remove layoutNode from layout
7037
- JsonPointer.remove(this.layout, this.getLayoutPointer(ctx));
7038
- return true;
7039
7166
  }
7040
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
7041
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService }); }
7167
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ElementAttributeDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
7168
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ElementAttributeDirective, selector: "[attributes]", inputs: { attributes: "attributes" }, usesOnChanges: true, ngImport: i0 }); }
7042
7169
  }
7043
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormService, decorators: [{
7044
- type: Injectable
7045
- }], ctorParameters: () => [] });
7170
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ElementAttributeDirective, decorators: [{
7171
+ type: Directive,
7172
+ args: [{
7173
+ selector: '[attributes]',
7174
+ standalone: false
7175
+ }]
7176
+ }], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { attributes: [{
7177
+ type: Input
7178
+ }] } });
7046
7179
 
7047
7180
  class AddReferenceComponent {
7048
7181
  constructor() {
@@ -7429,36 +7562,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7429
7562
  }]
7430
7563
  }] });
7431
7564
 
7432
- class ElementAttributeDirective {
7433
- constructor(renderer, elementRef) {
7434
- this.renderer = renderer;
7435
- this.elementRef = elementRef;
7565
+ class HiddenComponent {
7566
+ constructor() {
7567
+ this.jsf = inject(JsonSchemaFormService);
7568
+ this.controlDisabled = false;
7569
+ this.boundControl = false;
7570
+ this.layoutNode = input(undefined);
7571
+ this.layoutIndex = input(undefined);
7572
+ this.dataIndex = input(undefined);
7436
7573
  }
7437
- ngOnChanges(changes) {
7438
- if (changes.attributes) {
7439
- for (let attributeName in this.attributes) {
7440
- const attributeValue = this.attributes[attributeName];
7441
- if (attributeValue) {
7442
- this.renderer.setAttribute(this.elementRef.nativeElement, attributeName, attributeValue);
7443
- }
7444
- else {
7445
- this.renderer.removeAttribute(this.elementRef.nativeElement, attributeName);
7446
- }
7447
- }
7448
- }
7574
+ ngOnInit() {
7575
+ this.jsf.initializeControl(this);
7449
7576
  }
7450
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ElementAttributeDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
7451
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: ElementAttributeDirective, selector: "[attributes]", inputs: { attributes: "attributes" }, usesOnChanges: true, ngImport: i0 }); }
7577
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HiddenComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7578
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: HiddenComponent, selector: "hidden-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
7579
+ <input *ngIf="boundControl"
7580
+ [formControl]="formControl"
7581
+ [id]="'control' + layoutNode()?._id"
7582
+ [name]="controlName"
7583
+ type="hidden">
7584
+ <input *ngIf="!boundControl"
7585
+ [disabled]="controlDisabled"
7586
+ [name]="controlName"
7587
+ [id]="'control' + layoutNode()?._id"
7588
+ type="hidden"
7589
+ [value]="controlValue">`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
7452
7590
  }
7453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ElementAttributeDirective, decorators: [{
7454
- type: Directive,
7591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HiddenComponent, decorators: [{
7592
+ type: Component,
7455
7593
  args: [{
7456
- selector: '[attributes]',
7457
- standalone: false
7594
+ // tslint:disable-next-line:component-selector
7595
+ selector: 'hidden-widget',
7596
+ template: `
7597
+ <input *ngIf="boundControl"
7598
+ [formControl]="formControl"
7599
+ [id]="'control' + layoutNode()?._id"
7600
+ [name]="controlName"
7601
+ type="hidden">
7602
+ <input *ngIf="!boundControl"
7603
+ [disabled]="controlDisabled"
7604
+ [name]="controlName"
7605
+ [id]="'control' + layoutNode()?._id"
7606
+ type="hidden"
7607
+ [value]="controlValue">`,
7458
7608
  }]
7459
- }], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { attributes: [{
7460
- type: Input
7461
- }] } });
7609
+ }] });
7462
7610
 
7463
7611
  class InputComponent {
7464
7612
  constructor() {
@@ -7483,7 +7631,7 @@ class InputComponent {
7483
7631
  }
7484
7632
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7485
7633
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: InputComponent, selector: "input-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
7486
- <div [class]="options?.htmlClass || ''">
7634
+ <div [class]="options?.htmlClass || ''" class="sortable-filter" >
7487
7635
  <label *ngIf="options?.title"
7488
7636
  [attr.for]="'control' + layoutNode()?._id"
7489
7637
  [class]="options?.labelHtmlClass || ''"
@@ -7535,7 +7683,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7535
7683
  // tslint:disable-next-line:component-selector
7536
7684
  selector: 'input-widget',
7537
7685
  template: `
7538
- <div [class]="options?.htmlClass || ''">
7686
+ <div [class]="options?.htmlClass || ''" class="sortable-filter" >
7539
7687
  <label *ngIf="options?.title"
7540
7688
  [attr.for]="'control' + layoutNode()?._id"
7541
7689
  [class]="options?.labelHtmlClass || ''"
@@ -7632,6 +7780,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7632
7780
  }]
7633
7781
  }] });
7634
7782
 
7783
+ //TODO look at reusing InputComponent
7635
7784
  class NumberComponent {
7636
7785
  constructor() {
7637
7786
  this.jsf = inject(JsonSchemaFormService);
@@ -7645,6 +7794,10 @@ class NumberComponent {
7645
7794
  this.layoutIndex = input(undefined);
7646
7795
  this.dataIndex = input(undefined);
7647
7796
  }
7797
+ //needed as templates don't accept something like [attributes]="options?.['x-inputAttributes']"
7798
+ get inputAttributes() {
7799
+ return this.options?.['x-inputAttributes'];
7800
+ }
7648
7801
  ngOnInit() {
7649
7802
  this.options = this.layoutNode().options || {};
7650
7803
  this.jsf.initializeControl(this);
@@ -7656,14 +7809,14 @@ class NumberComponent {
7656
7809
  this.jsf.updateValue(this, event.target.value);
7657
7810
  }
7658
7811
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumberComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7659
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: NumberComponent, selector: "number-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
7660
- <div [class]="options?.htmlClass || ''">
7812
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: NumberComponent, selector: "number-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "inputControl", first: true, predicate: ["inputControl"], descendants: true }, { propertyName: "div", first: true, predicate: ["divElt"], descendants: true }], ngImport: i0, template: `
7813
+ <div #divElt [class]="options?.htmlClass || ''" class="sortable-filter" >
7661
7814
  <label *ngIf="options?.title"
7662
7815
  [attr.for]="'control' + layoutNode()?._id"
7663
7816
  [class]="options?.labelHtmlClass || ''"
7664
7817
  [style.display]="options?.notitle ? 'none' : ''"
7665
7818
  [innerHTML]="options?.title"></label>
7666
- <input *ngIf="boundControl"
7819
+ <input #inputControl *ngIf="boundControl"
7667
7820
  [formControl]="formControl"
7668
7821
  [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
7669
7822
  [attr.max]="options?.maximum"
@@ -7677,8 +7830,11 @@ class NumberComponent {
7677
7830
  [name]="controlName"
7678
7831
  [readonly]="options?.readonly ? 'readonly' : null"
7679
7832
  [title]="lastValidNumber"
7680
- [type]="layoutNode()?.type === 'range' ? 'range' : 'number'">
7681
- <input *ngIf="!boundControl"
7833
+ [type]="layoutNode()?.type === 'range' ? 'range' : 'number'"
7834
+ [attributes]="inputAttributes"
7835
+
7836
+ >
7837
+ <input #inputControl *ngIf="!boundControl"
7682
7838
  [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
7683
7839
  [attr.max]="options?.maximum"
7684
7840
  [attr.min]="options?.minimum"
@@ -7694,9 +7850,11 @@ class NumberComponent {
7694
7850
  [title]="lastValidNumber"
7695
7851
  [type]="layoutNode()?.type === 'range' ? 'range' : 'number'"
7696
7852
  [value]="controlValue"
7697
- (input)="updateValue($event)">
7853
+ (input)="updateValue($event)"
7854
+ [attributes]="inputAttributes"
7855
+ >
7698
7856
  <span *ngIf="layoutNode()?.type === 'range'" [innerHTML]="controlValue"></span>
7699
- </div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
7857
+ </div>`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: ElementAttributeDirective, selector: "[attributes]", inputs: ["attributes"] }] }); }
7700
7858
  }
7701
7859
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NumberComponent, decorators: [{
7702
7860
  type: Component,
@@ -7704,13 +7862,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7704
7862
  // tslint:disable-next-line:component-selector
7705
7863
  selector: 'number-widget',
7706
7864
  template: `
7707
- <div [class]="options?.htmlClass || ''">
7865
+ <div #divElt [class]="options?.htmlClass || ''" class="sortable-filter" >
7708
7866
  <label *ngIf="options?.title"
7709
7867
  [attr.for]="'control' + layoutNode()?._id"
7710
7868
  [class]="options?.labelHtmlClass || ''"
7711
7869
  [style.display]="options?.notitle ? 'none' : ''"
7712
7870
  [innerHTML]="options?.title"></label>
7713
- <input *ngIf="boundControl"
7871
+ <input #inputControl *ngIf="boundControl"
7714
7872
  [formControl]="formControl"
7715
7873
  [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
7716
7874
  [attr.max]="options?.maximum"
@@ -7724,8 +7882,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7724
7882
  [name]="controlName"
7725
7883
  [readonly]="options?.readonly ? 'readonly' : null"
7726
7884
  [title]="lastValidNumber"
7727
- [type]="layoutNode()?.type === 'range' ? 'range' : 'number'">
7728
- <input *ngIf="!boundControl"
7885
+ [type]="layoutNode()?.type === 'range' ? 'range' : 'number'"
7886
+ [attributes]="inputAttributes"
7887
+
7888
+ >
7889
+ <input #inputControl *ngIf="!boundControl"
7729
7890
  [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
7730
7891
  [attr.max]="options?.maximum"
7731
7892
  [attr.min]="options?.minimum"
@@ -7741,11 +7902,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
7741
7902
  [title]="lastValidNumber"
7742
7903
  [type]="layoutNode()?.type === 'range' ? 'range' : 'number'"
7743
7904
  [value]="controlValue"
7744
- (input)="updateValue($event)">
7905
+ (input)="updateValue($event)"
7906
+ [attributes]="inputAttributes"
7907
+ >
7745
7908
  <span *ngIf="layoutNode()?.type === 'range'" [innerHTML]="controlValue"></span>
7746
7909
  </div>`,
7747
7910
  }]
7748
- }] });
7911
+ }], propDecorators: { inputControl: [{
7912
+ type: ViewChild,
7913
+ args: ['inputControl', {}]
7914
+ }], div: [{
7915
+ type: ViewChild,
7916
+ args: ['divElt', {}]
7917
+ }] } });
7749
7918
 
7750
7919
  // TODO: Add this control
7751
7920
  class OneOfComponent {
@@ -8066,6 +8235,15 @@ class OrderableDirective {
8066
8235
  return false;
8067
8236
  });
8068
8237
  });
8238
+ // Subscribe to the draggable state
8239
+ this.draggableStateSubscription = this.jsf.draggableState$.subscribe((value) => {
8240
+ this.element.draggable = value;
8241
+ });
8242
+ }
8243
+ }
8244
+ ngOnDestroy() {
8245
+ if (this.draggableStateSubscription) {
8246
+ this.draggableStateSubscription.unsubscribe();
8069
8247
  }
8070
8248
  }
8071
8249
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OrderableDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
@@ -8087,10 +8265,42 @@ class RootComponent {
8087
8265
  this.layout = input(undefined);
8088
8266
  this.isOrderable = input(undefined);
8089
8267
  this.isFlexItem = input(false);
8268
+ this.sortableConfig = {
8269
+ filter: ".sortable-filter", //needed to disable dragging on input range elements, class needs to be added to the element or its parent
8270
+ preventOnFilter: false, //needed for input range elements slider do still work
8271
+ delay: 1000,
8272
+ delayOnTouchOnly: true,
8273
+ onEnd: (/**Event*/ evt) => {
8274
+ evt.newIndex; // most likely why this event is used is to get the dragging element's current index
8275
+ // same properties as onEnd
8276
+ //console.log(`sortablejs event:${evt}`);
8277
+ let srcInd = evt.oldIndex;
8278
+ let trgInd = evt.newIndex;
8279
+ let layoutItem = this.layout()[trgInd];
8280
+ let dataInd = layoutItem?.arrayItem ? (this.dataIndex() || []).concat(trgInd) : (this.dataIndex() || []);
8281
+ let layoutInd = (this.layoutIndex() || []).concat(trgInd);
8282
+ let itemCtx = {
8283
+ dataIndex: () => { return dataInd; },
8284
+ layoutIndex: () => { return layoutInd; },
8285
+ layoutNode: () => { return layoutItem; },
8286
+ };
8287
+ //must set moveLayout to false as nxtSortable already moves it
8288
+ this.jsf.moveArrayItem(itemCtx, evt.oldIndex, evt.newIndex, false);
8289
+ }
8290
+ };
8291
+ }
8292
+ sortableInit(sortable) {
8293
+ this.sortableObj = sortable;
8090
8294
  }
8091
8295
  isDraggable(node) {
8092
- return node.arrayItem && node.type !== '$ref' &&
8296
+ let result = node.arrayItem && node.type !== '$ref' &&
8093
8297
  node.arrayItemType === 'list' && this.isOrderable() !== false;
8298
+ if (this.sortableObj) {
8299
+ //this.sortableObj.option("disabled",true);
8300
+ //this.sortableObj.option("sort",false);
8301
+ //this.sortableObj.option("disabled",!result);
8302
+ }
8303
+ return result;
8094
8304
  }
8095
8305
  // Set attributes for flexbox child
8096
8306
  // (container attributes are set in section.component)
@@ -8102,48 +8312,86 @@ class RootComponent {
8102
8312
  showWidget(layoutNode) {
8103
8313
  return this.jsf.evaluateCondition(layoutNode, this.dataIndex());
8104
8314
  }
8315
+ ngOnInit() {
8316
+ // Subscribe to the draggable state
8317
+ this.sortableOptionsSubscription = this.jsf.sortableOptions$.subscribe((optsValue) => {
8318
+ if (this.sortableObj) {
8319
+ Object.keys(optsValue).forEach(opt => {
8320
+ let optVal = optsValue[opt];
8321
+ this.sortableObj.option(opt, optVal);
8322
+ });
8323
+ //this.sortableObj.option("disabled",true);
8324
+ //this.sortableObj.option("sort",false);
8325
+ }
8326
+ });
8327
+ }
8328
+ ngOnDestroy() {
8329
+ if (this.sortableOptionsSubscription) {
8330
+ this.sortableOptionsSubscription.unsubscribe();
8331
+ }
8332
+ }
8105
8333
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RootComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8106
8334
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: RootComponent, selector: "root-widget", inputs: { dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: false, transformFunction: null }, isOrderable: { classPropertyName: "isOrderable", publicName: "isOrderable", isSignal: true, isRequired: false, transformFunction: null }, isFlexItem: { classPropertyName: "isFlexItem", publicName: "isFlexItem", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
8107
- <div *ngFor="let layoutItem of layout(); let i = index"
8108
- [class.form-flex-item]="isFlexItem()"
8109
- [style.align-self]="(layoutItem.options || {})['align-self']"
8110
- [style.flex-basis]="getFlexAttribute(layoutItem, 'flex-basis')"
8111
- [style.flex-grow]="getFlexAttribute(layoutItem, 'flex-grow')"
8112
- [style.flex-shrink]="getFlexAttribute(layoutItem, 'flex-shrink')"
8113
- [style.order]="(layoutItem.options || {}).order">
8114
- <div
8115
- [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8116
- [layoutIndex]="(layoutIndex() || []).concat(i)"
8117
- [layoutNode]="layoutItem"
8118
- [orderable]="isDraggable(layoutItem)">
8119
- <select-framework-widget *ngIf="showWidget(layoutItem)"
8335
+ <div #sortableContainter [nxtSortablejs]="layout()" [config]="sortableConfig" (init)="sortableInit($event)">
8336
+ <div *ngFor="let layoutItem of layout(); let i = index"
8337
+ [class.form-flex-item]="isFlexItem()"
8338
+ [style.align-self]="(layoutItem.options || {})['align-self']"
8339
+ [style.flex-basis]="getFlexAttribute(layoutItem, 'flex-basis')"
8340
+ [style.flex-grow]="getFlexAttribute(layoutItem, 'flex-grow')"
8341
+ [style.flex-shrink]="getFlexAttribute(layoutItem, 'flex-shrink')"
8342
+ [style.order]="(layoutItem.options || {}).order"
8343
+ [class.sortable-filter]="!isDraggable(layoutItem)"
8344
+ >
8345
+ <!--NB orderable directive is not used but has been left in for now and set to false
8346
+ otherwise the compiler won't recognize dataIndex and other dependent attributes
8347
+ -->
8348
+ <div
8120
8349
  [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8121
8350
  [layoutIndex]="(layoutIndex() || []).concat(i)"
8122
- [layoutNode]="layoutItem"></select-framework-widget>
8351
+ [layoutNode]="layoutItem"
8352
+ [orderable]="false"
8353
+ [class.sortable-filter]="!isDraggable(layoutItem)"
8354
+ >
8355
+ <select-framework-widget *ngIf="showWidget(layoutItem)"
8356
+ [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8357
+ [layoutIndex]="(layoutIndex() || []).concat(i)"
8358
+ [layoutNode]="layoutItem"></select-framework-widget>
8359
+ </div>
8123
8360
  </div>
8124
- </div>`, isInline: true, styles: ["[draggable=true]{transition:all .15s cubic-bezier(.4,0,.2,1)}[draggable=true]:hover{cursor:move;box-shadow:2px 2px 4px #0003;position:relative;z-index:10;margin:-1px 1px 1px -1px}[draggable=true].drag-target-top{box-shadow:0 -2px #000;position:relative;z-index:20}[draggable=true].drag-target-bottom{box-shadow:0 2px #000;position:relative;z-index:20}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SelectFrameworkComponent, selector: "select-framework-widget", inputs: ["layoutNode", "layoutIndex", "dataIndex"] }, { kind: "directive", type: OrderableDirective, selector: "[orderable]", inputs: ["orderable", "layoutNode", "layoutIndex", "dataIndex"] }] }); }
8361
+ </div>
8362
+ `, isInline: true, styles: ["[draggable=true]{transition:all .15s cubic-bezier(.4,0,.2,1)}[draggable=true]:hover{cursor:move;box-shadow:2px 2px 4px #0003;position:relative;z-index:10;margin:-1px 1px 1px -1px}[draggable=true].drag-target-top{box-shadow:0 -2px #000;position:relative;z-index:20}[draggable=true].drag-target-bottom{box-shadow:0 2px #000;position:relative;z-index:20}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2$1.SortablejsDirective, selector: "[nxtSortablejs]", inputs: ["nxtSortablejs", "sortablejsContainer", "config", "cloneFunction"], outputs: ["init"] }, { kind: "component", type: SelectFrameworkComponent, selector: "select-framework-widget", inputs: ["layoutNode", "layoutIndex", "dataIndex"] }, { kind: "directive", type: OrderableDirective, selector: "[orderable]", inputs: ["orderable", "layoutNode", "layoutIndex", "dataIndex"] }] }); }
8125
8363
  }
8126
8364
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: RootComponent, decorators: [{
8127
8365
  type: Component,
8128
8366
  args: [{ selector: 'root-widget', template: `
8129
- <div *ngFor="let layoutItem of layout(); let i = index"
8130
- [class.form-flex-item]="isFlexItem()"
8131
- [style.align-self]="(layoutItem.options || {})['align-self']"
8132
- [style.flex-basis]="getFlexAttribute(layoutItem, 'flex-basis')"
8133
- [style.flex-grow]="getFlexAttribute(layoutItem, 'flex-grow')"
8134
- [style.flex-shrink]="getFlexAttribute(layoutItem, 'flex-shrink')"
8135
- [style.order]="(layoutItem.options || {}).order">
8136
- <div
8137
- [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8138
- [layoutIndex]="(layoutIndex() || []).concat(i)"
8139
- [layoutNode]="layoutItem"
8140
- [orderable]="isDraggable(layoutItem)">
8141
- <select-framework-widget *ngIf="showWidget(layoutItem)"
8367
+ <div #sortableContainter [nxtSortablejs]="layout()" [config]="sortableConfig" (init)="sortableInit($event)">
8368
+ <div *ngFor="let layoutItem of layout(); let i = index"
8369
+ [class.form-flex-item]="isFlexItem()"
8370
+ [style.align-self]="(layoutItem.options || {})['align-self']"
8371
+ [style.flex-basis]="getFlexAttribute(layoutItem, 'flex-basis')"
8372
+ [style.flex-grow]="getFlexAttribute(layoutItem, 'flex-grow')"
8373
+ [style.flex-shrink]="getFlexAttribute(layoutItem, 'flex-shrink')"
8374
+ [style.order]="(layoutItem.options || {}).order"
8375
+ [class.sortable-filter]="!isDraggable(layoutItem)"
8376
+ >
8377
+ <!--NB orderable directive is not used but has been left in for now and set to false
8378
+ otherwise the compiler won't recognize dataIndex and other dependent attributes
8379
+ -->
8380
+ <div
8142
8381
  [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8143
8382
  [layoutIndex]="(layoutIndex() || []).concat(i)"
8144
- [layoutNode]="layoutItem"></select-framework-widget>
8383
+ [layoutNode]="layoutItem"
8384
+ [orderable]="false"
8385
+ [class.sortable-filter]="!isDraggable(layoutItem)"
8386
+ >
8387
+ <select-framework-widget *ngIf="showWidget(layoutItem)"
8388
+ [dataIndex]="layoutItem?.arrayItem ? (dataIndex() || []).concat(i) : (dataIndex() || [])"
8389
+ [layoutIndex]="(layoutIndex() || []).concat(i)"
8390
+ [layoutNode]="layoutItem"></select-framework-widget>
8391
+ </div>
8145
8392
  </div>
8146
- </div>`, styles: ["[draggable=true]{transition:all .15s cubic-bezier(.4,0,.2,1)}[draggable=true]:hover{cursor:move;box-shadow:2px 2px 4px #0003;position:relative;z-index:10;margin:-1px 1px 1px -1px}[draggable=true].drag-target-top{box-shadow:0 -2px #000;position:relative;z-index:20}[draggable=true].drag-target-bottom{box-shadow:0 2px #000;position:relative;z-index:20}\n"] }]
8393
+ </div>
8394
+ `, standalone: false, styles: ["[draggable=true]{transition:all .15s cubic-bezier(.4,0,.2,1)}[draggable=true]:hover{cursor:move;box-shadow:2px 2px 4px #0003;position:relative;z-index:10;margin:-1px 1px 1px -1px}[draggable=true].drag-target-top{box-shadow:0 -2px #000;position:relative;z-index:20}[draggable=true].drag-target-bottom{box-shadow:0 2px #000;position:relative;z-index:20}\n"] }]
8147
8395
  }] });
8148
8396
 
8149
8397
  class SectionComponent {
@@ -8218,7 +8466,7 @@ class SectionComponent {
8218
8466
  [class]="options?.labelHtmlClass || ''"
8219
8467
  [innerHTML]="sectionTitle"
8220
8468
  (click)="toggleExpanded()"></label>
8221
- <root-widget *ngIf="expanded"
8469
+ <root-widget
8222
8470
  [dataIndex]="dataIndex()"
8223
8471
  [layout]="layoutNode().items"
8224
8472
  [layoutIndex]="layoutIndex()"
@@ -8228,7 +8476,7 @@ class SectionComponent {
8228
8476
  [class.form-flex-row]="getFlexAttribute('flex-direction') === 'row'"
8229
8477
  [style.align-content]="getFlexAttribute('align-content')"
8230
8478
  [style.align-items]="getFlexAttribute('align-items')"
8231
- [style.display]="getFlexAttribute('display')"
8479
+ [style.display]="!expanded?'none':getFlexAttribute('display')"
8232
8480
  [style.flex-direction]="getFlexAttribute('flex-direction')"
8233
8481
  [style.flex-wrap]="getFlexAttribute('flex-wrap')"
8234
8482
  [style.justify-content]="getFlexAttribute('justify-content')"></root-widget>
@@ -8249,7 +8497,7 @@ class SectionComponent {
8249
8497
  [class]="options?.labelHelpBlockClass || ''"
8250
8498
  [innerHTML]="options?.description"></p>
8251
8499
  </div>
8252
- <root-widget *ngIf="expanded"
8500
+ <root-widget
8253
8501
  [dataIndex]="dataIndex()"
8254
8502
  [layout]="layoutNode().items"
8255
8503
  [layoutIndex]="layoutIndex()"
@@ -8259,7 +8507,7 @@ class SectionComponent {
8259
8507
  [class.form-flex-row]="getFlexAttribute('flex-direction') === 'row'"
8260
8508
  [style.align-content]="getFlexAttribute('align-content')"
8261
8509
  [style.align-items]="getFlexAttribute('align-items')"
8262
- [style.display]="getFlexAttribute('display')"
8510
+ [style.display]="!expanded?'none':getFlexAttribute('display')"
8263
8511
  [style.flex-direction]="getFlexAttribute('flex-direction')"
8264
8512
  [style.flex-wrap]="getFlexAttribute('flex-wrap')"
8265
8513
  [style.justify-content]="getFlexAttribute('justify-content')"></root-widget>
@@ -8283,7 +8531,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8283
8531
  [class]="options?.labelHtmlClass || ''"
8284
8532
  [innerHTML]="sectionTitle"
8285
8533
  (click)="toggleExpanded()"></label>
8286
- <root-widget *ngIf="expanded"
8534
+ <root-widget
8287
8535
  [dataIndex]="dataIndex()"
8288
8536
  [layout]="layoutNode().items"
8289
8537
  [layoutIndex]="layoutIndex()"
@@ -8293,7 +8541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8293
8541
  [class.form-flex-row]="getFlexAttribute('flex-direction') === 'row'"
8294
8542
  [style.align-content]="getFlexAttribute('align-content')"
8295
8543
  [style.align-items]="getFlexAttribute('align-items')"
8296
- [style.display]="getFlexAttribute('display')"
8544
+ [style.display]="!expanded?'none':getFlexAttribute('display')"
8297
8545
  [style.flex-direction]="getFlexAttribute('flex-direction')"
8298
8546
  [style.flex-wrap]="getFlexAttribute('flex-wrap')"
8299
8547
  [style.justify-content]="getFlexAttribute('justify-content')"></root-widget>
@@ -8314,7 +8562,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8314
8562
  [class]="options?.labelHelpBlockClass || ''"
8315
8563
  [innerHTML]="options?.description"></p>
8316
8564
  </div>
8317
- <root-widget *ngIf="expanded"
8565
+ <root-widget
8318
8566
  [dataIndex]="dataIndex()"
8319
8567
  [layout]="layoutNode().items"
8320
8568
  [layoutIndex]="layoutIndex()"
@@ -8324,7 +8572,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8324
8572
  [class.form-flex-row]="getFlexAttribute('flex-direction') === 'row'"
8325
8573
  [style.align-content]="getFlexAttribute('align-content')"
8326
8574
  [style.align-items]="getFlexAttribute('align-items')"
8327
- [style.display]="getFlexAttribute('display')"
8575
+ [style.display]="!expanded?'none':getFlexAttribute('display')"
8328
8576
  [style.flex-direction]="getFlexAttribute('flex-direction')"
8329
8577
  [style.flex-wrap]="getFlexAttribute('flex-wrap')"
8330
8578
  [style.justify-content]="getFlexAttribute('justify-content')"></root-widget>
@@ -8449,70 +8697,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8449
8697
  </optgroup>
8450
8698
  </ng-template>
8451
8699
  </select>
8452
- <select *ngIf="!boundControl"
8453
- [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
8454
- [attr.readonly]="options?.readonly ? 'readonly' : null"
8455
- [attr.required]="options?.required"
8456
- [class]="options?.fieldHtmlClass || ''"
8457
- [disabled]="controlDisabled"
8458
- [id]="'control' + layoutNode()?._id"
8459
- [name]="controlName"
8460
- (change)="updateValue($event)">
8461
- <ng-template ngFor let-selectItem [ngForOf]="selectList">
8462
- <option *ngIf="!isArray(selectItem?.items)"
8463
- [selected]="selectItem?.value === controlValue"
8464
- [value]="selectItem?.value">
8465
- <span [innerHTML]="selectItem?.name"></span>
8466
- </option>
8467
- <optgroup *ngIf="isArray(selectItem?.items)"
8468
- [label]="selectItem?.group">
8469
- <option *ngFor="let subItem of selectItem.items"
8470
- [attr.selected]="subItem?.value === controlValue"
8471
- [value]="subItem?.value">
8472
- <span [innerHTML]="subItem?.name"></span>
8473
- </option>
8474
- </optgroup>
8475
- </ng-template>
8476
- </select>
8477
- </div>`,
8478
- }]
8479
- }] });
8480
-
8481
- class SelectWidgetComponent {
8482
- constructor() {
8483
- this.jsf = inject(JsonSchemaFormService);
8484
- this.newComponent = null;
8485
- this.layoutNode = input(undefined);
8486
- this.layoutIndex = input(undefined);
8487
- this.dataIndex = input(undefined);
8488
- this.widgetContainer = viewChild('widgetContainer', { read: ViewContainerRef });
8489
- }
8490
- ngOnInit() {
8491
- this.updateComponent();
8492
- }
8493
- ngOnChanges() {
8494
- this.updateComponent();
8495
- }
8496
- updateComponent() {
8497
- const widgetContainer = this.widgetContainer();
8498
- if (widgetContainer && !this.newComponent && (this.layoutNode() || {}).widget) {
8499
- this.newComponent = widgetContainer.createComponent((this.layoutNode().widget));
8500
- }
8501
- if (this.newComponent) {
8502
- for (const input of ['layoutNode', 'layoutIndex', 'dataIndex']) {
8503
- this.newComponent.instance[input] = this[input];
8504
- }
8505
- }
8506
- }
8507
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectWidgetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8508
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "18.2.13", type: SelectWidgetComponent, selector: "select-widget-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "widgetContainer", first: true, predicate: ["widgetContainer"], descendants: true, read: ViewContainerRef, isSignal: true }], usesOnChanges: true, ngImport: i0, template: `<div #widgetContainer></div>`, isInline: true }); }
8509
- }
8510
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectWidgetComponent, decorators: [{
8511
- type: Component,
8512
- args: [{
8513
- // tslint:disable-next-line:component-selector
8514
- selector: 'select-widget-widget',
8515
- template: `<div #widgetContainer></div>`,
8700
+ <select *ngIf="!boundControl"
8701
+ [attr.aria-describedby]="'control' + layoutNode()?._id + 'Status'"
8702
+ [attr.readonly]="options?.readonly ? 'readonly' : null"
8703
+ [attr.required]="options?.required"
8704
+ [class]="options?.fieldHtmlClass || ''"
8705
+ [disabled]="controlDisabled"
8706
+ [id]="'control' + layoutNode()?._id"
8707
+ [name]="controlName"
8708
+ (change)="updateValue($event)">
8709
+ <ng-template ngFor let-selectItem [ngForOf]="selectList">
8710
+ <option *ngIf="!isArray(selectItem?.items)"
8711
+ [selected]="selectItem?.value === controlValue"
8712
+ [value]="selectItem?.value">
8713
+ <span [innerHTML]="selectItem?.name"></span>
8714
+ </option>
8715
+ <optgroup *ngIf="isArray(selectItem?.items)"
8716
+ [label]="selectItem?.group">
8717
+ <option *ngFor="let subItem of selectItem.items"
8718
+ [attr.selected]="subItem?.value === controlValue"
8719
+ [value]="subItem?.value">
8720
+ <span [innerHTML]="subItem?.name"></span>
8721
+ </option>
8722
+ </optgroup>
8723
+ </ng-template>
8724
+ </select>
8725
+ </div>`,
8516
8726
  }]
8517
8727
  }] });
8518
8728
 
@@ -8591,6 +8801,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
8591
8801
  }]
8592
8802
  }] });
8593
8803
 
8804
+ class TabComponent {
8805
+ constructor() {
8806
+ this.jsf = inject(JsonSchemaFormService);
8807
+ this.layoutNode = input(undefined);
8808
+ this.layoutIndex = input(undefined);
8809
+ this.dataIndex = input(undefined);
8810
+ }
8811
+ ngOnInit() {
8812
+ this.options = this.layoutNode().options || {};
8813
+ }
8814
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
8815
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: TabComponent, selector: "tab-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
8816
+ <div [class]="options?.htmlClass || ''">
8817
+ <root-widget
8818
+ [dataIndex]="dataIndex()"
8819
+ [layoutIndex]="layoutIndex()"
8820
+ [layout]="layoutNode().items"></root-widget>
8821
+ </div>`, isInline: true, dependencies: [{ kind: "component", type: RootComponent, selector: "root-widget", inputs: ["dataIndex", "layoutIndex", "layout", "isOrderable", "isFlexItem"] }] }); }
8822
+ }
8823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabComponent, decorators: [{
8824
+ type: Component,
8825
+ args: [{
8826
+ // tslint:disable-next-line:component-selector
8827
+ selector: 'tab-widget',
8828
+ template: `
8829
+ <div [class]="options?.htmlClass || ''">
8830
+ <root-widget
8831
+ [dataIndex]="dataIndex()"
8832
+ [layoutIndex]="layoutIndex()"
8833
+ [layout]="layoutNode().items"></root-widget>
8834
+ </div>`,
8835
+ }]
8836
+ }] });
8837
+
8594
8838
  class TabsComponent {
8595
8839
  constructor() {
8596
8840
  this.jsf = inject(JsonSchemaFormService);
@@ -9030,17 +9274,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
9030
9274
  }]
9031
9275
  }], ctorParameters: () => [] });
9032
9276
 
9033
- class Framework {
9034
- constructor() {
9035
- this.widgets = {};
9036
- this.stylesheets = [];
9037
- this.scripts = [];
9038
- }
9039
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
9040
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework }); }
9277
+ const BASIC_WIDGETS = [
9278
+ AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent,
9279
+ CheckboxesComponent, FileComponent, HiddenComponent, InputComponent,
9280
+ MessageComponent, NoneComponent, NumberComponent, RadiosComponent,
9281
+ RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent,
9282
+ SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent,
9283
+ TemplateComponent, TextareaComponent
9284
+ ];
9285
+
9286
+ class WidgetLibraryModule {
9287
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
9288
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, declarations: [AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent, CheckboxesComponent, FileComponent, HiddenComponent, InputComponent, MessageComponent, NoneComponent, NumberComponent, RadiosComponent, RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent, SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent, TemplateComponent, TextareaComponent, OrderableDirective, ElementAttributeDirective], imports: [CommonModule, FormsModule, ReactiveFormsModule, i2$1.SortablejsModule], exports: [AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent, CheckboxesComponent, FileComponent, HiddenComponent, InputComponent, MessageComponent, NoneComponent, NumberComponent, RadiosComponent, RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent, SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent, TemplateComponent, TextareaComponent, OrderableDirective, ElementAttributeDirective] }); }
9289
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, imports: [CommonModule, FormsModule, ReactiveFormsModule,
9290
+ SortablejsModule.forRoot({
9291
+ //disabled:false,
9292
+ //draggable:".draggableitem",//">:not(.nonsort)",//">.draggable-item",//":not(.nonsort)",//">*",//":not(.nonsort)",//":not(.non-draggable)",
9293
+ filter: ".sortable-filter", //needed to disable dragging on input range elements, class needs to be added to the element or its parent
9294
+ preventOnFilter: false //needed for input range elements slider do still work
9295
+ })] }); }
9041
9296
  }
9042
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Framework, decorators: [{
9043
- type: Injectable
9297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, decorators: [{
9298
+ type: NgModule,
9299
+ args: [{
9300
+ imports: [CommonModule, FormsModule, ReactiveFormsModule,
9301
+ SortablejsModule.forRoot({
9302
+ //disabled:false,
9303
+ //draggable:".draggableitem",//">:not(.nonsort)",//">.draggable-item",//":not(.nonsort)",//">*",//":not(.nonsort)",//":not(.non-draggable)",
9304
+ filter: ".sortable-filter", //needed to disable dragging on input range elements, class needs to be added to the element or its parent
9305
+ preventOnFilter: false //needed for input range elements slider do still work
9306
+ })],
9307
+ declarations: [...BASIC_WIDGETS, OrderableDirective, ElementAttributeDirective],
9308
+ exports: [...BASIC_WIDGETS, OrderableDirective, ElementAttributeDirective]
9309
+ }]
9310
+ }] });
9311
+
9312
+ // No framework - plain HTML controls (styles from form layout only)
9313
+ class NoFrameworkModule {
9314
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
9315
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, declarations: [NoFrameworkComponent], imports: [CommonModule, WidgetLibraryModule], exports: [NoFrameworkComponent] }); }
9316
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, providers: [
9317
+ { provide: Framework, useClass: NoFramework, multi: true }
9318
+ ], imports: [CommonModule, WidgetLibraryModule] }); }
9319
+ }
9320
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, decorators: [{
9321
+ type: NgModule,
9322
+ args: [{
9323
+ imports: [CommonModule, WidgetLibraryModule],
9324
+ declarations: [NoFrameworkComponent],
9325
+ exports: [NoFrameworkComponent],
9326
+ providers: [
9327
+ { provide: Framework, useClass: NoFramework, multi: true }
9328
+ ]
9329
+ }]
9044
9330
  }] });
9045
9331
 
9046
9332
  // Possible future frameworks:
@@ -9950,158 +10236,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
9950
10236
  type: Input
9951
10237
  }] } });
9952
10238
 
9953
- class NoFrameworkComponent {
9954
- constructor() {
9955
- this.layoutNode = input(undefined);
9956
- this.layoutIndex = input(undefined);
9957
- this.dataIndex = input(undefined);
9958
- }
9959
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9960
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: NoFrameworkComponent, selector: "no-framework", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<select-widget-widget [dataIndex]=\"dataIndex()\" [layoutIndex]=\"layoutIndex()\" [layoutNode]=\"layoutNode()\">\r\n</select-widget-widget>", dependencies: [{ kind: "component", type: SelectWidgetComponent, selector: "select-widget-widget", inputs: ["layoutNode", "layoutIndex", "dataIndex"] }] }); }
9961
- }
9962
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkComponent, decorators: [{
9963
- type: Component,
9964
- args: [{ selector: 'no-framework', template: "<select-widget-widget [dataIndex]=\"dataIndex()\" [layoutIndex]=\"layoutIndex()\" [layoutNode]=\"layoutNode()\">\r\n</select-widget-widget>" }]
9965
- }] });
9966
-
9967
- // No framework - plain HTML controls (styles from form layout only)
9968
- class NoFramework extends Framework {
9969
- constructor() {
9970
- super(...arguments);
9971
- this.name = 'no-framework';
9972
- this.text = 'None (plain HTML)';
9973
- this.framework = NoFrameworkComponent;
9974
- }
9975
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
9976
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework }); }
9977
- }
9978
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFramework, decorators: [{
9979
- type: Injectable
9980
- }] });
9981
-
9982
- class HiddenComponent {
9983
- constructor() {
9984
- this.jsf = inject(JsonSchemaFormService);
9985
- this.controlDisabled = false;
9986
- this.boundControl = false;
9987
- this.layoutNode = input(undefined);
9988
- this.layoutIndex = input(undefined);
9989
- this.dataIndex = input(undefined);
9990
- }
9991
- ngOnInit() {
9992
- this.jsf.initializeControl(this);
9993
- }
9994
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HiddenComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9995
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: HiddenComponent, selector: "hidden-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
9996
- <input *ngIf="boundControl"
9997
- [formControl]="formControl"
9998
- [id]="'control' + layoutNode()?._id"
9999
- [name]="controlName"
10000
- type="hidden">
10001
- <input *ngIf="!boundControl"
10002
- [disabled]="controlDisabled"
10003
- [name]="controlName"
10004
- [id]="'control' + layoutNode()?._id"
10005
- type="hidden"
10006
- [value]="controlValue">`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
10007
- }
10008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HiddenComponent, decorators: [{
10009
- type: Component,
10010
- args: [{
10011
- // tslint:disable-next-line:component-selector
10012
- selector: 'hidden-widget',
10013
- template: `
10014
- <input *ngIf="boundControl"
10015
- [formControl]="formControl"
10016
- [id]="'control' + layoutNode()?._id"
10017
- [name]="controlName"
10018
- type="hidden">
10019
- <input *ngIf="!boundControl"
10020
- [disabled]="controlDisabled"
10021
- [name]="controlName"
10022
- [id]="'control' + layoutNode()?._id"
10023
- type="hidden"
10024
- [value]="controlValue">`,
10025
- }]
10026
- }] });
10027
-
10028
- class TabComponent {
10029
- constructor() {
10030
- this.jsf = inject(JsonSchemaFormService);
10031
- this.layoutNode = input(undefined);
10032
- this.layoutIndex = input(undefined);
10033
- this.dataIndex = input(undefined);
10034
- }
10035
- ngOnInit() {
10036
- this.options = this.layoutNode().options || {};
10037
- }
10038
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10039
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.2.13", type: TabComponent, selector: "tab-widget", inputs: { layoutNode: { classPropertyName: "layoutNode", publicName: "layoutNode", isSignal: true, isRequired: false, transformFunction: null }, layoutIndex: { classPropertyName: "layoutIndex", publicName: "layoutIndex", isSignal: true, isRequired: false, transformFunction: null }, dataIndex: { classPropertyName: "dataIndex", publicName: "dataIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
10040
- <div [class]="options?.htmlClass || ''">
10041
- <root-widget
10042
- [dataIndex]="dataIndex()"
10043
- [layoutIndex]="layoutIndex()"
10044
- [layout]="layoutNode().items"></root-widget>
10045
- </div>`, isInline: true, dependencies: [{ kind: "component", type: RootComponent, selector: "root-widget", inputs: ["dataIndex", "layoutIndex", "layout", "isOrderable", "isFlexItem"] }] }); }
10046
- }
10047
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: TabComponent, decorators: [{
10048
- type: Component,
10049
- args: [{
10050
- // tslint:disable-next-line:component-selector
10051
- selector: 'tab-widget',
10052
- template: `
10053
- <div [class]="options?.htmlClass || ''">
10054
- <root-widget
10055
- [dataIndex]="dataIndex()"
10056
- [layoutIndex]="layoutIndex()"
10057
- [layout]="layoutNode().items"></root-widget>
10058
- </div>`,
10059
- }]
10060
- }] });
10061
-
10062
- const BASIC_WIDGETS = [
10063
- AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent,
10064
- CheckboxesComponent, FileComponent, HiddenComponent, InputComponent,
10065
- MessageComponent, NoneComponent, NumberComponent, RadiosComponent,
10066
- RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent,
10067
- SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent,
10068
- TemplateComponent, TextareaComponent
10069
- ];
10070
-
10071
- class WidgetLibraryModule {
10072
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
10073
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, declarations: [AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent, CheckboxesComponent, FileComponent, HiddenComponent, InputComponent, MessageComponent, NoneComponent, NumberComponent, RadiosComponent, RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent, SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent, TemplateComponent, TextareaComponent, OrderableDirective, ElementAttributeDirective], imports: [CommonModule, FormsModule, ReactiveFormsModule], exports: [AddReferenceComponent, OneOfComponent, ButtonComponent, CheckboxComponent, CheckboxesComponent, FileComponent, HiddenComponent, InputComponent, MessageComponent, NoneComponent, NumberComponent, RadiosComponent, RootComponent, SectionComponent, SelectComponent, SelectFrameworkComponent, SelectWidgetComponent, SubmitComponent, TabComponent, TabsComponent, TemplateComponent, TextareaComponent, OrderableDirective, ElementAttributeDirective] }); }
10074
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, imports: [CommonModule, FormsModule, ReactiveFormsModule] }); }
10075
- }
10076
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: WidgetLibraryModule, decorators: [{
10077
- type: NgModule,
10078
- args: [{
10079
- imports: [CommonModule, FormsModule, ReactiveFormsModule],
10080
- declarations: [...BASIC_WIDGETS, OrderableDirective, ElementAttributeDirective],
10081
- exports: [...BASIC_WIDGETS, OrderableDirective, ElementAttributeDirective]
10082
- }]
10083
- }] });
10084
-
10085
- // No framework - plain HTML controls (styles from form layout only)
10086
- class NoFrameworkModule {
10087
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
10088
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, declarations: [NoFrameworkComponent], imports: [CommonModule, WidgetLibraryModule], exports: [NoFrameworkComponent] }); }
10089
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, providers: [
10090
- { provide: Framework, useClass: NoFramework, multi: true }
10091
- ], imports: [CommonModule, WidgetLibraryModule] }); }
10092
- }
10093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NoFrameworkModule, decorators: [{
10094
- type: NgModule,
10095
- args: [{
10096
- imports: [CommonModule, WidgetLibraryModule],
10097
- declarations: [NoFrameworkComponent],
10098
- exports: [NoFrameworkComponent],
10099
- providers: [
10100
- { provide: Framework, useClass: NoFramework, multi: true }
10101
- ]
10102
- }]
10103
- }] });
10104
-
10105
10239
  class JsonSchemaFormModule {
10106
10240
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
10107
10241
  static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: JsonSchemaFormModule, declarations: [JsonSchemaFormComponent], imports: [CommonModule, FormsModule, ReactiveFormsModule,