2016-05-09 17:04:56 +02:00
|
|
|
import {Component, OnInit} from "@angular/core";
|
2016-12-27 00:36:38 +02:00
|
|
|
import {AuthenticationService} from "./model/network/authentication.service";
|
2016-12-27 17:09:47 +02:00
|
|
|
import {UserDTO} from "../../common/entities/UserDTO";
|
2016-12-27 00:36:38 +02:00
|
|
|
import {Router} from "@angular/router";
|
2016-03-12 15:57:22 +02:00
|
|
|
|
2017-06-21 21:16:04 +02:00
|
|
|
|
2016-03-12 15:57:22 +02:00
|
|
|
@Component({
|
2017-06-10 22:32:56 +02:00
|
|
|
selector: 'pi-gallery2-app',
|
|
|
|
template: `<router-outlet></router-outlet>`,
|
2016-12-27 00:36:38 +02:00
|
|
|
|
2016-03-12 15:57:22 +02:00
|
|
|
})
|
2016-05-09 17:04:56 +02:00
|
|
|
export class AppComponent implements OnInit {
|
2016-03-13 12:28:29 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
constructor(private _router: Router, private _authenticationService: AuthenticationService) {
|
|
|
|
}
|
2016-03-12 19:11:19 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
ngOnInit() {
|
2017-07-03 19:17:49 +02:00
|
|
|
this._authenticationService.user.subscribe((user: UserDTO) => {
|
2017-06-10 22:32:56 +02:00
|
|
|
if (user != null) {
|
|
|
|
if (this._router.isActive('login', true)) {
|
|
|
|
console.log("routing");
|
|
|
|
this._router.navigate(["gallery", ""]);
|
|
|
|
}
|
|
|
|
} else {
|
2017-07-07 22:54:18 +02:00
|
|
|
if (!this._router.isActive('login', true)) {
|
2017-06-10 22:32:56 +02:00
|
|
|
console.log("routing");
|
|
|
|
this._router.navigate(["login"]);
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 23:15:03 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
});
|
2016-05-09 17:04:56 +02:00
|
|
|
|
2016-03-19 10:58:27 +02:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2017-06-21 21:16:04 +02:00
|
|
|
|
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|