File tree 5 files changed +115
-4
lines changed
ng-core-tester/src/app/record/editor
rero/ng-core/src/lib/record/editor
5 files changed +115
-4
lines changed Original file line number Diff line number Diff line change 20
20
"markdown" : " Hello **world**.\n Great day." ,
21
21
"array_with_multicheckbox" : [" checkbox1" , " checkbox2" ],
22
22
"input_with_default_value" : " slrofar6uh" ,
23
- "enum" : " val1"
23
+ "enum" : " val1" ,
24
+ "notes" : [
25
+ {
26
+ "type" : " staff_note" ,
27
+ "content" : " test"
28
+ }
29
+ ]
24
30
},
25
31
"updated" : " 2024-03-06T07:47:33.944197+00:00"
26
32
}
Original file line number Diff line number Diff line change 7
7
" required"
8
8
],
9
9
"propertiesOrder" : [
10
+ " notes" ,
10
11
" oneOf" ,
11
12
" optional" ,
12
13
" required" ,
14
+ " optional_hide_expression_field" ,
13
15
" essential" ,
14
16
" hidden" ,
15
17
" defaultHidden" ,
47
49
" field_radio_button_inline"
48
50
],
49
51
"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
+ },
50
137
"$schema" : {
51
138
"title" : " Schema" ,
52
139
"type" : " string" ,
251
338
}
252
339
}
253
340
},
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
+ },
254
356
"enum" : {
255
357
"title" : " List of values" ,
256
358
"type" : " string" ,
Original file line number Diff line number Diff line change @@ -767,7 +767,8 @@ export class EditorComponent extends AbstractCanDeactivateComponent implements O
767
767
}
768
768
return (
769
769
! field . props . required &&
770
- ! field . hide
770
+ ! field . hide &&
771
+ ! ( 'hide' in field ?. expressions )
771
772
) ;
772
773
}
773
774
Original file line number Diff line number Diff line change @@ -219,6 +219,8 @@ export class NgCoreFormlyExtension {
219
219
// ignore array item which as key of the form "0"
220
220
// TODO: find a better way to identify this case
221
221
|| ! isNaN ( Number ( field . key ) )
222
+ // ignore field that has hide expression
223
+ || ( 'hide' in field ?. expressions )
222
224
// do not hide a field containing a 'hide' wrapper
223
225
|| this . _hasHideWrapper ( field )
224
226
// do not hide a field that has a parent marked as hidden and a model is empty
Original file line number Diff line number Diff line change @@ -153,8 +153,6 @@ export class AddFieldEditorComponent implements OnInit {
153
153
* @param match - TypeaheadMath, the selected element
154
154
*/
155
155
showSelectedField ( field : any ) {
156
- // show the field in the form
157
- field . hide = false ;
158
156
// reset the input value
159
157
this . value = undefined ;
160
158
// remove the the element from the list of hidden fields
@@ -164,6 +162,8 @@ export class AddFieldEditorComponent implements OnInit {
164
162
// See: https://blog.angular-university.io/angular-debugging/
165
163
// wait that the component is present in the DOM
166
164
setTimeout ( ( ) => this . editorComponentInstance . setFieldFocus ( field , true ) ) ;
165
+ // show the field in the form
166
+ field . hide = false ;
167
167
}
168
168
169
169
/**
You can’t perform that action at this time.
0 commit comments