1
|
import {Injectable} from '@angular/core';
|
2
|
import {UserService} from '../api/user.service';
|
3
|
import {UserProfile} from '../../models/user.model';
|
4
|
import {MenuItem} from '../../models/menu-item.model';
|
5
|
import {UserType} from '../../enums/common.enum';
|
6
|
import {Observable, of} from 'rxjs';
|
7
|
import {ProfileService} from './profile.service';
|
8
|
|
9
|
@Injectable({
|
10
|
providedIn: 'root'
|
11
|
})
|
12
|
export class MenuService {
|
13
|
|
14
|
constructor(private profileService: ProfileService) {
|
15
|
}
|
16
|
|
17
|
getMenuItems(cached?: boolean) {
|
18
|
if (cached) {
|
19
|
this.profileService.getLoggedUser(true)
|
20
|
.subscribe((profile: UserProfile) => {
|
21
|
return of(this.createAppropriateMenuForUser(profile));
|
22
|
});
|
23
|
}
|
24
|
|
25
|
return new Observable((observer) => {
|
26
|
this.profileService.getLoggedUser()
|
27
|
.subscribe((profile: UserProfile) => {
|
28
|
observer.next(this.createAppropriateMenuForUser(profile));
|
29
|
observer.complete();
|
30
|
},
|
31
|
() => {
|
32
|
observer.next([]);
|
33
|
observer.complete();
|
34
|
});
|
35
|
});
|
36
|
}
|
37
|
|
38
|
private createAppropriateMenuForUser(profile: UserProfile): MenuItem[] {
|
39
|
const menuItems: MenuItem[] = [];
|
40
|
menuItems.push({name: 'menuItem.dashboard', routePath: 'dashboard'});
|
41
|
if (profile.role === UserType.EMPLOYER) {
|
42
|
menuItems.push({name: 'menuItem.employees', routePath: 'employees'});
|
43
|
}
|
44
|
|
45
|
return menuItems;
|
46
|
}
|
47
|
}
|