Skip to content
Snippets Groups Projects
Commit 59af714f authored by Chris Hines's avatar Chris Hines
Browse files

Merge branch 'agressive_redirect' into 'dev'

remove an agressive redirect to the login page. Hopefully this flows correctly

See merge request !41
parents 0fcfcae3 65fd100a
No related branches found
No related tags found
4 merge requests!106if stat fails, display the error instead of immediately refreshing...,!99Dev,!42Dev,!41remove an agressive redirect to the login page. Hopefully this flows correctly
Pipeline #9013 passed
...@@ -71,7 +71,7 @@ export class LauncherComponent implements OnInit { ...@@ -71,7 +71,7 @@ export class LauncherComponent implements OnInit {
) { ) {
this.subscriptions = []; this.subscriptions = [];
this.subscriptions.push(this.authService.sshAuthzServers.subscribe(o => {this.updateSshAuthZServers(o)})); this.subscriptions.push(this.authService.sshAuthzServers.subscribe(o => {this.updateSshAuthZServers(o)}));
//this.subscriptions.push(this.authService.loggedInAuthZ.subscribe(o => this.navLogin(o))); this.subscriptions.push(this.computeSitesService.identities.subscribe(o => this.navLogin(o)));
this.subscriptions.push(this.computeSitesService.appidentities.subscribe(o => this.getHealth(o))); this.subscriptions.push(this.computeSitesService.appidentities.subscribe(o => this.getHealth(o)));
this.app$ = new BehaviorSubject<Strudelapp>(null); this.app$ = new BehaviorSubject<Strudelapp>(null);
this.identity$ = new BehaviorSubject<Identity>(null); this.identity$ = new BehaviorSubject<Identity>(null);
...@@ -193,7 +193,9 @@ export class LauncherComponent implements OnInit { ...@@ -193,7 +193,9 @@ export class LauncherComponent implements OnInit {
if (ids === null) { if (ids === null) {
if (this.computeSitesService.appidentities.value === null || this.computeSitesService.appidentities.value.length == 0) { if (this.computeSitesService.appidentities.value === null || this.computeSitesService.appidentities.value.length == 0) {
this.identity$.next(null); this.identity$.next(null);
this.router.navigate(['/login']); if (this.computeSitesService.appidentities.value.length == 0) {
this.router.navigate(['/login']);
} //Don't navigate is appidentities is null. It means the observable hasn't refreshed yet, not that there are no identities
return; return;
} else { } else {
this.router.navigate(['/launch',this.computeSitesService.appidentities.value[0].displayName(),'accountinfo']); this.router.navigate(['/launch',this.computeSitesService.appidentities.value[0].displayName(),'accountinfo']);
...@@ -202,7 +204,6 @@ export class LauncherComponent implements OnInit { ...@@ -202,7 +204,6 @@ export class LauncherComponent implements OnInit {
} }
var id: Identity = this.getId(ids); var id: Identity = this.getId(ids);
if (id === null) { if (id === null) {
console.log('id is null, callback updateIdApp');
if (this.computeSitesService.appidentities.value === null || this.computeSitesService.appidentities.value.length == 0) { if (this.computeSitesService.appidentities.value === null || this.computeSitesService.appidentities.value.length == 0) {
this.identity$.next(null); this.identity$.next(null);
this.router.navigate(['/login']); this.router.navigate(['/login']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment