* Implemented the framework for Refresh Token. Needs testing. * Implemented Refresh Tokens. Users are issued tokens that last 7 days, just before the 7 days, the UI will request a new token to avoid having to re-authenticate.
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { NavigationStart, Router } from '@angular/router';
|
|
import { take } from 'rxjs/operators';
|
|
import { AccountService } from './_services/account.service';
|
|
import { LibraryService } from './_services/library.service';
|
|
import { MessageHubService } from './_services/message-hub.service';
|
|
import { NavService } from './_services/nav.service';
|
|
import { filter } from 'rxjs/operators';
|
|
import { NgbModal, NgbRatingConfig } from '@ng-bootstrap/ng-bootstrap';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.scss']
|
|
})
|
|
export class AppComponent implements OnInit {
|
|
|
|
constructor(private accountService: AccountService, public navService: NavService,
|
|
private messageHub: MessageHubService, private libraryService: LibraryService,
|
|
private router: Router, private ngbModal: NgbModal, private ratingConfig: NgbRatingConfig) {
|
|
|
|
// Setup default rating config
|
|
ratingConfig.max = 5;
|
|
ratingConfig.resettable = true;
|
|
|
|
// Close any open modals when a route change occurs
|
|
router.events
|
|
.pipe(filter(event => event instanceof NavigationStart))
|
|
.subscribe((event) => {
|
|
if (this.ngbModal.hasOpenModals()) {
|
|
this.ngbModal.dismissAll();
|
|
}
|
|
});
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.setCurrentUser();
|
|
}
|
|
|
|
|
|
setCurrentUser() {
|
|
const user = this.accountService.getUserFromLocalStorage();
|
|
this.accountService.setCurrentUser(user);
|
|
|
|
if (user) {
|
|
this.navService.setDarkMode(user.preferences.siteDarkMode);
|
|
this.messageHub.createHubConnection(user, this.accountService.hasAdminRole(user));
|
|
this.libraryService.getLibraryNames().pipe(take(1)).subscribe(() => {/* No Operation */});
|
|
} else {
|
|
this.navService.setDarkMode(true);
|
|
}
|
|
}
|
|
}
|
|
|