@ -100,7 +100,6 @@ import { HoldingDetailDialogParams } from './interfaces/interfaces';
templateUrl : 'holding-detail-dialog.html'
templateUrl : 'holding-detail-dialog.html'
} )
} )
export class GfHoldingDetailDialogComponent implements OnDestroy , OnInit {
export class GfHoldingDetailDialogComponent implements OnDestroy , OnInit {
public activityForm : FormGroup ;
public accounts : Account [ ] ;
public accounts : Account [ ] ;
public assetClass : string ;
public assetClass : string ;
public assetSubClass : string ;
public assetSubClass : string ;
@ -155,6 +154,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
public transactionCount : number ;
public transactionCount : number ;
public user : User ;
public user : User ;
public value : number ;
public value : number ;
public holdingForm : FormGroup ;
private unsubscribeSubject = new Subject < void > ( ) ;
private unsubscribeSubject = new Subject < void > ( ) ;
@ -178,7 +178,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
}
}
public ngOnInit() {
public ngOnInit() {
this . activity Form = this . formBuilder . group ( {
this . holding Form = this . formBuilder . group ( {
tags : [ ] as string [ ]
tags : [ ] as string [ ]
} ) ;
} ) ;
@ -187,7 +187,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
{ id : this.data.symbol , type : 'SYMBOL' }
{ id : this.data.symbol , type : 'SYMBOL' }
] ;
] ;
this . activity Form
this . holding Form
. get ( 'tags' )
. get ( 'tags' )
. valueChanges . pipe ( takeUntil ( this . unsubscribeSubject ) )
. valueChanges . pipe ( takeUntil ( this . unsubscribeSubject ) )
. subscribe ( ( tags : Tag [ ] ) = > {
. subscribe ( ( tags : Tag [ ] ) = > {
@ -427,7 +427,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
} ;
} ;
} ) ;
} ) ;
this . activity Form. setValue ( { tags : this.tags } , { emitEvent : false } ) ;
this . holding Form. setValue ( { tags : this.tags } , { emitEvent : false } ) ;
this . transactionCount = transactionCount ;
this . transactionCount = transactionCount ;
this . totalItems = transactionCount ;
this . totalItems = transactionCount ;
@ -585,10 +585,6 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
}
}
}
}
public onTagsChanged ( tags : Tag [ ] ) {
this . activityForm . get ( 'tags' ) . setValue ( tags ) ;
}
public onUpdateActivity ( aActivity : Activity ) {
public onUpdateActivity ( aActivity : Activity ) {
this . router . navigate (
this . router . navigate (
internalRoutes . portfolio . subRoutes . activities . routerLink ,
internalRoutes . portfolio . subRoutes . activities . routerLink ,