@@ -27,8 +27,6 @@ import { Config } from 'src/app/types';
27
27
export class FormImageComponent implements OnInit , OnDestroy {
28
28
@Input ( ) parentForm : UntypedFormGroup ;
29
29
@Input ( ) images : string [ ] ;
30
- @Input ( ) imagesGroupOne : Config [ 'imageGroupOne' ] ;
31
- @Input ( ) imagesGroupTwo : Config [ 'imageGroupTwo' ] ;
32
30
@Input ( ) imagesGroupThree : Config [ 'imageGroupThree' ] ;
33
31
@Input ( ) allowCustomImage : boolean ;
34
32
@Input ( ) hideRegistry : boolean ;
@@ -69,8 +67,6 @@ export class FormImageComponent implements OnInit, OnDestroy {
69
67
. get ( 'customImage' )
70
68
. setValidators ( [ this . urlValidator ( ) , Validators . required ] ) ;
71
69
this . parentForm . get ( 'image' ) . setValidators ( [ ] ) ;
72
- this . parentForm . get ( 'imageGroupOne' ) . setValidators ( [ ] ) ;
73
- this . parentForm . get ( 'imageGroupTwo' ) . setValidators ( [ ] ) ;
74
70
this . parentForm . get ( 'imageGroupThree' ) . setValidators ( [ ] ) ;
75
71
}
76
72
this . parentForm . get ( 'serverType' ) . valueChanges . subscribe ( selection => {
@@ -79,40 +75,26 @@ export class FormImageComponent implements OnInit, OnDestroy {
79
75
. get ( 'customImage' )
80
76
. setValidators ( [ this . urlValidator ( ) , Validators . required ] ) ; //AAW
81
77
this . parentForm . get ( 'image' ) . setValidators ( Validators . required ) ;
82
- this . parentForm . get ( 'imageGroupOne' ) . setValidators ( [ ] ) ;
83
- this . parentForm . get ( 'imageGroupTwo' ) . setValidators ( [ ] ) ;
84
78
this . parentForm . get ( 'imageGroupThree' ) . setValidators ( [ ] ) ;
85
79
} else if ( selection === 'group-one' ) {
86
80
this . parentForm
87
81
. get ( 'customImage' )
88
82
. setValidators ( [ this . urlValidator ( ) , Validators . required ] ) ; //AAW
89
83
this . parentForm . get ( 'image' ) . setValidators ( [ ] ) ;
90
- this . parentForm
91
- . get ( 'imageGroupOne' )
92
- . setValidators ( Validators . required ) ;
93
- this . parentForm . get ( 'imageGroupTwo' ) . setValidators ( [ ] ) ;
94
84
this . parentForm . get ( 'imageGroupThree' ) . setValidators ( [ ] ) ;
95
85
} else if ( selection === 'group-two' ) {
96
86
this . parentForm
97
87
. get ( 'customImage' )
98
88
. setValidators ( [ this . urlValidator ( ) , Validators . required ] ) ; //AAW
99
89
this . parentForm . get ( 'image' ) . setValidators ( [ ] ) ;
100
- this . parentForm . get ( 'imageGroupOne' ) . setValidators ( [ ] ) ;
101
- this . parentForm
102
- . get ( 'imageGroupTwo' )
103
- . setValidators ( Validators . required ) ;
104
90
this . parentForm . get ( 'imageGroupThree' ) . setValidators ( [ ] ) ;
105
91
} else if ( selection === 'group-three' ) {
106
92
this . parentForm . get ( 'image' ) . setValidators ( [ ] ) ;
107
- this . parentForm . get ( 'imageGroupOne' ) . setValidators ( [ ] ) ;
108
- this . parentForm . get ( 'imageGroupTwo' ) . setValidators ( [ ] ) ;
109
93
this . parentForm
110
94
. get ( 'imageGroupThree' )
111
95
. setValidators ( Validators . required ) ;
112
96
}
113
97
this . parentForm . get ( 'image' ) . updateValueAndValidity ( ) ;
114
- this . parentForm . get ( 'imageGroupOne' ) . updateValueAndValidity ( ) ;
115
- this . parentForm . get ( 'imageGroupTwo' ) . updateValueAndValidity ( ) ;
116
98
this . parentForm . get ( 'imageGroupThree' ) . updateValueAndValidity ( ) ;
117
99
} ) ;
118
100
this . parentForm . get ( 'customImage' ) . updateValueAndValidity ( ) ;
@@ -153,8 +135,6 @@ export class FormImageComponent implements OnInit, OnDestroy {
153
135
const currentLanguage = this . localeId ;
154
136
155
137
const msg = {
156
- 'group-one' : this . imagesGroupOne . disabledMessage ,
157
- 'group-two' : this . imagesGroupTwo . disabledMessage ,
158
138
'group-three' : this . imagesGroupThree . disabledMessage ,
159
139
} ;
160
140
0 commit comments