Skip to content

Commit ce3c2e1

Browse files
committedFeb 26, 2024
A bit nicer login experience
1 parent e50bc66 commit ce3c2e1

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed
 

‎src/routes/+layout.svelte

+13-1
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,21 @@
2121
readonly __typename: 'User';
2222
}
2323
| 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+
};
2436
</script>
2537

26-
{#if user == undefined}
38+
{#if isUnauthenticated(UserInfo.errors)}
2739
<!-- logged out -->
2840
<Login />
2941
{:else}

‎src/routes/Login.svelte

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
import { page } from '$app/stores';
33
import { Alert, Button } from '@nais/ds-svelte-community';
44
import Logo from '../Logo.svelte';
5+
6+
const redirectPath = (url: URL) => {
7+
return encodeURIComponent(url.pathname + url.search + url.hash);
8+
};
59
</script>
610

711
<svelte:head>
@@ -40,7 +44,9 @@
4044

4145
<p>To access this page you need to log in with your Google Workspace account.</p>
4246

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+
>
4450
</div>
4551
</div>
4652

0 commit comments

Comments
 (0)