1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/app.component.ts

72 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {Component, OnDestroy, OnInit, ViewContainerRef} from '@angular/core';
import {AuthenticationService} from './model/network/authentication.service';
import {UserDTO} from '../../common/entities/UserDTO';
import {Router} from '@angular/router';
import {Config} from '../../common/config/public/Config';
import {Title} from '@angular/platform-browser';
import {NotificationService} from './model/notification.service';
import {ShareService} from './gallery/share.service';
import 'hammerjs';
2017-07-20 04:40:27 +08:00
2016-03-12 21:57:22 +08:00
@Component({
2018-03-31 03:30:30 +08:00
selector: 'app-pi-gallery2',
template: `<router-outlet></router-outlet>`,
2016-12-27 06:36:38 +08:00
2016-03-12 21:57:22 +08:00
})
2017-07-20 04:40:27 +08:00
export class AppComponent implements OnInit, OnDestroy {
private subscription = null;
2016-03-13 18:28:29 +08:00
2017-07-08 18:43:42 +08:00
constructor(private _router: Router,
private _authenticationService: AuthenticationService,
2017-07-09 18:03:17 +08:00
private _shareService: ShareService,
2017-07-08 18:43:42 +08:00
private _title: Title, vcr: ViewContainerRef,
notificationService: NotificationService) {
notificationService.setRootViewContainerRef(vcr);
}
2016-03-13 01:11:19 +08:00
2017-07-09 18:03:17 +08:00
async ngOnInit() {
2017-07-08 06:18:24 +08:00
this._title.setTitle(Config.Client.applicationTitle);
2017-07-09 18:03:17 +08:00
await this._shareService.wait();
2017-07-20 04:40:27 +08:00
this.subscription = this._authenticationService.user.subscribe((user: UserDTO) => {
2017-07-09 18:03:17 +08:00
if (this._authenticationService.isAuthenticated()) {
if (this.isLoginPage()) {
return this.toGallery();
}
} else {
2017-07-09 18:03:17 +08:00
if (!this.isLoginPage()) {
return this.toLogin();
}
}
2016-05-17 05:15:03 +08:00
});
2016-05-09 23:04:56 +08:00
2017-07-20 04:40:27 +08:00
}
2017-07-20 04:40:27 +08:00
ngOnDestroy() {
if (this.subscription != null) {
this.subscription.unsubscribe();
}
}
2017-06-22 03:16:04 +08:00
2017-07-09 18:03:17 +08:00
private isLoginPage() {
return this._router.isActive('login', true) || this._router.isActive('shareLogin', false);
}
private toLogin() {
if (this._shareService.isSharing()) {
2018-03-31 03:30:30 +08:00
return this._router.navigate(['shareLogin'], {queryParams: {sk: this._shareService.getSharingKey()}});
2017-07-09 18:03:17 +08:00
} else {
2018-03-31 03:30:30 +08:00
return this._router.navigate(['login']);
2017-07-09 18:03:17 +08:00
}
}
2017-06-22 03:16:04 +08:00
2017-07-09 18:03:17 +08:00
private toGallery() {
if (this._shareService.isSharing()) {
2018-03-31 03:30:30 +08:00
return this._router.navigate(['share', this._shareService.getSharingKey()]);
2017-07-09 18:03:17 +08:00
} else {
2018-03-31 03:30:30 +08:00
return this._router.navigate(['gallery', '']);
2017-07-09 18:03:17 +08:00
}
}
}