|
1 | 1 | <script lang="ts">
|
2 | 2 | import { onMount } from 'svelte';
|
3 |
| - import { derived, writable } from 'svelte/store'; |
4 | 3 | import { t } from 'i18next';
|
5 | 4 | import { navigate, Destination } from '$lib/destinations';
|
6 | 5 | import { DisplayableError } from '$lib/events';
|
|
10 | 9 | import Button from '$lib/components/inputs/button.svelte';
|
11 | 10 | import TextField from '$lib/components/inputs/text-field.svelte';
|
12 | 11 |
|
13 |
| - const identifier = writable(''); |
14 |
| - const randomCode = writable(''); |
15 |
| - const isWaitingForRandomCode = writable(false); |
16 |
| - const token = writable<string | null>(null); |
| 12 | + let identifier = $state(''); |
| 13 | + let randomCode = $state(''); |
| 14 | + let isWaitingForRandomCode = $state(false); |
| 15 | + let token = $state<string>(); |
17 | 16 | let isLoading = $state(false);
|
18 | 17 |
|
19 |
| - const isIdentifierValid = derived( |
20 |
| - identifier, |
21 |
| - ($identifier) => $identifier.length >= 3 && $identifier.length <= 254 |
22 |
| - ); |
23 |
| - const isRandomCodeValid = derived(randomCode, ($randomCode) => $randomCode.length >= 8); |
24 |
| - const canSubmit = derived( |
25 |
| - [isIdentifierValid, isRandomCodeValid, isWaitingForRandomCode], |
26 |
| - ([$isIdentifierValid, $isRandomCodeValid, $isWaitingForRandomCode]) => |
27 |
| - $isWaitingForRandomCode ? $isRandomCodeValid : $isIdentifierValid |
28 |
| - ); |
| 18 | + const isIdentifierValid = $derived(identifier.length >= 3 && identifier.length <= 254); |
| 19 | + const isRandomCodeValid = $derived(randomCode.length >= 8); |
| 20 | + const canSubmit = $derived(isWaitingForRandomCode ? isRandomCodeValid : isIdentifierValid); |
29 | 21 |
|
30 |
| - onMount(() => { |
31 |
| - const unsubscribe = token.subscribe(async ($token) => { |
32 |
| - if ($token) { |
33 |
| - await navigate(Destination.Settings); |
34 |
| - } |
35 |
| - }); |
| 22 | + $effect(() => { |
| 23 | + if (token) { |
| 24 | + navigate(Destination.Settings); |
| 25 | + } |
| 26 | + }); |
36 | 27 |
|
37 |
| - if (window.location.hash && $isWaitingForRandomCode) { |
38 |
| - $randomCode = window.location.hash.replace('#', ''); |
| 28 | + onMount(() => { |
| 29 | + if (window.location.hash && isWaitingForRandomCode) { |
| 30 | + randomCode = window.location.hash.replace('#', ''); |
39 | 31 | window.location.hash = '';
|
40 | 32 | createToken();
|
41 | 33 | }
|
42 |
| -
|
43 |
| - return unsubscribe; |
44 | 34 | });
|
45 | 35 |
|
46 | 36 | function cancel() {
|
47 |
| - $isWaitingForRandomCode = false; |
48 |
| - $randomCode = ''; |
| 37 | + isWaitingForRandomCode = false; |
| 38 | + randomCode = ''; |
49 | 39 | }
|
50 | 40 |
|
51 | 41 | async function submit() {
|
52 |
| - if (!$canSubmit) { |
| 42 | + if (!canSubmit) { |
53 | 43 | return;
|
54 |
| - } else if ($isWaitingForRandomCode) { |
| 44 | + } else if (isWaitingForRandomCode) { |
55 | 45 | await createToken();
|
56 | 46 | } else {
|
57 | 47 | await sendEmail();
|
|
64 | 54 | try {
|
65 | 55 | isLoading = true;
|
66 | 56 | const client = await getTokensClient();
|
67 |
| - await client.createNewToken({ identifier: $identifier }); |
68 |
| - $isWaitingForRandomCode = true; |
| 57 | + await client.createNewToken({ identifier }); |
| 58 | + isWaitingForRandomCode = true; |
69 | 59 | } finally {
|
70 | 60 | isLoading = false;
|
71 | 61 | }
|
|
75 | 65 | case 400:
|
76 | 66 | return new DisplayableError('errors.400');
|
77 | 67 | case 403:
|
78 |
| - $isWaitingForRandomCode = true; |
| 68 | + isWaitingForRandomCode = true; |
79 | 69 | return new DisplayableError('login.errors.403');
|
80 | 70 | case 404:
|
81 | 71 | return new DisplayableError('login.errors.404');
|
|
92 | 82 | try {
|
93 | 83 | isLoading = true;
|
94 | 84 | const client = await getTokensClient();
|
95 |
| - $token = await client.createToken({ identifier: $identifier, secret: $randomCode }); |
96 |
| - $isWaitingForRandomCode = false; |
| 85 | + token = await client.createToken({ identifier, secret: randomCode }); |
| 86 | + isWaitingForRandomCode = false; |
97 | 87 | } finally {
|
98 | 88 | isLoading = false;
|
99 | 89 | }
|
|
112 | 102 | }
|
113 | 103 | </script>
|
114 | 104 |
|
115 |
| -<SavedValue name="account.identifier" store={identifier} /> |
116 |
| -<SavedValue name="account.isWaitingForRandomCode" store={isWaitingForRandomCode} /> |
117 |
| -<SavedValue name="connection.token" store={token} /> |
| 105 | +<SavedValue name="account.identifier" bind:value={identifier} /> |
| 106 | +<SavedValue name="account.isWaitingForRandomCode" bind:value={isWaitingForRandomCode} /> |
| 107 | +<SavedValue name="connection.token" bind:value={token} /> |
118 | 108 |
|
119 | 109 | <form class="destination">
|
120 | 110 | <Logo />
|
|
124 | 114 | name="username"
|
125 | 115 | placeholder={t('login.identifier.placeholder')}
|
126 | 116 | autofocus
|
127 |
| - disabled={$isWaitingForRandomCode} |
128 |
| - bind:value={$identifier} |
| 117 | + disabled={isWaitingForRandomCode} |
| 118 | + bind:value={identifier} |
129 | 119 | />
|
130 |
| - {#if $isWaitingForRandomCode} |
| 120 | + {#if isWaitingForRandomCode} |
131 | 121 | <TextField
|
132 | 122 | label={t('account.randomCode.label')}
|
133 | 123 | name="one-time-code"
|
134 | 124 | placeholder={t('account.randomCode.placeholder')}
|
135 | 125 | autofocus
|
136 |
| - bind:value={$randomCode} |
| 126 | + bind:value={randomCode} |
137 | 127 | />
|
138 | 128 | <div class="help">{t('account.help.randomCode')}</div>
|
139 | 129 | {/if}
|
140 | 130 | </div>
|
141 | 131 | <div class="buttons">
|
142 |
| - <Button type="button" disabled={!$isWaitingForRandomCode || isLoading} onClick={cancel}> |
| 132 | + <Button type="button" disabled={!isWaitingForRandomCode || isLoading} onClick={cancel}> |
143 | 133 | {t('cancel')}
|
144 | 134 | </Button>
|
145 |
| - <Button type="submit" primary disabled={!$canSubmit} loading={isLoading} onClick={submit}> |
| 135 | + <Button type="submit" primary disabled={!canSubmit} loading={isLoading} onClick={submit}> |
146 | 136 | {t('destinations.login')}
|
147 | 137 | </Button>
|
148 | 138 | </div>
|
|
0 commit comments