2019-01-27 14:58:56 -05:00
|
|
|
import {Component, OnDestroy, OnInit} from '@angular/core';
|
2018-03-30 15:30:30 -04:00
|
|
|
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';
|
2019-03-03 10:30:12 +01:00
|
|
|
import {ShareService} from './ui/gallery/share.service';
|
2018-03-30 15:30:30 -04:00
|
|
|
import 'hammerjs';
|
2018-11-28 23:49:33 +01:00
|
|
|
import {Subscription} from 'rxjs';
|
2017-07-19 22:40:27 +02:00
|
|
|
|
2016-03-12 14:57:22 +01:00
|
|
|
@Component({
|
2018-03-30 15:30:30 -04:00
|
|
|
selector: 'app-pi-gallery2',
|
2019-01-27 14:58:56 -05:00
|
|
|
template: `<router-outlet></router-outlet>`
|
2016-03-12 14:57:22 +01:00
|
|
|
})
|
2017-07-19 22:40:27 +02:00
|
|
|
export class AppComponent implements OnInit, OnDestroy {
|
|
|
|
|
2018-11-28 23:49:33 +01:00
|
|
|
private subscription: Subscription = null;
|
2016-03-13 11:28:29 +01:00
|
|
|
|
2017-07-08 12:43:42 +02:00
|
|
|
constructor(private _router: Router,
|
|
|
|
private _authenticationService: AuthenticationService,
|
2017-07-09 12:03:17 +02:00
|
|
|
private _shareService: ShareService,
|
2018-05-22 20:27:07 -04:00
|
|
|
private _title: Title) {
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-03-12 18:11:19 +01:00
|
|
|
|
2017-07-09 12:03:17 +02:00
|
|
|
async ngOnInit() {
|
2017-07-08 00:18:24 +02:00
|
|
|
this._title.setTitle(Config.Client.applicationTitle);
|
2017-07-09 12:03:17 +02:00
|
|
|
await this._shareService.wait();
|
2017-07-19 22:40:27 +02:00
|
|
|
this.subscription = this._authenticationService.user.subscribe((user: UserDTO) => {
|
2017-07-09 12:03:17 +02:00
|
|
|
if (this._authenticationService.isAuthenticated()) {
|
|
|
|
if (this.isLoginPage()) {
|
|
|
|
return this.toGallery();
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
|
|
|
} else {
|
2017-07-09 12:03:17 +02:00
|
|
|
if (!this.isLoginPage()) {
|
|
|
|
return this.toLogin();
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 23:15:03 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
});
|
2016-05-09 17:04:56 +02:00
|
|
|
|
2017-07-19 22:40:27 +02:00
|
|
|
}
|
2016-03-19 09:58:27 +01:00
|
|
|
|
2017-07-19 22:40:27 +02:00
|
|
|
ngOnDestroy() {
|
|
|
|
if (this.subscription != null) {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2017-06-21 21:16:04 +02:00
|
|
|
|
2017-07-09 12:03:17 +02:00
|
|
|
private isLoginPage() {
|
|
|
|
return this._router.isActive('login', true) || this._router.isActive('shareLogin', false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private toLogin() {
|
|
|
|
if (this._shareService.isSharing()) {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._router.navigate(['shareLogin'], {queryParams: {sk: this._shareService.getSharingKey()}});
|
2017-07-09 12:03:17 +02:00
|
|
|
} else {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._router.navigate(['login']);
|
2017-07-09 12:03:17 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-21 21:16:04 +02:00
|
|
|
|
2017-07-09 12:03:17 +02:00
|
|
|
private toGallery() {
|
|
|
|
if (this._shareService.isSharing()) {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._router.navigate(['share', this._shareService.getSharingKey()]);
|
2017-07-09 12:03:17 +02:00
|
|
|
} else {
|
2018-03-30 15:30:30 -04:00
|
|
|
return this._router.navigate(['gallery', '']);
|
2017-07-09 12:03:17 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|