@@ -139,6 +139,7 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
139
139
user : any ;
140
140
payload : any ;
141
141
teamMitigations : any [ ] = [ ] ;
142
+ milestoneTeamOptions : any [ ] = [ ] ;
142
143
activeTabIndex : number = 0 ;
143
144
mitigationSaving : boolean = false ;
144
145
isGlobalFinding : boolean ;
@@ -237,7 +238,6 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
237
238
238
239
return items ;
239
240
} ) ;
240
-
241
241
constructor (
242
242
private assignedTeamService : AssignedTeamService ,
243
243
private confirmationService : ConfirmationService ,
@@ -270,7 +270,7 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
270
270
this . setPayload ( ) ;
271
271
}
272
272
273
- async setPayload ( ) {
273
+ setPayload ( ) {
274
274
this . setPayloadService . setPayload ( ) ;
275
275
this . subs . add (
276
276
this . setPayloadService . user$ . subscribe ( user => {
@@ -284,6 +284,18 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
284
284
if ( this . accessLevel ( ) > 0 ) {
285
285
this . obtainCollectionData ( true ) ;
286
286
this . getData ( ) ;
287
+ if ( this . selectedCollection ) {
288
+ this . getLabelData ( ) ;
289
+ }
290
+ }
291
+ } )
292
+ ) ;
293
+
294
+ this . subs . add (
295
+ this . sharedService . selectedCollection . subscribe ( collectionId => {
296
+ this . selectedCollection = collectionId ;
297
+ if ( this . selectedCollection ) {
298
+ this . getLabelData ( ) ;
287
299
}
288
300
} )
289
301
) ;
@@ -292,7 +304,6 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
292
304
async getData ( ) {
293
305
this . loadAAPackages ( ) ;
294
306
this . loadAssetDeltaList ( ) ;
295
- this . getLabelData ( ) ;
296
307
297
308
if ( this . poamId === undefined || ! this . poamId ) {
298
309
return ;
@@ -423,6 +434,7 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
423
434
this . poamAssets = result . poamAssets ;
424
435
}
425
436
this . loadingTeams . set ( false ) ;
437
+ this . updateMilestoneTeamOptions ( ) ;
426
438
} ,
427
439
error : ( error ) => {
428
440
console . error ( 'Error loading assets:' , error ) ;
@@ -455,7 +467,7 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
455
467
this . poamAssignedTeams
456
468
) ;
457
469
this . poamAssignedTeams = updatedTeams ;
458
-
470
+ this . updateMilestoneTeamOptions ( ) ;
459
471
if ( this . poam ?. poamId && this . poam . poamId !== 'ADDPOAM' ) {
460
472
this . syncTeamMitigations ( ) ;
461
473
}
@@ -634,7 +646,7 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
634
646
635
647
savePoam ( saveState : boolean = false ) : Promise < boolean > {
636
648
return new Promise ( ( resolve ) => {
637
- if ( ! this . validateData ( saveState ) ) {
649
+ if ( ! this . validateData ( ) ) {
638
650
resolve ( false ) ;
639
651
return ;
640
652
}
@@ -880,27 +892,35 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
880
892
} ) ;
881
893
}
882
894
883
- verifySubmitPoam ( ) {
884
- const validationResult = this . poamValidationService . validateMilestones ( this . poamMilestones ) ;
885
- if ( ! validationResult . valid ) {
895
+ verifySubmitPoam ( showDialog : boolean = true ) : boolean {
896
+ const milestoneValidation = this . poamValidationService . validateMilestones ( this . poamMilestones ) ;
897
+ if ( ! milestoneValidation . valid ) {
886
898
this . messageService . add ( {
887
899
severity : 'error' ,
888
900
summary : 'Information' ,
889
- detail : validationResult . message
901
+ detail : milestoneValidation . message
890
902
} ) ;
891
- } else {
892
- this . submitDialogVisible = true ;
903
+ return false ;
893
904
}
894
- }
895
905
896
- async confirmSubmit ( ) {
897
- const validationResult = this . poamValidationService . validateMilestones ( this . poamMilestones ) ;
898
- if ( ! validationResult . valid ) {
906
+ const submissionValidation = this . poamValidationService . validateSubmissionRequirements ( this . poam , this . teamMitigations , this . dates ) ;
907
+ if ( ! submissionValidation . valid ) {
899
908
this . messageService . add ( {
900
909
severity : 'error' ,
901
910
summary : 'Information' ,
902
- detail : validationResult . message
911
+ detail : submissionValidation . message
903
912
} ) ;
913
+ return false ;
914
+ }
915
+
916
+ if ( showDialog ) {
917
+ this . submitDialogVisible = true ;
918
+ }
919
+ return true ;
920
+ }
921
+
922
+ async confirmSubmit ( ) {
923
+ if ( ! this . verifySubmitPoam ( false ) ) {
904
924
return ;
905
925
}
906
926
@@ -923,8 +943,8 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
923
943
this . submitDialogVisible = false ;
924
944
}
925
945
926
- validateData ( saveState : boolean ) : boolean {
927
- const result = this . poamValidationService . validateData ( this . poam , this . dates , saveState ) ;
946
+ validateData ( ) : boolean {
947
+ const result = this . poamValidationService . validateData ( this . poam ) ;
928
948
if ( ! result . valid ) {
929
949
this . messageService . add ( {
930
950
severity : 'error' ,
@@ -970,6 +990,25 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
970
990
971
991
handleTeamsChanged ( event : { teams : any [ ] , action : string , team ?: any } ) {
972
992
this . poamAssignedTeams = event . teams ;
993
+ this . updateMilestoneTeamOptions ( ) ;
994
+
995
+ if ( event . action === 'added' && event . team ?. assignedTeamId ) {
996
+ const hasTeamMitigation = this . teamMitigations . some (
997
+ m => m . assignedTeamId === event . team . assignedTeamId
998
+ ) ;
999
+
1000
+ if ( ! hasTeamMitigation ) {
1001
+ this . teamMitigations . push ( {
1002
+ assignedTeamId : event . team . assignedTeamId ,
1003
+ assignedTeamName : event . team . assignedTeamName ,
1004
+ mitigationText : '' ,
1005
+ isActive : true
1006
+ } ) ;
1007
+ }
1008
+
1009
+ this . updateMilestoneTeamOptions ( ) ;
1010
+ }
1011
+
973
1012
if ( this . poam && event . action !== 'save-request' ) {
974
1013
this . poam . assignedTeams = this . poamAssignedTeams
975
1014
. filter ( team => team . assignedTeamId )
@@ -1017,6 +1056,22 @@ export class PoamDetailsComponent implements OnInit, OnDestroy {
1017
1056
}
1018
1057
}
1019
1058
1059
+ updateMilestoneTeamOptions ( ) {
1060
+ if ( ! this . poamAssignedTeams || ! this . assignedTeamOptions ) {
1061
+ this . milestoneTeamOptions = [ ] ;
1062
+ return ;
1063
+ }
1064
+
1065
+ const activeTeamIds = this . poamAssignedTeams
1066
+ . filter ( team => team . isActive !== false )
1067
+ . map ( team => team . assignedTeamId ) ;
1068
+
1069
+ const filteredTeams = this . assignedTeamOptions
1070
+ . filter ( team => activeTeamIds . includes ( team . assignedTeamId ) ) ;
1071
+
1072
+ this . milestoneTeamOptions = [ ...filteredTeams ] ;
1073
+ }
1074
+
1020
1075
loadTeamMitigations ( ) {
1021
1076
if ( ! this . poam ?. poamId || this . poam . poamId === 'ADDPOAM' ) {
1022
1077
return ;
0 commit comments