Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
strudelv2_spa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hpc-team
strudelv2_spa
Commits
786cd63f
Commit
786cd63f
authored
5 years ago
by
Chris Hines
Browse files
Options
Downloads
Patches
Plain Diff
debugging statements when things get stuck pre-login
parent
975185bd
No related branches found
No related tags found
4 merge requests
!106
if stat fails, display the error instead of immediately refreshing...
,
!99
Dev
,
!61
Test
,
!59
Dev
Pipeline
#10412
passed
5 years ago
Stage: build
Stage: deploy
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/launcher/launcher.component.html
+4
-0
4 additions, 0 deletions
src/app/launcher/launcher.component.html
src/app/launcher/launcher.component.ts
+3
-0
3 additions, 0 deletions
src/app/launcher/launcher.component.ts
with
7 additions
and
0 deletions
src/app/launcher/launcher.component.html
+
4
−
0
View file @
786cd63f
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
</mat-list-item>
</mat-list-item>
</mat-list>
</mat-list>
<div
style=
"border-style: solid none none none ; border-width: 1px; border-color: var(--panel-border-color); box-sizing: border-box"
>
<div
style=
"border-style: solid none none none ; border-width: 1px; border-color: var(--panel-border-color); box-sizing: border-box"
>
<div
*ngIf=
"computeSitesService.appidentities | async as obs; else loading"
>
<mat-accordion
style=
"width: 100%"
[displayMode]=
"'flat'"
>
<mat-accordion
style=
"width: 100%"
[displayMode]=
"'flat'"
>
<div
*ngFor=
"let id of (computeSitesService.appidentities | async)"
style=
"border-style: none none solid none; border-width: 1px; border-color: var(--panel-border-color) "
>
<div
*ngFor=
"let id of (computeSitesService.appidentities | async)"
style=
"border-style: none none solid none; border-width: 1px; border-color: var(--panel-border-color) "
>
<!--<mat-expansion-panel (afterExpand)="selectId(id)" (closed)="selectId(id)" style="width: 100%">-->
<!--<mat-expansion-panel (afterExpand)="selectId(id)" (closed)="selectId(id)" style="width: 100%">-->
...
@@ -42,12 +43,14 @@
...
@@ -42,12 +43,14 @@
<!--<div style="width: 100%; border-bottom: 1px solid var(--panel-border-color);"></div>-->
<!--<div style="width: 100%; border-bottom: 1px solid var(--panel-border-color);"></div>-->
</div>
</div>
</mat-accordion>
</mat-accordion>
</div><ng-template
#loading
>
Loading...
</ng-template>
</div>
</div>
</nav>
</nav>
</div>
</div>
<div
fxFlex
></div>
<div
fxFlex
></div>
</mat-sidenav>
</mat-sidenav>
<mat-sidenav-content>
<mat-sidenav-content>
<div
*ngIf=
"computeSitesService.appidentities | async as obs; else loading"
>
<div
fxLayout=
"column"
fxLayoutAlign=
"start none"
style=
"height: 100%"
>
<div
fxLayout=
"column"
fxLayoutAlign=
"start none"
style=
"height: 100%"
>
<div
*ngIf=
"!(settingsService.useMenu$ | async)"
>
<div
*ngIf=
"!(settingsService.useMenu$ | async)"
>
<mat-divider
inset=
true
></mat-divider>
<mat-divider
inset=
true
></mat-divider>
...
@@ -81,6 +84,7 @@
...
@@ -81,6 +84,7 @@
</div>
</div>
</div><ng-template
#loading
>
Determining which sites you are logged into already ...
</ng-template>
</mat-sidenav-content>
</mat-sidenav-content>
</mat-sidenav-container>
</mat-sidenav-container>
</div>
</div>
This diff is collapsed.
Click to expand it.
src/app/launcher/launcher.component.ts
+
3
−
0
View file @
786cd63f
...
@@ -73,6 +73,9 @@ export class LauncherComponent implements OnInit {
...
@@ -73,6 +73,9 @@ export class LauncherComponent implements OnInit {
this
.
app$
=
new
BehaviorSubject
<
Strudelapp
>
(
null
);
this
.
app$
=
new
BehaviorSubject
<
Strudelapp
>
(
null
);
this
.
identity$
=
new
BehaviorSubject
<
Identity
>
(
null
);
this
.
identity$
=
new
BehaviorSubject
<
Identity
>
(
null
);
this
.
identity
=
null
;
this
.
identity
=
null
;
this
.
computeSitesService
.
identities
.
subscribe
((
o
)
=>
console
.
log
(
'
identities change
'
,
o
,
Date
()));
this
.
computeSitesService
.
appidentities
.
subscribe
((
o
)
=>
console
.
log
(
'
appidentities change
'
,
o
,
Date
()));
this
.
authService
.
sshAuthzServers
.
subscribe
(
o
=>
console
.
log
(
'
authzservers change
'
,
o
,
Date
()));
//this.quotas = new BehaviorSubject<any[]>([]);
//this.quotas = new BehaviorSubject<any[]>([]);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment