|
@ -4,7 +4,9 @@ import { |
|
|
Inject, |
|
|
Inject, |
|
|
OnDestroy |
|
|
OnDestroy |
|
|
} from '@angular/core'; |
|
|
} from '@angular/core'; |
|
|
|
|
|
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; |
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; |
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; |
|
|
|
|
|
import { CreateAccessDto } from '@ghostfolio/api/app/access/create-access.dto'; |
|
|
import { Subject } from 'rxjs'; |
|
|
import { Subject } from 'rxjs'; |
|
|
|
|
|
|
|
|
import { CreateOrUpdateAccessDialogParams } from './interfaces/interfaces'; |
|
|
import { CreateOrUpdateAccessDialogParams } from './interfaces/interfaces'; |
|
@ -17,19 +19,36 @@ import { CreateOrUpdateAccessDialogParams } from './interfaces/interfaces'; |
|
|
templateUrl: 'create-or-update-access-dialog.html' |
|
|
templateUrl: 'create-or-update-access-dialog.html' |
|
|
}) |
|
|
}) |
|
|
export class CreateOrUpdateAccessDialog implements OnDestroy { |
|
|
export class CreateOrUpdateAccessDialog implements OnDestroy { |
|
|
|
|
|
public accessForm: FormGroup; |
|
|
|
|
|
|
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
private unsubscribeSubject = new Subject<void>(); |
|
|
|
|
|
|
|
|
public constructor( |
|
|
public constructor( |
|
|
|
|
|
@Inject(MAT_DIALOG_DATA) public data: CreateOrUpdateAccessDialogParams, |
|
|
public dialogRef: MatDialogRef<CreateOrUpdateAccessDialog>, |
|
|
public dialogRef: MatDialogRef<CreateOrUpdateAccessDialog>, |
|
|
@Inject(MAT_DIALOG_DATA) public data: CreateOrUpdateAccessDialogParams |
|
|
private formBuilder: FormBuilder |
|
|
) {} |
|
|
) {} |
|
|
|
|
|
|
|
|
ngOnInit() {} |
|
|
ngOnInit() { |
|
|
|
|
|
this.accessForm = this.formBuilder.group({ |
|
|
|
|
|
alias: [this.data.access.alias], |
|
|
|
|
|
type: [this.data.access.type, Validators.required] |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public onCancel() { |
|
|
public onCancel() { |
|
|
this.dialogRef.close(); |
|
|
this.dialogRef.close(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public onSubmit() { |
|
|
|
|
|
const access: CreateAccessDto = { |
|
|
|
|
|
alias: this.accessForm.controls['alias'].value, |
|
|
|
|
|
type: this.accessForm.controls['type'].value |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
this.dialogRef.close({ access }); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public ngOnDestroy() { |
|
|
public ngOnDestroy() { |
|
|
this.unsubscribeSubject.next(); |
|
|
this.unsubscribeSubject.next(); |
|
|
this.unsubscribeSubject.complete(); |
|
|
this.unsubscribeSubject.complete(); |
|
|