mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { Observable } from 'rxjs';
|
|
import { select, Store } from '@ngrx/store';
|
|
|
|
import { EPerson } from '../../../core/eperson/models/eperson.model';
|
|
import { AppState } from '../../../app.reducer';
|
|
import { getAuthenticatedUser, isAuthenticationLoading } from '../../../core/auth/selectors';
|
|
import { MYDSPACE_ROUTE } from '../../../+my-dspace-page/my-dspace-page.component';
|
|
|
|
/**
|
|
* This component represents the user nav menu.
|
|
*/
|
|
@Component({
|
|
selector: 'ds-user-menu',
|
|
templateUrl: './user-menu.component.html',
|
|
styleUrls: ['./user-menu.component.scss']
|
|
})
|
|
export class UserMenuComponent implements OnInit {
|
|
|
|
/**
|
|
* True if the authentication is loading.
|
|
* @type {Observable<boolean>}
|
|
*/
|
|
public loading$: Observable<boolean>;
|
|
|
|
/**
|
|
* The authenticated user.
|
|
* @type {Observable<EPerson>}
|
|
*/
|
|
public user$: Observable<EPerson>;
|
|
|
|
/**
|
|
* The mydspace page route.
|
|
* @type {string}
|
|
*/
|
|
public mydspaceRoute = MYDSPACE_ROUTE;
|
|
|
|
constructor(private store: Store<AppState>) {
|
|
}
|
|
|
|
/**
|
|
* Initialize all instance variables
|
|
*/
|
|
ngOnInit(): void {
|
|
|
|
// set loading
|
|
this.loading$ = this.store.pipe(select(isAuthenticationLoading));
|
|
|
|
// set user
|
|
this.user$ = this.store.pipe(select(getAuthenticatedUser));
|
|
|
|
}
|
|
}
|