@defra/forms-model 3.0.178 → 3.0.180
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.
- package/dist/module/components/component-types.js +4 -42
- package/dist/module/components/component-types.js.map +1 -1
- package/dist/module/components/enums.js +0 -5
- package/dist/module/components/enums.js.map +1 -1
- package/dist/module/components/helpers.js +57 -0
- package/dist/module/components/helpers.js.map +1 -0
- package/dist/module/components/index.js +2 -1
- package/dist/module/components/index.js.map +1 -1
- package/dist/module/components/types.js.map +1 -1
- package/dist/module/conditions/condition-field.js +5 -5
- package/dist/module/conditions/condition-field.js.map +1 -1
- package/dist/module/conditions/condition-operators.js +64 -48
- package/dist/module/conditions/condition-operators.js.map +1 -1
- package/dist/module/conditions/condition-ref.js.map +1 -1
- package/dist/module/conditions/condition-values.js +9 -10
- package/dist/module/conditions/condition-values.js.map +1 -1
- package/dist/module/conditions/condition.js.map +1 -1
- package/dist/module/conditions/enums.js +31 -0
- package/dist/module/conditions/enums.js.map +1 -1
- package/dist/module/conditions/index.js +2 -2
- package/dist/module/conditions/index.js.map +1 -1
- package/dist/module/conditions/types.js.map +1 -1
- package/dist/types/components/component-types.d.ts +1 -0
- package/dist/types/components/component-types.d.ts.map +1 -1
- package/dist/types/components/enums.d.ts +1 -6
- package/dist/types/components/enums.d.ts.map +1 -1
- package/dist/types/components/helpers.d.ts +30 -0
- package/dist/types/components/helpers.d.ts.map +1 -0
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +8 -40
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/conditions/condition-field.d.ts +6 -6
- package/dist/types/conditions/condition-field.d.ts.map +1 -1
- package/dist/types/conditions/condition-operators.d.ts +56 -232
- package/dist/types/conditions/condition-operators.d.ts.map +1 -1
- package/dist/types/conditions/condition-ref.d.ts +3 -3
- package/dist/types/conditions/condition-ref.d.ts.map +1 -1
- package/dist/types/conditions/condition-values.d.ts +5 -8
- package/dist/types/conditions/condition-values.d.ts.map +1 -1
- package/dist/types/conditions/condition.d.ts +6 -6
- package/dist/types/conditions/condition.d.ts.map +1 -1
- package/dist/types/conditions/enums.d.ts +28 -0
- package/dist/types/conditions/enums.d.ts.map +1 -1
- package/dist/types/conditions/index.d.ts +2 -2
- package/dist/types/conditions/index.d.ts.map +1 -1
- package/dist/types/conditions/types.d.ts +8 -0
- package/dist/types/conditions/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/component-types.ts +6 -47
- package/src/components/enums.ts +1 -6
- package/src/components/helpers.ts +138 -0
- package/src/components/index.ts +14 -1
- package/src/components/types.ts +49 -58
- package/src/conditions/condition-field.ts +25 -11
- package/src/conditions/condition-operators.ts +129 -96
- package/src/conditions/condition-ref.ts +2 -2
- package/src/conditions/condition-values.ts +15 -20
- package/src/conditions/condition.ts +5 -5
- package/src/conditions/enums.ts +31 -0
- package/src/conditions/index.ts +7 -2
- package/src/conditions/types.ts +16 -0
@@ -1,4 +1,5 @@
|
|
1
1
|
import { ComponentSubType, ComponentType } from "./enums.js";
|
2
|
+
import { hasConditionSupport } from "./helpers.js";
|
2
3
|
export const ComponentTypes = [{
|
3
4
|
name: 'TextField',
|
4
5
|
type: ComponentType.TextField,
|
@@ -23,14 +24,6 @@ export const ComponentTypes = [{
|
|
23
24
|
hint: '',
|
24
25
|
options: {},
|
25
26
|
schema: {}
|
26
|
-
}, {
|
27
|
-
name: 'DateField',
|
28
|
-
type: ComponentType.DateField,
|
29
|
-
title: 'Date field',
|
30
|
-
subType: ComponentSubType.Field,
|
31
|
-
hint: '',
|
32
|
-
options: {},
|
33
|
-
schema: {}
|
34
27
|
}, {
|
35
28
|
name: 'TimeField',
|
36
29
|
type: ComponentType.TimeField,
|
@@ -39,26 +32,10 @@ export const ComponentTypes = [{
|
|
39
32
|
hint: '',
|
40
33
|
options: {},
|
41
34
|
schema: {}
|
42
|
-
}, {
|
43
|
-
name: 'DateTimeField',
|
44
|
-
type: ComponentType.DateTimeField,
|
45
|
-
title: 'Date time field',
|
46
|
-
subType: ComponentSubType.Field,
|
47
|
-
hint: '',
|
48
|
-
options: {},
|
49
|
-
schema: {}
|
50
35
|
}, {
|
51
36
|
name: 'DatePartsField',
|
52
37
|
type: ComponentType.DatePartsField,
|
53
|
-
title: 'Date
|
54
|
-
subType: ComponentSubType.Field,
|
55
|
-
hint: '',
|
56
|
-
options: {},
|
57
|
-
schema: {}
|
58
|
-
}, {
|
59
|
-
name: 'DateTimePartsField',
|
60
|
-
type: ComponentType.DateTimePartsField,
|
61
|
-
title: 'Date time parts field',
|
38
|
+
title: 'Date field',
|
62
39
|
subType: ComponentSubType.Field,
|
63
40
|
hint: '',
|
64
41
|
options: {},
|
@@ -66,7 +43,7 @@ export const ComponentTypes = [{
|
|
66
43
|
}, {
|
67
44
|
name: 'MonthYearField',
|
68
45
|
type: ComponentType.MonthYearField,
|
69
|
-
title: 'Month year field',
|
46
|
+
title: 'Month & year field',
|
70
47
|
subType: ComponentSubType.Field,
|
71
48
|
hint: '',
|
72
49
|
options: {},
|
@@ -135,14 +112,6 @@ export const ComponentTypes = [{
|
|
135
112
|
hint: '',
|
136
113
|
options: {},
|
137
114
|
schema: {}
|
138
|
-
}, {
|
139
|
-
name: 'FileUploadField',
|
140
|
-
type: ComponentType.FileUploadField,
|
141
|
-
title: 'File upload field',
|
142
|
-
subType: ComponentSubType.Field,
|
143
|
-
hint: '',
|
144
|
-
options: {},
|
145
|
-
schema: {}
|
146
115
|
}, {
|
147
116
|
name: 'Html',
|
148
117
|
type: ComponentType.Html,
|
@@ -175,13 +144,6 @@ export const ComponentTypes = [{
|
|
175
144
|
options: {},
|
176
145
|
schema: {},
|
177
146
|
list: ''
|
178
|
-
}, {
|
179
|
-
name: 'WebsiteField',
|
180
|
-
type: ComponentType.WebsiteField,
|
181
|
-
title: 'Website field',
|
182
|
-
subType: ComponentSubType.Field,
|
183
|
-
hint: '',
|
184
|
-
options: {},
|
185
|
-
schema: {}
|
186
147
|
}];
|
148
|
+
export const ConditionalComponentTypes = ComponentTypes.filter(hasConditionSupport);
|
187
149
|
//# sourceMappingURL=component-types.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"component-types.js","names":["ComponentSubType","ComponentType","ComponentTypes","name","type","TextField","title","subType","Field","hint","options","schema","MultilineTextField","YesNoField","DateField","TimeField","DateTimeField","DatePartsField","DateTimePartsField","MonthYearField","SelectField","ListField","list","AutocompleteField","RadiosField","CheckboxesField","NumberField","UkAddressField","TelephoneNumberField","EmailAddressField","FileUploadField","Html","Content","content","InsetText","Details","List","WebsiteField"],"sources":["../../../src/components/component-types.ts"],"sourcesContent":["import { ComponentSubType, ComponentType } from '~/src/components/enums.js'\nimport { type ComponentDef } from '~/src/components/types.js'\n\nexport const ComponentTypes: ComponentDef[] = [\n {\n name: 'TextField',\n type: ComponentType.TextField,\n title: 'Text field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'MultilineTextField',\n type: ComponentType.MultilineTextField,\n title: 'Multiline text field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'YesNoField',\n type: ComponentType.YesNoField,\n title: 'Yes/No field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'DateField',\n type: ComponentType.DateField,\n title: 'Date field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'TimeField',\n type: ComponentType.TimeField,\n title: 'Time field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'DateTimeField',\n type: ComponentType.DateTimeField,\n title: 'Date time field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'DatePartsField',\n type: ComponentType.DatePartsField,\n title: 'Date parts field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'DateTimePartsField',\n type: ComponentType.DateTimePartsField,\n title: 'Date time parts field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'MonthYearField',\n type: ComponentType.MonthYearField,\n title: 'Month year field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'SelectField',\n type: ComponentType.SelectField,\n title: 'Select field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'AutocompleteField',\n type: ComponentType.AutocompleteField,\n title: 'Autocomplete field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'RadiosField',\n type: ComponentType.RadiosField,\n title: 'Radios field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'CheckboxesField',\n type: ComponentType.CheckboxesField,\n title: 'Checkboxes field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'NumberField',\n type: ComponentType.NumberField,\n title: 'Number field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'UkAddressField',\n type: ComponentType.UkAddressField,\n title: 'UK address field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'TelephoneNumberField',\n type: ComponentType.TelephoneNumberField,\n title: 'Telephone number field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'EmailAddressField',\n type: ComponentType.EmailAddressField,\n title: 'Email address field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'FileUploadField',\n type: ComponentType.FileUploadField,\n title: 'File upload field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'Html',\n type: ComponentType.Html,\n title: 'Html',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'InsetText',\n type: ComponentType.InsetText,\n title: 'Inset text',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'Details',\n type: ComponentType.Details,\n title: 'Details',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'List',\n type: ComponentType.List,\n title: 'List',\n subType: ComponentSubType.Content,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'WebsiteField',\n type: ComponentType.WebsiteField,\n title: 'Website field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n }\n]\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"component-types.js","names":["ComponentSubType","ComponentType","hasConditionSupport","ComponentTypes","name","type","TextField","title","subType","Field","hint","options","schema","MultilineTextField","YesNoField","TimeField","DatePartsField","MonthYearField","SelectField","ListField","list","AutocompleteField","RadiosField","CheckboxesField","NumberField","UkAddressField","TelephoneNumberField","EmailAddressField","Html","Content","content","InsetText","Details","List","ConditionalComponentTypes","filter"],"sources":["../../../src/components/component-types.ts"],"sourcesContent":["import { ComponentSubType, ComponentType } from '~/src/components/enums.js'\nimport { hasConditionSupport } from '~/src/components/helpers.js'\nimport { type ComponentDef } from '~/src/components/types.js'\n\nexport const ComponentTypes: ComponentDef[] = [\n {\n name: 'TextField',\n type: ComponentType.TextField,\n title: 'Text field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'MultilineTextField',\n type: ComponentType.MultilineTextField,\n title: 'Multiline text field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'YesNoField',\n type: ComponentType.YesNoField,\n title: 'Yes/No field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'TimeField',\n type: ComponentType.TimeField,\n title: 'Time field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'DatePartsField',\n type: ComponentType.DatePartsField,\n title: 'Date field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'MonthYearField',\n type: ComponentType.MonthYearField,\n title: 'Month & year field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'SelectField',\n type: ComponentType.SelectField,\n title: 'Select field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'AutocompleteField',\n type: ComponentType.AutocompleteField,\n title: 'Autocomplete field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'RadiosField',\n type: ComponentType.RadiosField,\n title: 'Radios field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'CheckboxesField',\n type: ComponentType.CheckboxesField,\n title: 'Checkboxes field',\n subType: ComponentSubType.ListField,\n options: {},\n schema: {},\n list: ''\n },\n {\n name: 'NumberField',\n type: ComponentType.NumberField,\n title: 'Number field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'UkAddressField',\n type: ComponentType.UkAddressField,\n title: 'UK address field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'TelephoneNumberField',\n type: ComponentType.TelephoneNumberField,\n title: 'Telephone number field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'EmailAddressField',\n type: ComponentType.EmailAddressField,\n title: 'Email address field',\n subType: ComponentSubType.Field,\n hint: '',\n options: {},\n schema: {}\n },\n {\n name: 'Html',\n type: ComponentType.Html,\n title: 'Html',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'InsetText',\n type: ComponentType.InsetText,\n title: 'Inset text',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'Details',\n type: ComponentType.Details,\n title: 'Details',\n subType: ComponentSubType.Content,\n content: '',\n options: {},\n schema: {}\n },\n {\n name: 'List',\n type: ComponentType.List,\n title: 'List',\n subType: ComponentSubType.Content,\n options: {},\n schema: {},\n list: ''\n }\n]\n\nexport const ConditionalComponentTypes =\n ComponentTypes.filter(hasConditionSupport)\n"],"mappings":"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","ignoreList":[]}
|
@@ -2,12 +2,9 @@ export let ComponentType = /*#__PURE__*/function (ComponentType) {
|
|
2
2
|
ComponentType["TextField"] = "TextField";
|
3
3
|
ComponentType["MultilineTextField"] = "MultilineTextField";
|
4
4
|
ComponentType["YesNoField"] = "YesNoField";
|
5
|
-
ComponentType["DateField"] = "DateField";
|
6
5
|
ComponentType["TimeField"] = "TimeField";
|
7
|
-
ComponentType["DateTimeField"] = "DateTimeField";
|
8
6
|
ComponentType["DatePartsField"] = "DatePartsField";
|
9
7
|
ComponentType["MonthYearField"] = "MonthYearField";
|
10
|
-
ComponentType["DateTimePartsField"] = "DateTimePartsField";
|
11
8
|
ComponentType["SelectField"] = "SelectField";
|
12
9
|
ComponentType["AutocompleteField"] = "AutocompleteField";
|
13
10
|
ComponentType["RadiosField"] = "RadiosField";
|
@@ -16,12 +13,10 @@ export let ComponentType = /*#__PURE__*/function (ComponentType) {
|
|
16
13
|
ComponentType["UkAddressField"] = "UkAddressField";
|
17
14
|
ComponentType["TelephoneNumberField"] = "TelephoneNumberField";
|
18
15
|
ComponentType["EmailAddressField"] = "EmailAddressField";
|
19
|
-
ComponentType["FileUploadField"] = "FileUploadField";
|
20
16
|
ComponentType["Html"] = "Html";
|
21
17
|
ComponentType["InsetText"] = "InsetText";
|
22
18
|
ComponentType["Details"] = "Details";
|
23
19
|
ComponentType["List"] = "List";
|
24
|
-
ComponentType["WebsiteField"] = "WebsiteField";
|
25
20
|
return ComponentType;
|
26
21
|
}({});
|
27
22
|
export let ComponentSubType = /*#__PURE__*/function (ComponentSubType) {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"enums.js","names":["ComponentType","ComponentSubType"],"sources":["../../../src/components/enums.ts"],"sourcesContent":["export enum ComponentType {\n TextField = 'TextField',\n MultilineTextField = 'MultilineTextField',\n YesNoField = 'YesNoField',\n
|
1
|
+
{"version":3,"file":"enums.js","names":["ComponentType","ComponentSubType"],"sources":["../../../src/components/enums.ts"],"sourcesContent":["export enum ComponentType {\n TextField = 'TextField',\n MultilineTextField = 'MultilineTextField',\n YesNoField = 'YesNoField',\n TimeField = 'TimeField',\n DatePartsField = 'DatePartsField',\n MonthYearField = 'MonthYearField',\n SelectField = 'SelectField',\n AutocompleteField = 'AutocompleteField',\n RadiosField = 'RadiosField',\n CheckboxesField = 'CheckboxesField',\n NumberField = 'NumberField',\n UkAddressField = 'UkAddressField',\n TelephoneNumberField = 'TelephoneNumberField',\n EmailAddressField = 'EmailAddressField',\n Html = 'Html',\n InsetText = 'InsetText',\n Details = 'Details',\n List = 'List'\n}\n\nexport enum ComponentSubType {\n Content = 'content',\n Field = 'field',\n ListField = 'listField'\n}\n"],"mappings":"AAAA,WAAYA,aAAa,0BAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAA,OAAbA,aAAa;AAAA;AAqBzB,WAAYC,gBAAgB,0BAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA","ignoreList":[]}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
import { ComponentType } from "./enums.js";
|
2
|
+
/**
|
3
|
+
* Filter known components with support for conditions
|
4
|
+
*/
|
5
|
+
export function hasConditionSupport(component) {
|
6
|
+
const allowedTypes = [ComponentType.CheckboxesField, ComponentType.DatePartsField, ComponentType.EmailAddressField, ComponentType.MultilineTextField, ComponentType.NumberField, ComponentType.TextField, ComponentType.TimeField, ComponentType.YesNoField];
|
7
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
8
|
+
}
|
9
|
+
|
10
|
+
/**
|
11
|
+
* Filter known components with content fields
|
12
|
+
*/
|
13
|
+
export function hasContentField(component) {
|
14
|
+
const allowedTypes = [ComponentType.Details, ComponentType.Html, ComponentType.InsetText, ComponentType.List];
|
15
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
16
|
+
}
|
17
|
+
|
18
|
+
/**
|
19
|
+
* Filter known components with text editor
|
20
|
+
*/
|
21
|
+
export function hasEditor(component) {
|
22
|
+
const allowedTypes = [ComponentType.TextField, ComponentType.EmailAddressField, ComponentType.TelephoneNumberField, ComponentType.MultilineTextField, ComponentType.NumberField, ComponentType.AutocompleteField, ComponentType.SelectField, ComponentType.RadiosField, ComponentType.CheckboxesField, ComponentType.List, ComponentType.Details, ComponentType.Html, ComponentType.InsetText, ComponentType.DatePartsField];
|
23
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Filter known components with input fields
|
28
|
+
*/
|
29
|
+
export function hasInputField(component) {
|
30
|
+
const allowedTypes = [ComponentType.TextField, ComponentType.EmailAddressField, ComponentType.NumberField, ComponentType.MultilineTextField, ComponentType.TelephoneNumberField, ComponentType.YesNoField, ComponentType.MonthYearField, ComponentType.TimeField, ComponentType.UkAddressField];
|
31
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
32
|
+
}
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Filter known components with lists
|
36
|
+
*/
|
37
|
+
export function hasListField(component) {
|
38
|
+
const allowedTypes = [ComponentType.AutocompleteField, ComponentType.List, ComponentType.RadiosField, ComponentType.SelectField, ComponentType.CheckboxesField];
|
39
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
40
|
+
}
|
41
|
+
|
42
|
+
/**
|
43
|
+
* Filter known components with selection fields
|
44
|
+
*/
|
45
|
+
export function hasSelectionFields(component) {
|
46
|
+
const allowedTypes = [ComponentType.CheckboxesField, ComponentType.RadiosField, ComponentType.SelectField, ComponentType.YesNoField];
|
47
|
+
return !!component?.type && allowedTypes.includes(component.type);
|
48
|
+
}
|
49
|
+
|
50
|
+
/**
|
51
|
+
* Filter known components with titles
|
52
|
+
*/
|
53
|
+
export function hasTitle(component) {
|
54
|
+
const deniedTypes = [ComponentType.InsetText, ComponentType.Html];
|
55
|
+
return !!component?.type && !deniedTypes.includes(component.type);
|
56
|
+
}
|
57
|
+
//# sourceMappingURL=helpers.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"helpers.js","names":["ComponentType","hasConditionSupport","component","allowedTypes","CheckboxesField","DatePartsField","EmailAddressField","MultilineTextField","NumberField","TextField","TimeField","YesNoField","type","includes","hasContentField","Details","Html","InsetText","List","hasEditor","TelephoneNumberField","AutocompleteField","SelectField","RadiosField","hasInputField","MonthYearField","UkAddressField","hasListField","hasSelectionFields","hasTitle","deniedTypes"],"sources":["../../../src/components/helpers.ts"],"sourcesContent":["import { ComponentType } from '~/src/components/enums.js'\nimport {\n type InputFieldsComponentsDef,\n type ComponentDef,\n type ConditionalComponentsDef,\n type ContentComponentsDef,\n type HtmlComponent,\n type InsetTextComponent,\n type ListComponentsDef,\n type SelectionComponentsDef,\n type EditorComponentsDef\n} from '~/src/components/types.js'\n\n/**\n * Filter known components with support for conditions\n */\nexport function hasConditionSupport(\n component?: Partial<ComponentDef>\n): component is ConditionalComponentsDef {\n const allowedTypes = [\n ComponentType.CheckboxesField,\n ComponentType.DatePartsField,\n ComponentType.EmailAddressField,\n ComponentType.MultilineTextField,\n ComponentType.NumberField,\n ComponentType.TextField,\n ComponentType.TimeField,\n ComponentType.YesNoField\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with content fields\n */\nexport function hasContentField(\n component?: Partial<ComponentDef>\n): component is ContentComponentsDef {\n const allowedTypes = [\n ComponentType.Details,\n ComponentType.Html,\n ComponentType.InsetText,\n ComponentType.List\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with text editor\n */\nexport function hasEditor(\n component?: Partial<ComponentDef>\n): component is EditorComponentsDef {\n const allowedTypes = [\n ComponentType.TextField,\n ComponentType.EmailAddressField,\n ComponentType.TelephoneNumberField,\n ComponentType.MultilineTextField,\n ComponentType.NumberField,\n ComponentType.AutocompleteField,\n ComponentType.SelectField,\n ComponentType.RadiosField,\n ComponentType.CheckboxesField,\n ComponentType.List,\n ComponentType.Details,\n ComponentType.Html,\n ComponentType.InsetText,\n ComponentType.DatePartsField\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with input fields\n */\nexport function hasInputField(\n component?: Partial<ComponentDef>\n): component is InputFieldsComponentsDef {\n const allowedTypes = [\n ComponentType.TextField,\n ComponentType.EmailAddressField,\n ComponentType.NumberField,\n ComponentType.MultilineTextField,\n ComponentType.TelephoneNumberField,\n ComponentType.YesNoField,\n ComponentType.MonthYearField,\n ComponentType.TimeField,\n ComponentType.UkAddressField\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with lists\n */\nexport function hasListField(\n component?: Partial<ComponentDef>\n): component is ListComponentsDef {\n const allowedTypes = [\n ComponentType.AutocompleteField,\n ComponentType.List,\n ComponentType.RadiosField,\n ComponentType.SelectField,\n ComponentType.CheckboxesField\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with selection fields\n */\nexport function hasSelectionFields(\n component?: Partial<ComponentDef>\n): component is SelectionComponentsDef {\n const allowedTypes = [\n ComponentType.CheckboxesField,\n ComponentType.RadiosField,\n ComponentType.SelectField,\n ComponentType.YesNoField\n ]\n\n return !!component?.type && allowedTypes.includes(component.type)\n}\n\n/**\n * Filter known components with titles\n */\nexport function hasTitle(\n component?: Partial<ComponentDef>\n): component is Exclude<ComponentDef, InsetTextComponent | HtmlComponent> {\n const deniedTypes = [ComponentType.InsetText, ComponentType.Html]\n return !!component?.type && !deniedTypes.includes(component.type)\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -1,3 +1,4 @@
|
|
1
|
-
export { ComponentTypes } from "./component-types.js";
|
1
|
+
export { ComponentTypes, ConditionalComponentTypes } from "./component-types.js";
|
2
|
+
export { hasConditionSupport, hasContentField, hasEditor, hasInputField, hasListField, hasSelectionFields, hasTitle } from "./helpers.js";
|
2
3
|
export { ComponentType, ComponentSubType } from "./enums.js";
|
3
4
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","names":["ComponentTypes","ComponentType","ComponentSubType"],"sources":["../../../src/components/index.ts"],"sourcesContent":["export {
|
1
|
+
{"version":3,"file":"index.js","names":["ComponentTypes","ConditionalComponentTypes","hasConditionSupport","hasContentField","hasEditor","hasInputField","hasListField","hasSelectionFields","hasTitle","ComponentType","ComponentSubType"],"sources":["../../../src/components/index.ts"],"sourcesContent":["export {\n ComponentTypes,\n ConditionalComponentTypes\n} from '~/src/components/component-types.js'\nexport {\n hasConditionSupport,\n hasContentField,\n hasEditor,\n hasInputField,\n hasListField,\n hasSelectionFields,\n hasTitle\n} from '~/src/components/helpers.js'\n\nexport { ComponentType, ComponentSubType } from '~/src/components/enums.js'\n"],"mappings":"AAAA,SACEA,cAAc,EACdC,yBAAyB;AAE3B,SACEC,mBAAmB,EACnBC,eAAe,EACfC,SAAS,EACTC,aAAa,EACbC,YAAY,EACZC,kBAAkB,EAClBC,QAAQ;AAGV,SAASC,aAAa,EAAEC,gBAAgB","ignoreList":[]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.js","names":[],"sources":["../../../src/components/types.ts"],"sourcesContent":["import {\n type ComponentSubType,\n type ComponentType\n} from '~/src/components/enums.js'\n\nexport
|
1
|
+
{"version":3,"file":"types.js","names":[],"sources":["../../../src/components/types.ts"],"sourcesContent":["import {\n type ComponentSubType,\n type ComponentType\n} from '~/src/components/enums.js'\n\nexport type ConditionalComponentType = Extract<\n ComponentType,\n | typeof ComponentType.CheckboxesField\n | typeof ComponentType.DatePartsField\n | typeof ComponentType.EmailAddressField\n | typeof ComponentType.MultilineTextField\n | typeof ComponentType.NumberField\n | typeof ComponentType.TextField\n | typeof ComponentType.TimeField\n | typeof ComponentType.YesNoField\n>\n\nexport interface ContentOptions {\n condition?: string\n}\n\n/**\n * Types for Components JSON structure which are expected by engine and turned into actual form input/content/lists\n */\ninterface TextFieldBase {\n type:\n | ComponentType.EmailAddressField\n | ComponentType.MultilineTextField\n | ComponentType.NumberField\n | ComponentType.TelephoneNumberField\n | ComponentType.TextField\n | ComponentType.UkAddressField\n | ComponentType.YesNoField\n subType?: ComponentSubType.Field\n name: string\n title: string\n hint?: string\n options: {\n hideTitle?: boolean\n required?: boolean\n optionalText?: boolean\n classes?: string\n allow?: string\n autocomplete?: string\n exposeToContext?: boolean\n }\n schema: {\n max?: number\n min?: number\n length?: number\n regex?: string\n error?: unknown\n }\n}\n\ninterface NumberFieldBase {\n type: ComponentType\n subType?: ComponentSubType.Field\n name: string\n title: string\n hint: string\n options: {\n prefix?: string\n suffix?: string\n exposeToContext?: boolean\n }\n schema: {\n min?: number\n max?: number\n precision?: number\n }\n}\n\ninterface ListFieldBase {\n type:\n | ComponentType.AutocompleteField\n | ComponentType.CheckboxesField\n | ComponentType.List\n | ComponentType.RadiosField\n | ComponentType.SelectField\n subType?: ComponentSubType.Content | ComponentSubType.ListField\n name: string\n title: string\n options: {\n type?: string\n hideTitle?: boolean\n required?: boolean\n optionalText?: boolean\n classes?: string\n bold?: boolean\n exposeToContext?: boolean\n allowPrePopulation?: boolean\n }\n list: string\n schema: object\n}\n\ninterface ContentFieldBase {\n type: ComponentType.Details | ComponentType.Html | ComponentType.InsetText\n subType?: ComponentSubType.Content\n name: string\n title: string\n content: string\n options: ContentOptions\n schema?: object\n}\n\ninterface DateFieldBase {\n type:\n | ComponentType.DatePartsField\n | ComponentType.MonthYearField\n | ComponentType.TimeField\n subType?: ComponentSubType.Field\n name: string\n title: string\n hint: string\n options: {\n hideTitle?: boolean\n required?: boolean\n optionalText?: boolean\n maxDaysInFuture?: number\n maxDaysInPast?: number\n exposeToContext?: boolean\n }\n schema: object\n}\n\n// Text Fields\nexport interface TextFieldComponent extends TextFieldBase {\n type: ComponentType.TextField\n options: TextFieldBase['options'] & {\n customValidationMessage?: string\n }\n}\n\nexport interface EmailAddressFieldComponent extends TextFieldBase {\n type: ComponentType.EmailAddressField\n}\n\nexport interface NumberFieldComponent extends NumberFieldBase {\n type: ComponentType.NumberField\n}\n\nexport interface TelephoneNumberFieldComponent extends TextFieldBase {\n type: ComponentType.TelephoneNumberField\n options: TextFieldBase['options'] & {\n customValidationMessage?: string\n }\n}\n\nexport interface YesNoFieldComponent extends TextFieldBase {\n type: ComponentType.YesNoField\n}\n\nexport interface MultilineTextFieldComponent extends TextFieldBase {\n type: ComponentType.MultilineTextField\n options: TextFieldBase['options'] & {\n customValidationMessage?: string\n rows?: number\n maxWords?: number\n }\n schema: {\n max?: number\n min?: number\n }\n}\n\nexport interface UkAddressFieldComponent extends TextFieldBase {\n type: ComponentType.UkAddressField\n}\n\n// Date Fields\nexport interface DatePartsFieldFieldComponent extends DateFieldBase {\n type: ComponentType.DatePartsField\n}\n\nexport interface MonthYearFieldComponent extends DateFieldBase {\n type: ComponentType.MonthYearField\n}\n\nexport interface TimeFieldComponent extends DateFieldBase {\n type: ComponentType.TimeField\n}\n\n// Content Fields\nexport interface DetailsComponent extends ContentFieldBase {\n type: ComponentType.Details\n}\n\nexport interface HtmlComponent extends ContentFieldBase {\n type: ComponentType.Html\n}\n\nexport interface InsetTextComponent extends ContentFieldBase {\n type: ComponentType.InsetText\n}\n\n// List Fields\nexport interface ListComponent extends ListFieldBase {\n type: ComponentType.List\n}\n\nexport interface AutocompleteFieldComponent extends ListFieldBase {\n type: ComponentType.AutocompleteField\n subType?: ComponentSubType.ListField\n}\n\nexport interface CheckboxesFieldComponent extends ListFieldBase {\n type: ComponentType.CheckboxesField\n subType?: ComponentSubType.ListField\n}\n\nexport interface RadiosFieldComponent extends ListFieldBase {\n type: ComponentType.RadiosField\n subType?: ComponentSubType.ListField\n}\n\nexport interface SelectFieldComponent extends ListFieldBase {\n type: ComponentType.SelectField\n subType?: ComponentSubType.ListField\n options: ListFieldBase['options'] & { autocomplete?: string }\n}\n\nexport type ComponentDef =\n | InsetTextComponent\n | AutocompleteFieldComponent\n | CheckboxesFieldComponent\n | DatePartsFieldFieldComponent\n | MonthYearFieldComponent\n | DetailsComponent\n | EmailAddressFieldComponent\n | HtmlComponent\n | ListComponent\n | MultilineTextFieldComponent\n | NumberFieldComponent\n | RadiosFieldComponent\n | SelectFieldComponent\n | TelephoneNumberFieldComponent\n | TextFieldComponent\n | TimeFieldComponent\n | UkAddressFieldComponent\n | YesNoFieldComponent\n\n// Components that render inputs\nexport type InputFieldsComponentsDef =\n | TextFieldComponent\n | EmailAddressFieldComponent\n | NumberFieldComponent\n | MultilineTextFieldComponent\n | TelephoneNumberFieldComponent\n | YesNoFieldComponent\n | MonthYearFieldComponent\n | TimeFieldComponent\n | UkAddressFieldComponent\n\n// Components that render content\nexport type ContentComponentsDef =\n | DetailsComponent\n | HtmlComponent\n | InsetTextComponent\n | ListComponent\n\n// Components with editors\nexport type EditorComponentsDef =\n | TextFieldComponent\n | EmailAddressFieldComponent\n | TelephoneNumberFieldComponent\n | MultilineTextFieldComponent\n | NumberFieldComponent\n | AutocompleteFieldComponent\n | SelectFieldComponent\n | RadiosFieldComponent\n | CheckboxesFieldComponent\n | ListComponent\n | DetailsComponent\n | HtmlComponent\n | InsetTextComponent\n | DatePartsFieldFieldComponent\n\n// Components that render lists\nexport type ListComponentsDef =\n | ListComponent\n | AutocompleteFieldComponent\n | CheckboxesFieldComponent\n | RadiosFieldComponent\n | SelectFieldComponent\n\n// Components that have selection fields\nexport type SelectionComponentsDef =\n | CheckboxesFieldComponent\n | RadiosFieldComponent\n | SelectFieldComponent\n | YesNoFieldComponent\n\n// Components that have custom condition operators\nexport type ConditionalComponentsDef =\n | CheckboxesFieldComponent\n | DatePartsFieldFieldComponent\n | EmailAddressFieldComponent\n | MultilineTextFieldComponent\n | NumberFieldComponent\n | TextFieldComponent\n | TimeFieldComponent\n | YesNoFieldComponent\n"],"mappings":"","ignoreList":[]}
|
@@ -1,17 +1,17 @@
|
|
1
|
-
import {
|
1
|
+
import { ConditionalComponentTypes } from "../components/component-types.js";
|
2
2
|
export class ConditionField {
|
3
3
|
name;
|
4
4
|
type;
|
5
5
|
display;
|
6
6
|
constructor(name, type, display) {
|
7
7
|
if (!name || typeof name !== 'string') {
|
8
|
-
throw Error(
|
8
|
+
throw new Error("ConditionField param 'name' must be a string");
|
9
9
|
}
|
10
|
-
if (!
|
11
|
-
throw Error(
|
10
|
+
if (!ConditionalComponentTypes.find(componentType => componentType.type === type)) {
|
11
|
+
throw new Error("ConditionField param 'type' must be from enum ConditionalComponentTypes");
|
12
12
|
}
|
13
13
|
if (!display || typeof display !== 'string') {
|
14
|
-
throw Error(
|
14
|
+
throw new Error("ConditionField param 'display' must be a string");
|
15
15
|
}
|
16
16
|
this.name = name;
|
17
17
|
this.type = type;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"condition-field.js","names":["
|
1
|
+
{"version":3,"file":"condition-field.js","names":["ConditionalComponentTypes","ConditionField","name","type","display","constructor","Error","find","componentType","from","obj"],"sources":["../../../src/conditions/condition-field.ts"],"sourcesContent":["import { ConditionalComponentTypes } from '~/src/components/component-types.js'\nimport { type ConditionalComponentType } from '~/src/components/types.js'\n\nexport class ConditionField {\n name\n type\n display\n\n constructor(\n name?: string,\n type?: ConditionalComponentType,\n display?: string\n ) {\n if (!name || typeof name !== 'string') {\n throw new Error(\"ConditionField param 'name' must be a string\")\n }\n\n if (\n !ConditionalComponentTypes.find(\n (componentType) => componentType.type === type\n )\n ) {\n throw new Error(\n \"ConditionField param 'type' must be from enum ConditionalComponentTypes\"\n )\n }\n\n if (!display || typeof display !== 'string') {\n throw new Error(\"ConditionField param 'display' must be a string\")\n }\n\n this.name = name\n this.type = type\n this.display = display\n }\n\n static from(obj: {\n name: string\n type: ConditionalComponentType\n display: string\n }) {\n return new ConditionField(obj.name, obj.type, obj.display)\n }\n}\n"],"mappings":"AAAA,SAASA,yBAAyB;AAGlC,OAAO,MAAMC,cAAc,CAAC;EAC1BC,IAAI;EACJC,IAAI;EACJC,OAAO;EAEPC,WAAWA,CACTH,IAAa,EACbC,IAA+B,EAC/BC,OAAgB,EAChB;IACA,IAAI,CAACF,IAAI,IAAI,OAAOA,IAAI,KAAK,QAAQ,EAAE;MACrC,MAAM,IAAII,KAAK,CAAC,8CAA8C,CAAC;IACjE;IAEA,IACE,CAACN,yBAAyB,CAACO,IAAI,CAC5BC,aAAa,IAAKA,aAAa,CAACL,IAAI,KAAKA,IAC5C,CAAC,EACD;MACA,MAAM,IAAIG,KAAK,CACb,yEACF,CAAC;IACH;IAEA,IAAI,CAACF,OAAO,IAAI,OAAOA,OAAO,KAAK,QAAQ,EAAE;MAC3C,MAAM,IAAIE,KAAK,CAAC,iDAAiD,CAAC;IACpE;IAEA,IAAI,CAACJ,IAAI,GAAGA,IAAI;IAChB,IAAI,CAACC,IAAI,GAAGA,IAAI;IAChB,IAAI,CAACC,OAAO,GAAGA,OAAO;EACxB;EAEA,OAAOK,IAAIA,CAACC,GAIX,EAAE;IACD,OAAO,IAAIT,cAAc,CAACS,GAAG,CAACR,IAAI,EAAEQ,GAAG,CAACP,IAAI,EAAEO,GAAG,CAACN,OAAO,CAAC;EAC5D;AACF","ignoreList":[]}
|
@@ -1,54 +1,59 @@
|
|
1
1
|
import { ComponentType } from "../components/enums.js";
|
2
|
-
import { timeUnits, dateUnits, dateTimeUnits, ConditionValue,
|
2
|
+
import { timeUnits, dateUnits, dateTimeUnits, ConditionValue, RelativeTimeValue } from "./condition-values.js";
|
3
|
+
import { DateDirections, Operator, OperatorName } from "./enums.js";
|
3
4
|
const defaultOperators = {
|
4
|
-
|
5
|
-
|
5
|
+
[OperatorName.Is]: inline(Operator.Is),
|
6
|
+
[OperatorName.IsNot]: inline(Operator.IsNot)
|
6
7
|
};
|
7
8
|
function withDefaults(param) {
|
8
9
|
return Object.assign({}, param, defaultOperators);
|
9
10
|
}
|
10
|
-
const
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
const textFieldOperators = {
|
12
|
+
[OperatorName.IsLongerThan]: lengthIs(Operator.IsMoreThan),
|
13
|
+
[OperatorName.IsShorterThan]: lengthIs(Operator.IsLessThan),
|
14
|
+
[OperatorName.HasLength]: lengthIs(Operator.Is)
|
14
15
|
};
|
15
16
|
const absoluteDateTimeOperators = {
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
[OperatorName.Is]: absoluteDateTime(Operator.Is),
|
18
|
+
[OperatorName.IsNot]: absoluteDateTime(Operator.IsNot),
|
19
|
+
[OperatorName.IsBefore]: absoluteDateTime(Operator.IsLessThan),
|
20
|
+
[OperatorName.IsAfter]: absoluteDateTime(Operator.IsMoreThan)
|
20
21
|
};
|
21
22
|
const relativeTimeOperators = units => ({
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
23
|
+
[OperatorName.IsAtLeast]: relativeTime(Operator.IsAtMost, Operator.IsAtLeast, units),
|
24
|
+
[OperatorName.IsAtMost]: relativeTime(Operator.IsAtLeast, Operator.IsAtMost, units),
|
25
|
+
[OperatorName.IsLessThan]: relativeTime(Operator.IsMoreThan, Operator.IsLessThan, units),
|
26
|
+
[OperatorName.IsMoreThan]: relativeTime(Operator.IsLessThan, Operator.IsMoreThan, units)
|
26
27
|
});
|
27
28
|
export const customOperators = {
|
28
29
|
[ComponentType.CheckboxesField]: {
|
29
|
-
|
30
|
-
|
30
|
+
[OperatorName.Contains]: reverseInline(Operator.Contains),
|
31
|
+
[OperatorName.DoesNotContain]: not(reverseInline(Operator.Contains))
|
31
32
|
},
|
32
33
|
[ComponentType.NumberField]: withDefaults({
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
[OperatorName.IsAtLeast]: inline(Operator.IsAtLeast),
|
35
|
+
[OperatorName.IsAtMost]: inline(Operator.IsAtMost),
|
36
|
+
[OperatorName.IsLessThan]: inline(Operator.IsLessThan),
|
37
|
+
[OperatorName.IsMoreThan]: inline(Operator.IsMoreThan)
|
37
38
|
}),
|
38
|
-
[ComponentType.
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
[ComponentType.
|
43
|
-
|
44
|
-
|
45
|
-
|
39
|
+
[ComponentType.TimeField]: {
|
40
|
+
...absoluteDateTimeOperators,
|
41
|
+
...relativeTimeOperators(timeUnits)
|
42
|
+
},
|
43
|
+
[ComponentType.DatePartsField]: {
|
44
|
+
...absoluteDateTimeOperators,
|
45
|
+
...relativeTimeOperators(dateUnits)
|
46
|
+
},
|
47
|
+
[ComponentType.TextField]: withDefaults(textFieldOperators),
|
48
|
+
[ComponentType.MultilineTextField]: withDefaults(textFieldOperators),
|
49
|
+
[ComponentType.EmailAddressField]: withDefaults(textFieldOperators),
|
50
|
+
[ComponentType.YesNoField]: defaultOperators
|
46
51
|
};
|
47
52
|
export function getOperatorNames(fieldType) {
|
48
53
|
return Object.keys(getConditionals(fieldType)).sort();
|
49
54
|
}
|
50
55
|
export function getExpression(fieldType, fieldName, operator, value) {
|
51
|
-
return getConditionals(fieldType)[operator]
|
56
|
+
return getConditionals(fieldType)[operator]?.expression({
|
52
57
|
type: fieldType,
|
53
58
|
name: fieldName
|
54
59
|
}, value);
|
@@ -57,55 +62,66 @@ export function getOperatorConfig(fieldType, operator) {
|
|
57
62
|
return getConditionals(fieldType)[operator];
|
58
63
|
}
|
59
64
|
function getConditionals(fieldType) {
|
60
|
-
|
65
|
+
if (fieldType in customOperators) {
|
66
|
+
return customOperators[fieldType];
|
67
|
+
}
|
68
|
+
return defaultOperators;
|
61
69
|
}
|
62
70
|
function inline(operator) {
|
63
71
|
return {
|
64
|
-
expression
|
72
|
+
expression(field, value) {
|
73
|
+
return `${field.name} ${operator} ${formatValue(field, value)}`;
|
74
|
+
}
|
65
75
|
};
|
66
76
|
}
|
67
77
|
function lengthIs(operator) {
|
68
78
|
return {
|
69
|
-
expression
|
79
|
+
expression(field, value) {
|
80
|
+
return `length(${field.name}) ${operator} ${formatValue(field, value)}`;
|
81
|
+
}
|
70
82
|
};
|
71
83
|
}
|
72
84
|
function reverseInline(operator) {
|
73
85
|
return {
|
74
|
-
expression
|
86
|
+
expression(field, value) {
|
87
|
+
return `${formatValue(field, value)} ${operator} ${field.name}`;
|
88
|
+
}
|
75
89
|
};
|
76
90
|
}
|
77
91
|
function not(operatorDefinition) {
|
78
92
|
return {
|
79
|
-
expression
|
93
|
+
expression(field, value) {
|
94
|
+
return `not (${operatorDefinition.expression(field, value)})`;
|
95
|
+
}
|
80
96
|
};
|
81
97
|
}
|
82
|
-
function formatValue(
|
83
|
-
if (
|
84
|
-
return value;
|
98
|
+
function formatValue(field, value) {
|
99
|
+
if ('value' in value && (field.type === ComponentType.YesNoField || field.type === ComponentType.NumberField)) {
|
100
|
+
return value.value;
|
85
101
|
}
|
86
|
-
return `'${value}'`;
|
102
|
+
return `'${value.toExpression()}'`;
|
87
103
|
}
|
88
104
|
export const absoluteDateOrTimeOperatorNames = Object.keys(absoluteDateTimeOperators);
|
89
105
|
export const relativeDateOrTimeOperatorNames = Object.keys(relativeTimeOperators(dateTimeUnits));
|
90
106
|
function absoluteDateTime(operator) {
|
91
107
|
return {
|
92
|
-
expression
|
93
|
-
if (value instanceof ConditionValue) {
|
94
|
-
|
108
|
+
expression(field, value) {
|
109
|
+
if (!(value instanceof ConditionValue)) {
|
110
|
+
throw new Error("Expression param 'value' must be ConditionValue instance");
|
95
111
|
}
|
96
|
-
|
112
|
+
return `${field.name} ${operator} '${formatValue(field, value)}'`;
|
97
113
|
}
|
98
114
|
};
|
99
115
|
}
|
100
116
|
function relativeTime(pastOperator, futureOperator, units) {
|
101
117
|
return {
|
102
118
|
units,
|
103
|
-
expression
|
104
|
-
if (value instanceof RelativeTimeValue) {
|
105
|
-
|
106
|
-
return `${field.name} ${operator} ${value.toExpression()}`;
|
119
|
+
expression(field, value) {
|
120
|
+
if (!(value instanceof RelativeTimeValue)) {
|
121
|
+
throw new Error("Expression param 'value' must be RelativeTimeValue instance");
|
107
122
|
}
|
108
|
-
|
123
|
+
const isPast = value.direction === DateDirections.PAST;
|
124
|
+
return `${field.name} ${isPast ? pastOperator : futureOperator} ${value.toExpression()}`;
|
109
125
|
}
|
110
126
|
};
|
111
127
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"condition-operators.js","names":["ComponentType","timeUnits","dateUnits","dateTimeUnits","ConditionValue","DateDirections","RelativeTimeValue","defaultOperators","is","inline","withDefaults","param","Object","assign","textBasedFieldCustomisations","lengthIs","absoluteDateTimeOperators","absoluteDateTime","relativeTimeOperators","units","relativeTime","customOperators","CheckboxesField","contains","reverseInline","not","NumberField","DateField","TimeField","DatePartsField","DateTimeField","DateTimePartsField","TextField","MultilineTextField","EmailAddressField","getOperatorNames","fieldType","keys","getConditionals","sort","getExpression","fieldName","operator","value","expression","type","name","getOperatorConfig","field","formatValue","operatorDefinition","YesNoField","absoluteDateOrTimeOperatorNames","relativeDateOrTimeOperatorNames","toExpression","Error","pastOperator","futureOperator","direction","PAST"],"sources":["../../../src/conditions/condition-operators.ts"],"sourcesContent":["import { ComponentType } from '~/src/components/enums.js'\nimport { type ComponentDef } from '~/src/components/types.js'\nimport { type ConditionValueAbstract } from '~/src/conditions/condition-value-abstract.js'\nimport {\n timeUnits,\n dateUnits,\n dateTimeUnits,\n ConditionValue,\n DateDirections,\n RelativeTimeValue\n} from '~/src/conditions/condition-values.js'\n\ntype Operator = '==' | '!=' | '>=' | '<=' | '<' | '>'\n\nconst defaultOperators = {\n is: inline('=='),\n 'is not': inline('!=')\n}\n\nfunction withDefaults<T>(param: T) {\n return Object.assign({}, param, defaultOperators)\n}\n\nconst textBasedFieldCustomisations = {\n 'is longer than': lengthIs('>'),\n 'is shorter than': lengthIs('<'),\n 'has length': lengthIs('==')\n}\n\nconst absoluteDateTimeOperators = {\n is: absoluteDateTime('=='),\n 'is not': absoluteDateTime('!='),\n 'is before': absoluteDateTime('<'),\n 'is after': absoluteDateTime('>')\n}\n\nconst relativeTimeOperators = (units) => ({\n 'is at least': relativeTime('<=', '>=', units),\n 'is at most': relativeTime('>=', '<=', units),\n 'is less than': relativeTime('>', '<', units),\n 'is more than': relativeTime('<', '>', units)\n})\n\nexport const customOperators = {\n [ComponentType.CheckboxesField]: {\n contains: reverseInline('in'),\n 'does not contain': not(reverseInline('in'))\n },\n [ComponentType.NumberField]: withDefaults({\n 'is at least': inline('>='),\n 'is at most': inline('<='),\n 'is less than': inline('<'),\n 'is more than': inline('>')\n }),\n [ComponentType.DateField]: Object.assign(\n {},\n absoluteDateTimeOperators,\n relativeTimeOperators(dateUnits)\n ),\n [ComponentType.TimeField]: Object.assign(\n {},\n absoluteDateTimeOperators,\n relativeTimeOperators(timeUnits)\n ),\n [ComponentType.DatePartsField]: Object.assign(\n {},\n absoluteDateTimeOperators,\n relativeTimeOperators(dateUnits)\n ),\n [ComponentType.DateTimeField]: Object.assign(\n {},\n absoluteDateTimeOperators,\n relativeTimeOperators(dateTimeUnits)\n ),\n [ComponentType.DateTimePartsField]: Object.assign(\n {},\n absoluteDateTimeOperators,\n relativeTimeOperators(dateTimeUnits)\n ),\n [ComponentType.TextField]: withDefaults(textBasedFieldCustomisations),\n [ComponentType.MultilineTextField]: withDefaults(\n textBasedFieldCustomisations\n ),\n [ComponentType.EmailAddressField]: withDefaults(textBasedFieldCustomisations)\n}\n\nexport function getOperatorNames(fieldType) {\n return Object.keys(getConditionals(fieldType)).sort()\n}\n\nexport function getExpression(\n fieldType: ComponentType,\n fieldName: string,\n operator: string,\n value: ConditionValueAbstract\n) {\n return getConditionals(fieldType)[operator].expression(\n { type: fieldType, name: fieldName },\n value\n )\n}\n\nexport function getOperatorConfig(fieldType: ComponentType, operator) {\n return getConditionals(fieldType)[operator]\n}\n\nfunction getConditionals(fieldType: ComponentType) {\n return customOperators[fieldType] || defaultOperators\n}\n\nfunction inline(operator: Operator) {\n return {\n expression: (field: ComponentDef, value) =>\n `${field.name} ${operator} ${formatValue(field.type, value.value)}`\n }\n}\n\nfunction lengthIs(operator: Operator) {\n return {\n expression: (field: ComponentDef, value) =>\n `length(${field.name}) ${operator} ${value.value}`\n }\n}\n\nfunction reverseInline(operator: 'in') {\n return {\n expression: (field: ComponentDef, value) =>\n `${formatValue(field.type, value.value)} ${operator} ${field.name}`\n }\n}\n\nfunction not(operatorDefinition) {\n return {\n expression: (field: ComponentDef, value) =>\n `not (${operatorDefinition.expression(field, value)})`\n }\n}\n\nfunction formatValue(fieldType: ComponentType, value) {\n if (\n fieldType === ComponentType.YesNoField ||\n fieldType === ComponentType.NumberField\n ) {\n return value\n }\n\n return `'${value}'`\n}\n\nexport const absoluteDateOrTimeOperatorNames = Object.keys(\n absoluteDateTimeOperators\n)\nexport const relativeDateOrTimeOperatorNames = Object.keys(\n relativeTimeOperators(dateTimeUnits)\n)\n\nfunction absoluteDateTime(operator: Operator) {\n return {\n expression: (field: ComponentDef, value) => {\n if (value instanceof ConditionValue) {\n return `${field.name} ${operator} '${value.toExpression()}'`\n }\n throw Error('only Value types are supported')\n }\n }\n}\n\nfunction relativeTime(pastOperator, futureOperator, units) {\n return {\n units,\n expression: (field: ComponentDef, value) => {\n if (value instanceof RelativeTimeValue) {\n const operator =\n value.direction === DateDirections.PAST\n ? pastOperator\n : futureOperator\n return `${field.name} ${operator} ${value.toExpression()}`\n }\n throw Error('time shift requires a TimeShiftValue')\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"condition-operators.js","names":["ComponentType","timeUnits","dateUnits","dateTimeUnits","ConditionValue","RelativeTimeValue","DateDirections","Operator","OperatorName","defaultOperators","Is","inline","IsNot","withDefaults","param","Object","assign","textFieldOperators","IsLongerThan","lengthIs","IsMoreThan","IsShorterThan","IsLessThan","HasLength","absoluteDateTimeOperators","absoluteDateTime","IsBefore","IsAfter","relativeTimeOperators","units","IsAtLeast","relativeTime","IsAtMost","customOperators","CheckboxesField","Contains","reverseInline","DoesNotContain","not","NumberField","TimeField","DatePartsField","TextField","MultilineTextField","EmailAddressField","YesNoField","getOperatorNames","fieldType","keys","getConditionals","sort","getExpression","fieldName","operator","value","expression","type","name","getOperatorConfig","field","formatValue","operatorDefinition","toExpression","absoluteDateOrTimeOperatorNames","relativeDateOrTimeOperatorNames","Error","pastOperator","futureOperator","isPast","direction","PAST"],"sources":["../../../src/conditions/condition-operators.ts"],"sourcesContent":["import { ComponentType } from '~/src/components/enums.js'\nimport {\n type ConditionalComponentType,\n type ComponentDef\n} from '~/src/components/types.js'\nimport {\n timeUnits,\n dateUnits,\n dateTimeUnits,\n ConditionValue,\n RelativeTimeValue\n} from '~/src/conditions/condition-values.js'\nimport {\n DateDirections,\n Operator,\n OperatorName\n} from '~/src/conditions/enums.js'\nimport {\n type Conditionals,\n type DateUnits,\n type OperatorDefinition,\n type TimeUnits\n} from '~/src/conditions/types.js'\n\nconst defaultOperators = {\n [OperatorName.Is]: inline(Operator.Is),\n [OperatorName.IsNot]: inline(Operator.IsNot)\n}\n\nfunction withDefaults<T>(param: T) {\n return Object.assign({}, param, defaultOperators)\n}\n\nconst textFieldOperators = {\n [OperatorName.IsLongerThan]: lengthIs(Operator.IsMoreThan),\n [OperatorName.IsShorterThan]: lengthIs(Operator.IsLessThan),\n [OperatorName.HasLength]: lengthIs(Operator.Is)\n}\n\nconst absoluteDateTimeOperators = {\n [OperatorName.Is]: absoluteDateTime(Operator.Is),\n [OperatorName.IsNot]: absoluteDateTime(Operator.IsNot),\n [OperatorName.IsBefore]: absoluteDateTime(Operator.IsLessThan),\n [OperatorName.IsAfter]: absoluteDateTime(Operator.IsMoreThan)\n}\n\nconst relativeTimeOperators = (units: DateUnits | TimeUnits) => ({\n [OperatorName.IsAtLeast]: relativeTime(\n Operator.IsAtMost,\n Operator.IsAtLeast,\n units\n ),\n [OperatorName.IsAtMost]: relativeTime(\n Operator.IsAtLeast,\n Operator.IsAtMost,\n units\n ),\n [OperatorName.IsLessThan]: relativeTime(\n Operator.IsMoreThan,\n Operator.IsLessThan,\n units\n ),\n [OperatorName.IsMoreThan]: relativeTime(\n Operator.IsLessThan,\n Operator.IsMoreThan,\n units\n )\n})\n\nexport const customOperators = {\n [ComponentType.CheckboxesField]: {\n [OperatorName.Contains]: reverseInline(Operator.Contains),\n [OperatorName.DoesNotContain]: not(reverseInline(Operator.Contains))\n },\n [ComponentType.NumberField]: withDefaults({\n [OperatorName.IsAtLeast]: inline(Operator.IsAtLeast),\n [OperatorName.IsAtMost]: inline(Operator.IsAtMost),\n [OperatorName.IsLessThan]: inline(Operator.IsLessThan),\n [OperatorName.IsMoreThan]: inline(Operator.IsMoreThan)\n }),\n [ComponentType.TimeField]: {\n ...absoluteDateTimeOperators,\n ...relativeTimeOperators(timeUnits)\n },\n [ComponentType.DatePartsField]: {\n ...absoluteDateTimeOperators,\n ...relativeTimeOperators(dateUnits)\n },\n [ComponentType.TextField]: withDefaults(textFieldOperators),\n [ComponentType.MultilineTextField]: withDefaults(textFieldOperators),\n [ComponentType.EmailAddressField]: withDefaults(textFieldOperators),\n [ComponentType.YesNoField]: defaultOperators\n} as const satisfies Record<ConditionalComponentType, Partial<Conditionals>>\n\nexport function getOperatorNames(fieldType: ConditionalComponentType) {\n return Object.keys(getConditionals(fieldType)).sort()\n}\n\nexport function getExpression(\n fieldType: ConditionalComponentType,\n fieldName: string,\n operator: OperatorName,\n value: ConditionValue | RelativeTimeValue\n) {\n return getConditionals(fieldType)[operator]?.expression(\n { type: fieldType, name: fieldName },\n value\n )\n}\n\nexport function getOperatorConfig(\n fieldType: ConditionalComponentType,\n operator: OperatorName\n) {\n return getConditionals(fieldType)[operator]\n}\n\nfunction getConditionals(\n fieldType: ConditionalComponentType\n): Partial<Conditionals> {\n if (fieldType in customOperators) {\n return customOperators[fieldType]\n }\n\n return defaultOperators\n}\n\nfunction inline(operator: Operator): OperatorDefinition {\n return {\n expression(field, value) {\n return `${field.name} ${operator} ${formatValue(field, value)}`\n }\n }\n}\n\nfunction lengthIs(operator: Operator): OperatorDefinition {\n return {\n expression(field, value) {\n return `length(${field.name}) ${operator} ${formatValue(field, value)}`\n }\n }\n}\n\nfunction reverseInline(operator: Operator.Contains): OperatorDefinition {\n return {\n expression(field, value) {\n return `${formatValue(field, value)} ${operator} ${field.name}`\n }\n }\n}\n\nfunction not(operatorDefinition: OperatorDefinition): OperatorDefinition {\n return {\n expression(field, value) {\n return `not (${operatorDefinition.expression(field, value)})`\n }\n }\n}\n\nfunction formatValue(\n field: Pick<ComponentDef, 'type'>,\n value: ConditionValue | RelativeTimeValue\n) {\n if (\n 'value' in value &&\n (field.type === ComponentType.YesNoField ||\n field.type === ComponentType.NumberField)\n ) {\n return value.value\n }\n\n return `'${value.toExpression()}'`\n}\n\nexport const absoluteDateOrTimeOperatorNames = Object.keys(\n absoluteDateTimeOperators\n)\n\nexport const relativeDateOrTimeOperatorNames = Object.keys(\n relativeTimeOperators(dateTimeUnits)\n)\n\nfunction absoluteDateTime(operator: Operator): OperatorDefinition {\n return {\n expression(field, value) {\n if (!(value instanceof ConditionValue)) {\n throw new Error(\n \"Expression param 'value' must be ConditionValue instance\"\n )\n }\n\n return `${field.name} ${operator} '${formatValue(field, value)}'`\n }\n }\n}\n\nfunction relativeTime(\n pastOperator: Operator,\n futureOperator: Operator,\n units: DateUnits | TimeUnits\n): OperatorDefinition {\n return {\n units,\n expression(field, value) {\n if (!(value instanceof RelativeTimeValue)) {\n throw new Error(\n \"Expression param 'value' must be RelativeTimeValue instance\"\n )\n }\n\n const isPast = value.direction === DateDirections.PAST\n return `${field.name} ${isPast ? pastOperator : futureOperator} ${value.toExpression()}`\n }\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"condition-ref.js","names":["ConditionAbstract","ConditionRef","conditionName","conditionDisplayName","constructor","coordinator","Error","asFirstCondition","_asFirstCondition","conditionString","conditionExpression","clone"],"sources":["../../../src/conditions/condition-ref.ts"],"sourcesContent":["import { ConditionAbstract } from '~/src/conditions/condition-abstract.js'\nimport { type Coordinator } from '~/src/conditions/enums.js'\n\nexport class ConditionRef extends ConditionAbstract {\n conditionName
|
1
|
+
{"version":3,"file":"condition-ref.js","names":["ConditionAbstract","ConditionRef","conditionName","conditionDisplayName","constructor","coordinator","Error","asFirstCondition","_asFirstCondition","conditionString","conditionExpression","clone"],"sources":["../../../src/conditions/condition-ref.ts"],"sourcesContent":["import { ConditionAbstract } from '~/src/conditions/condition-abstract.js'\nimport { type Coordinator } from '~/src/conditions/enums.js'\n\nexport class ConditionRef extends ConditionAbstract {\n conditionName\n conditionDisplayName\n\n constructor(\n conditionName: string,\n conditionDisplayName: string,\n coordinator: Coordinator | undefined\n ) {\n super(coordinator)\n\n if (typeof conditionName !== 'string') {\n throw new Error(\"ConditionRef param 'conditionName' must be a string\")\n }\n\n if (typeof conditionDisplayName !== 'string') {\n throw new Error(\n \"ConditionRef param 'conditionDisplayName' must be a string\"\n )\n }\n\n this.conditionName = conditionName\n this.conditionDisplayName = conditionDisplayName\n }\n\n asFirstCondition() {\n this._asFirstCondition()\n return this\n }\n\n conditionString() {\n return `'${this.conditionDisplayName}'`\n }\n\n conditionExpression() {\n return this.conditionName\n }\n\n clone() {\n return new ConditionRef(\n this.conditionName,\n this.conditionDisplayName,\n this.coordinator\n )\n }\n}\n"],"mappings":"AAAA,SAASA,iBAAiB;AAG1B,OAAO,MAAMC,YAAY,SAASD,iBAAiB,CAAC;EAClDE,aAAa;EACbC,oBAAoB;EAEpBC,WAAWA,CACTF,aAAqB,EACrBC,oBAA4B,EAC5BE,WAAoC,EACpC;IACA,KAAK,CAACA,WAAW,CAAC;IAElB,IAAI,OAAOH,aAAa,KAAK,QAAQ,EAAE;MACrC,MAAM,IAAII,KAAK,CAAC,qDAAqD,CAAC;IACxE;IAEA,IAAI,OAAOH,oBAAoB,KAAK,QAAQ,EAAE;MAC5C,MAAM,IAAIG,KAAK,CACb,4DACF,CAAC;IACH;IAEA,IAAI,CAACJ,aAAa,GAAGA,aAAa;IAClC,IAAI,CAACC,oBAAoB,GAAGA,oBAAoB;EAClD;EAEAI,gBAAgBA,CAAA,EAAG;IACjB,IAAI,CAACC,iBAAiB,CAAC,CAAC;IACxB,OAAO,IAAI;EACb;EAEAC,eAAeA,CAAA,EAAG;IAChB,OAAO,IAAI,IAAI,CAACN,oBAAoB,GAAG;EACzC;EAEAO,mBAAmBA,CAAA,EAAG;IACpB,OAAO,IAAI,CAACR,aAAa;EAC3B;EAEAS,KAAKA,CAAA,EAAG;IACN,OAAO,IAAIV,YAAY,CACrB,IAAI,CAACC,aAAa,EAClB,IAAI,CAACC,oBAAoB,EACzB,IAAI,CAACE,WACP,CAAC;EACH;AACF","ignoreList":[]}
|