1
|
import {Component, EventEmitter, Inject, OnInit, Output} from '@angular/core';
|
2
|
import {MAT_DIALOG_DATA, MatDialogRef, MatSnackBar} from '@angular/material';
|
3
|
import {UserType} from '../../enums/common.enum';
|
4
|
import {UserProfile} from '../../models/user.model';
|
5
|
import {UserSettings} from '../../models/settings.model';
|
6
|
import {TranslateService} from '@ngx-translate/core';
|
7
|
|
8
|
|
9
|
@Component({
|
10
|
selector: 'app-edit-employee-dialog',
|
11
|
templateUrl: './edit-employee-dialog.component.html',
|
12
|
styleUrls: ['./edit-employee-dialog.component.sass']
|
13
|
})
|
14
|
export class EditEmployeeDialogComponent implements OnInit {
|
15
|
readonly _userTypes: string[] = ['EMPLOYER', 'EMPLOYEE'];
|
16
|
private _sickDaysCount: number;
|
17
|
private _addVacationHoursCount: number;
|
18
|
private _userType: UserType;
|
19
|
private readonly _userId: number;
|
20
|
|
21
|
@Output() postUserSettings = new EventEmitter<UserSettings>();
|
22
|
|
23
|
constructor(public dialogRef: MatDialogRef<EditEmployeeDialogComponent>,
|
24
|
@Inject(MAT_DIALOG_DATA) public data: UserProfile,
|
25
|
private snackBar: MatSnackBar,
|
26
|
private translateService: TranslateService
|
27
|
) {
|
28
|
this._sickDaysCount = data.sickDayCount;
|
29
|
this._addVacationHoursCount = 0;
|
30
|
this._userType = data.role;
|
31
|
this._userId = data.id;
|
32
|
}
|
33
|
|
34
|
ngOnInit() {
|
35
|
}
|
36
|
|
37
|
onConfirmClick(): void {
|
38
|
if (this._sickDaysCount == null || this._addVacationHoursCount == null || this._userType == null) {
|
39
|
this.translateService.get('error.missingField').subscribe((res: string) => {
|
40
|
this.snackBar.open(res, 'X', { duration: 5000 });
|
41
|
});
|
42
|
} else {
|
43
|
this.postUserSettings.emit({
|
44
|
id: this._userId,
|
45
|
role: this._userType,
|
46
|
sickDayCount: this._sickDaysCount,
|
47
|
vacationCount: this._addVacationHoursCount
|
48
|
});
|
49
|
|
50
|
this.dialogRef.close();
|
51
|
}
|
52
|
}
|
53
|
|
54
|
onCloseClick(): void {
|
55
|
this.dialogRef.close();
|
56
|
}
|
57
|
|
58
|
}
|