File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 21
21
readonly __typename : ' User' ;
22
22
}
23
23
| undefined ;
24
+
25
+ const isUnauthenticated = (errors : { message: string }[] | null ) => {
26
+ const unauthenticatedError = ' Valid user required. You are not logged in.' ;
27
+ if (
28
+ errors &&
29
+ errors .length > 0 &&
30
+ errors .filter ((error ) => error .message === unauthenticatedError ).length > 0
31
+ ) {
32
+ return true ;
33
+ }
34
+ return false ;
35
+ };
24
36
</script >
25
37
26
- {#if user == undefined }
38
+ {#if isUnauthenticated ( UserInfo . errors ) }
27
39
<!-- logged out -->
28
40
<Login />
29
41
{:else }
Original file line number Diff line number Diff line change 2
2
import { page } from ' $app/stores' ;
3
3
import { Alert , Button } from ' @nais/ds-svelte-community' ;
4
4
import Logo from ' ../Logo.svelte' ;
5
+
6
+ const redirectPath = (url : URL ) => {
7
+ return encodeURIComponent (url .pathname + url .search + url .hash );
8
+ };
5
9
</script >
6
10
7
11
<svelte:head >
40
44
41
45
<p >To access this page you need to log in with your Google Workspace account.</p >
42
46
43
- <Button as =" a" href =" /oauth2/login" variant =" primary" >Log in to NAIS Console</Button >
47
+ <Button as ="a" href ="/oauth2/login?redirect_uri= {redirectPath ($page .url )}" variant =" primary"
48
+ >Log in to NAIS Console</Button
49
+ >
44
50
</div >
45
51
</div >
46
52
You can’t perform that action at this time.
0 commit comments