Projekt

Obecné

Profil

Stáhnout (2.16 KB) Statistiky
| Větev: | Tag: | Revize:
1 f4bbdb70 Václav Jirák
import {AfterViewInit, Component, Inject, OnInit, ViewChild} from '@angular/core';
2 366930a6 Václav Jirák
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material';
3
import {UserProfile} from '../../models/user.model';
4
import {Calendar} from '../../models/calendar.model';
5 f4bbdb70 Václav Jirák
import {RequestStatus} from '../../enums/common.enum';
6
import {UserService} from '../../services/api/user.service';
7
import {DateToolsService} from '../../services/util/date-tools.service';
8
import {LocalizationService} from '../../localization/localization.service';
9 d2799ca5 Jakub Danek
import {UsersService} from "../../services/api/users.service";
10 366930a6 Václav Jirák
11
@Component({
12
  selector: 'app-user-profile',
13
  templateUrl: './user-profile-dialog.component.html',
14
  styleUrls: ['./user-profile-dialog.component.sass']
15
})
16 f4bbdb70 Václav Jirák
export class UserProfileDialogComponent implements OnInit, AfterViewInit {
17 7de5fe43 Jakub Danek
  @ViewChild('dayPicker', {static: false}) calendar;
18 f4bbdb70 Václav Jirák
19
  private profile: UserProfile;
20 366930a6 Václav Jirák
21
  constructor(
22
    public dialogRef: MatDialogRef<UserProfileDialogComponent>,
23 f4bbdb70 Václav Jirák
    @Inject(MAT_DIALOG_DATA) public data: UserProfileDialogData,
24
    private userService: UserService,
25 d2799ca5 Jakub Danek
    private usersService: UsersService,
26 f4bbdb70 Václav Jirák
    private dateToolsService: DateToolsService,
27
    private localizationService: LocalizationService
28 366930a6 Václav Jirák
  ) { }
29
30
  ngOnInit() {
31 f4bbdb70 Václav Jirák
32
  }
33
34
35
  ngAfterViewInit(): void {
36
    this.loadProfile();
37
    this.loadMonthVacation(this.dateToolsService.toStartOfMonth(new Date()));
38
  }
39
40
  onSelectedMonthChange(monthStart: Date) {
41
    this.loadMonthVacation(monthStart);
42 366930a6 Václav Jirák
  }
43
44
  onCloseClick(): void {
45 f4bbdb70 Václav Jirák
    this.dialogRef.close();
46
  }
47
48
  private loadProfile() {
49 d2799ca5 Jakub Danek
    this.usersService.getUserProfile(this.data.userId)
50 f4bbdb70 Václav Jirák
      .subscribe((data: UserProfile) => this.profile = data);
51
  }
52
53
  private loadMonthVacation(month: Date) {
54
    const fromDate = this.dateToolsService.toStartOfMonth(month);
55
    const toDate = this.dateToolsService.toEndOfMonth(fromDate);
56
57
    this.userService.getUserCalendarWithOptions(String(this.data.userId), fromDate, toDate, this.localizationService.getCurrentLanguage(), RequestStatus.ACCEPTED)
58
      .subscribe((data: Calendar[]) => {
59
        if (data) {
60
          this.calendar.setVacation(data);
61
        }
62
      });
63 366930a6 Václav Jirák
  }
64
}
65
66
export class UserProfileDialogData {
67 f4bbdb70 Václav Jirák
  userId: number;
68 366930a6 Václav Jirák
}