Skip to content

Commit 8982791

Browse files
committed
editor: fix can remove field when a hide expression exists
* Avoids the possiblity to remove or add a field with an hide expression (tash button on the label component). * Adds an exemple in the demo editor. * Does not add a field with an hide expression during the edit initialization. In the previous versions the field was in the editor and in the completion menu. * Fixes hide then show a field of array type at the root level. An example has been added. Co-Authored-by: Johnny Mariéthoz <[email protected]>
1 parent 3a0bc78 commit 8982791

File tree

5 files changed

+115
-4
lines changed

5 files changed

+115
-4
lines changed

projects/ng-core-tester/src/app/record/editor/recordData.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@
2020
"markdown": "Hello **world**.\nGreat day.",
2121
"array_with_multicheckbox": ["checkbox1", "checkbox2"],
2222
"input_with_default_value": "slrofar6uh",
23-
"enum": "val1"
23+
"enum": "val1",
24+
"notes": [
25+
{
26+
"type": "staff_note",
27+
"content": "test"
28+
}
29+
]
2430
},
2531
"updated": "2024-03-06T07:47:33.944197+00:00"
2632
}

projects/ng-core-tester/src/app/record/editor/schema.json

+102
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77
"required"
88
],
99
"propertiesOrder": [
10+
"notes",
1011
"oneOf",
1112
"optional",
1213
"required",
14+
"optional_hide_expression_field",
1315
"essential",
1416
"hidden",
1517
"defaultHidden",
@@ -47,6 +49,91 @@
4749
"field_radio_button_inline"
4850
],
4951
"properties": {
52+
"notes": {
53+
"title": "Notes",
54+
"type": "array",
55+
"minItems": 1,
56+
"items": {
57+
"type": "object",
58+
"additionalProperties": false,
59+
"title": "Note",
60+
"propertiesOrder": [
61+
"type",
62+
"content"
63+
],
64+
"required": [
65+
"type",
66+
"content"
67+
],
68+
"properties": {
69+
"type": {
70+
"type": "string",
71+
"title": "Type",
72+
"enum": [
73+
"staff_note",
74+
"vendor_note"
75+
],
76+
"default": "staff_note",
77+
"widget": {
78+
"formlyConfig": {
79+
"type": "selectWithSort",
80+
"props": {
81+
"options": [
82+
{
83+
"label": "vendor_note",
84+
"value": "vendor_note"
85+
},
86+
{
87+
"label": "staff_note",
88+
"value": "staff_note"
89+
}
90+
]
91+
}
92+
}
93+
}
94+
},
95+
"content": {
96+
"type": "string",
97+
"title": "Content",
98+
"maxLength": 2000,
99+
"minLength": 1,
100+
"widget": {
101+
"formlyConfig": {
102+
"type": "textarea",
103+
"props": {
104+
"rows": 3
105+
}
106+
}
107+
}
108+
}
109+
}
110+
},
111+
"widget": {
112+
"formlyConfig": {
113+
"wrappers": [
114+
"card"
115+
],
116+
"props": {
117+
"validation": {
118+
"validators": {
119+
"uniqueValueKeysInObject": {
120+
"keys": [
121+
"type"
122+
]
123+
}
124+
},
125+
"messages": {
126+
"uniqueValueKeysInObjectMessage": "Only one note per type is allowed"
127+
}
128+
},
129+
"hide": true,
130+
"navigation": {
131+
"essential": true
132+
}
133+
}
134+
}
135+
}
136+
},
50137
"$schema": {
51138
"title": "Schema",
52139
"type": "string",
@@ -251,6 +338,21 @@
251338
}
252339
}
253340
},
341+
"optional_hide_expression_field": {
342+
"title": "Optional Field with Hide Expression",
343+
"type": "string",
344+
"minLength": 3,
345+
"widget": {
346+
"formlyConfig": {
347+
"expressions": {
348+
"hide": "!field.parent.model.required"
349+
},
350+
"props": {
351+
"doNotSubmitOnEnter": true
352+
}
353+
}
354+
}
355+
},
254356
"enum": {
255357
"title": "List of values",
256358
"type": "string",

projects/rero/ng-core/src/lib/record/editor/editor.component.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,8 @@ export class EditorComponent extends AbstractCanDeactivateComponent implements O
767767
}
768768
return (
769769
!field.props.required &&
770-
!field.hide
770+
!field.hide &&
771+
!('hide' in field?.expressions)
771772
);
772773
}
773774

projects/rero/ng-core/src/lib/record/editor/extensions.ts

+2
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,8 @@ export class NgCoreFormlyExtension {
219219
// ignore array item which as key of the form "0"
220220
// TODO: find a better way to identify this case
221221
|| !isNaN(Number(field.key))
222+
// ignore field that has hide expression
223+
|| ('hide' in field?.expressions)
222224
// do not hide a field containing a 'hide' wrapper
223225
|| this._hasHideWrapper(field)
224226
// do not hide a field that has a parent marked as hidden and a model is empty

projects/rero/ng-core/src/lib/record/editor/widgets/add-field-editor/add-field-editor.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,6 @@ export class AddFieldEditorComponent implements OnInit {
153153
* @param match - TypeaheadMath, the selected element
154154
*/
155155
showSelectedField(field: any) {
156-
// show the field in the form
157-
field.hide = false;
158156
// reset the input value
159157
this.value = undefined;
160158
// remove the the element from the list of hidden fields
@@ -164,6 +162,8 @@ export class AddFieldEditorComponent implements OnInit {
164162
// See: https://blog.angular-university.io/angular-debugging/
165163
// wait that the component is present in the DOM
166164
setTimeout(() => this.editorComponentInstance.setFieldFocus(field, true));
165+
// show the field in the form
166+
field.hide = false;
167167
}
168168

169169
/**

0 commit comments

Comments
 (0)