Projekt

Obecné

Profil

Stáhnout (2.06 KB) Statistiky
| Větev: | Tag: | Revize:
1
import {AfterViewInit, Component, Inject, OnInit, ViewChild} from '@angular/core';
2
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material';
3
import {UserProfile} from '../../models/user.model';
4
import {Calendar} from '../../models/calendar.model';
5
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

    
10
@Component({
11
  selector: 'app-user-profile',
12
  templateUrl: './user-profile-dialog.component.html',
13
  styleUrls: ['./user-profile-dialog.component.sass']
14
})
15
export class UserProfileDialogComponent implements OnInit, AfterViewInit {
16
  @ViewChild('dayPicker', {static: false}) calendar;
17

    
18
  private profile: UserProfile;
19

    
20
  constructor(
21
    public dialogRef: MatDialogRef<UserProfileDialogComponent>,
22
    @Inject(MAT_DIALOG_DATA) public data: UserProfileDialogData,
23
    private userService: UserService,
24
    private dateToolsService: DateToolsService,
25
    private localizationService: LocalizationService
26
  ) { }
27

    
28
  ngOnInit() {
29

    
30
  }
31

    
32

    
33
  ngAfterViewInit(): void {
34
    this.loadProfile();
35
    this.loadMonthVacation(this.dateToolsService.toStartOfMonth(new Date()));
36
  }
37

    
38
  onSelectedMonthChange(monthStart: Date) {
39
    this.loadMonthVacation(monthStart);
40
  }
41

    
42
  onCloseClick(): void {
43
    this.dialogRef.close();
44
  }
45

    
46
  private loadProfile() {
47
    this.userService.getUserProfile(this.data.userId)
48
      .subscribe((data: UserProfile) => this.profile = data);
49
  }
50

    
51
  private loadMonthVacation(month: Date) {
52
    const fromDate = this.dateToolsService.toStartOfMonth(month);
53
    const toDate = this.dateToolsService.toEndOfMonth(fromDate);
54

    
55
    this.userService.getUserCalendarWithOptions(String(this.data.userId), fromDate, toDate, this.localizationService.getCurrentLanguage(), RequestStatus.ACCEPTED)
56
      .subscribe((data: Calendar[]) => {
57
        if (data) {
58
          this.calendar.setVacation(data);
59
        }
60
      });
61
  }
62
}
63

    
64
export class UserProfileDialogData {
65
  userId: number;
66
}
(3-3/3)