2019-08-09 19:13:18 +03:00
|
|
|
///
|
2022-01-17 14:07:46 +02:00
|
|
|
/// Copyright © 2016-2022 The Thingsboard Authors
|
2019-08-09 19:13:18 +03:00
|
|
|
///
|
|
|
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
/// you may not use this file except in compliance with the License.
|
|
|
|
|
/// You may obtain a copy of the License at
|
|
|
|
|
///
|
|
|
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
///
|
|
|
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
/// See the License for the specific language governing permissions and
|
|
|
|
|
/// limitations under the License.
|
|
|
|
|
///
|
|
|
|
|
|
2021-05-26 15:17:03 +03:00
|
|
|
import { ChangeDetectionStrategy, Component, Input, OnDestroy, OnInit } from '@angular/core';
|
2019-08-09 19:13:18 +03:00
|
|
|
import { User } from '@shared/models/user.model';
|
|
|
|
|
import { Authority } from '@shared/models/authority.enum';
|
|
|
|
|
import { select, Store } from '@ngrx/store';
|
|
|
|
|
import { AppState } from '@core/core.state';
|
|
|
|
|
import { selectAuthUser, selectUserDetails } from '@core/auth/auth.selectors';
|
|
|
|
|
import { map } from 'rxjs/operators';
|
|
|
|
|
import { AuthService } from '@core/auth/auth.service';
|
|
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'tb-user-menu',
|
|
|
|
|
templateUrl: './user-menu.component.html',
|
2021-05-26 15:17:03 +03:00
|
|
|
styleUrls: ['./user-menu.component.scss'],
|
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
2019-08-09 19:13:18 +03:00
|
|
|
})
|
|
|
|
|
export class UserMenuComponent implements OnInit, OnDestroy {
|
|
|
|
|
|
|
|
|
|
@Input() displayUserInfo: boolean;
|
|
|
|
|
|
|
|
|
|
authorities = Authority;
|
|
|
|
|
|
|
|
|
|
authority$ = this.store.pipe(
|
|
|
|
|
select(selectAuthUser),
|
|
|
|
|
map((authUser) => authUser ? authUser.authority : Authority.ANONYMOUS)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
authorityName$ = this.store.pipe(
|
|
|
|
|
select(selectUserDetails),
|
|
|
|
|
map((user) => this.getAuthorityName(user))
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
userDisplayName$ = this.store.pipe(
|
|
|
|
|
select(selectUserDetails),
|
|
|
|
|
map((user) => this.getUserDisplayName(user))
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
constructor(private store: Store<AppState>,
|
|
|
|
|
private router: Router,
|
|
|
|
|
private authService: AuthService) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnDestroy(): void {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getAuthorityName(user: User): string {
|
|
|
|
|
let name = null;
|
|
|
|
|
if (user) {
|
|
|
|
|
const authority = user.authority;
|
|
|
|
|
switch (authority) {
|
|
|
|
|
case Authority.SYS_ADMIN:
|
|
|
|
|
name = 'user.sys-admin';
|
|
|
|
|
break;
|
|
|
|
|
case Authority.TENANT_ADMIN:
|
|
|
|
|
name = 'user.tenant-admin';
|
|
|
|
|
break;
|
|
|
|
|
case Authority.CUSTOMER_USER:
|
|
|
|
|
name = 'user.customer';
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getUserDisplayName(user: User): string {
|
|
|
|
|
let name = '';
|
|
|
|
|
if (user) {
|
|
|
|
|
if ((user.firstName && user.firstName.length > 0) ||
|
|
|
|
|
(user.lastName && user.lastName.length > 0)) {
|
|
|
|
|
if (user.firstName) {
|
|
|
|
|
name += user.firstName;
|
|
|
|
|
}
|
|
|
|
|
if (user.lastName) {
|
|
|
|
|
if (name.length > 0) {
|
|
|
|
|
name += ' ';
|
|
|
|
|
}
|
|
|
|
|
name += user.lastName;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
name = user.email;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
openProfile(): void {
|
|
|
|
|
this.router.navigate(['profile']);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logout(): void {
|
|
|
|
|
this.authService.logout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|