forked from Cutlery/immich
* feat(web): onboarding * feat: openapi * feat: modulization * feat: page advancing * Animation * Add storage templaete settings * sql * more style * Theme * information and styling * hide/show table * Styling * Update user property * fix test * fix test: * fix e2e * test * Update web/src/lib/components/onboarding-page/onboarding-hello.svelte Co-authored-by: bo0tzz <git@bo0tzz.me> * naming * use System Metadata * better return type * onboarding using server metadata * revert previous changes in user entity * sql * test web * fix test server * server/web test * more test * consolidate color theme change logic * consolidate save button to storage template * merge main * fix web --------- Co-authored-by: bo0tzz <git@bo0tzz.me>
181 lines
4.7 KiB
Svelte
181 lines
4.7 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import LoadingSpinner from '$lib/components/shared-components/loading-spinner.svelte';
|
|
import { AppRoute } from '$lib/constants';
|
|
import { featureFlags, serverConfig } from '$lib/stores/server-config.store';
|
|
import { getServerErrorMessage, handleError } from '$lib/utils/handle-error';
|
|
import { api, oauth } from '@api';
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
import { fade } from 'svelte/transition';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
|
|
let errorMessage: string;
|
|
let email = '';
|
|
let password = '';
|
|
let oauthError = '';
|
|
let loading = false;
|
|
let oauthLoading = true;
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
success: void;
|
|
firstLogin: void;
|
|
onboarding: void;
|
|
}>();
|
|
|
|
onMount(async () => {
|
|
if (!$featureFlags.oauth) {
|
|
oauthLoading = false;
|
|
return;
|
|
}
|
|
|
|
if (oauth.isCallback(window.location)) {
|
|
try {
|
|
await oauth.login(window.location);
|
|
dispatch('success');
|
|
return;
|
|
} catch (e) {
|
|
console.error('Error [login-form] [oauth.callback]', e);
|
|
oauthError = (await getServerErrorMessage(e)) || 'Unable to complete OAuth login';
|
|
oauthLoading = false;
|
|
}
|
|
}
|
|
|
|
try {
|
|
if ($featureFlags.oauthAutoLaunch && !oauth.isAutoLaunchDisabled(window.location)) {
|
|
await goto(`${AppRoute.AUTH_LOGIN}?autoLaunch=0`, { replaceState: true });
|
|
await oauth.authorize(window.location);
|
|
return;
|
|
}
|
|
} catch (error) {
|
|
await handleError(error, 'Unable to connect!');
|
|
}
|
|
|
|
oauthLoading = false;
|
|
});
|
|
|
|
const login = async () => {
|
|
try {
|
|
errorMessage = '';
|
|
loading = true;
|
|
|
|
const { data: user } = await api.authenticationApi.login({
|
|
loginCredentialDto: {
|
|
email,
|
|
password,
|
|
},
|
|
});
|
|
|
|
const { data: serverConfig } = await api.serverInfoApi.getServerConfig();
|
|
|
|
if (user.isAdmin && !serverConfig.isOnboarded) {
|
|
dispatch('onboarding');
|
|
return;
|
|
}
|
|
|
|
if (!user.isAdmin && user.shouldChangePassword) {
|
|
dispatch('firstLogin');
|
|
return;
|
|
}
|
|
|
|
dispatch('success');
|
|
return;
|
|
} catch (error) {
|
|
errorMessage = (await getServerErrorMessage(error)) || 'Incorrect email or password';
|
|
loading = false;
|
|
return;
|
|
}
|
|
};
|
|
|
|
const handleOAuthLogin = async () => {
|
|
oauthLoading = true;
|
|
oauthError = '';
|
|
await oauth.authorize(window.location);
|
|
};
|
|
</script>
|
|
|
|
{#if !oauthLoading && $featureFlags.passwordLogin}
|
|
<form on:submit|preventDefault={login} class="mt-5 flex flex-col gap-5">
|
|
{#if errorMessage}
|
|
<p class="text-red-400" transition:fade>
|
|
{errorMessage}
|
|
</p>
|
|
{/if}
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<label class="immich-form-label" for="email">Email</label>
|
|
<input
|
|
class="immich-form-input"
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
autocomplete="email"
|
|
bind:value={email}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<label class="immich-form-label" for="password">Password</label>
|
|
<input
|
|
class="immich-form-input"
|
|
id="password"
|
|
name="password"
|
|
type="password"
|
|
autocomplete="current-password"
|
|
bind:value={password}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="my-5 flex w-full">
|
|
<Button type="submit" size="lg" fullwidth disabled={loading}>
|
|
{#if loading}
|
|
<span class="h-6">
|
|
<LoadingSpinner />
|
|
</span>
|
|
{:else}
|
|
Login
|
|
{/if}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
{/if}
|
|
|
|
{#if $featureFlags.oauth}
|
|
{#if $featureFlags.passwordLogin}
|
|
<div class="inline-flex w-full items-center justify-center">
|
|
<hr class="my-4 h-px w-3/4 border-0 bg-gray-200 dark:bg-gray-600" />
|
|
<span
|
|
class="absolute left-1/2 -translate-x-1/2 bg-white px-3 font-medium text-gray-900 dark:bg-immich-dark-gray dark:text-white"
|
|
>
|
|
or
|
|
</span>
|
|
</div>
|
|
{/if}
|
|
<div class="my-5 flex flex-col gap-5">
|
|
{#if oauthError}
|
|
<p class="text-center text-red-400" transition:fade>{oauthError}</p>
|
|
{/if}
|
|
<Button
|
|
type="button"
|
|
disabled={loading || oauthLoading}
|
|
size="lg"
|
|
fullwidth
|
|
color={$featureFlags.passwordLogin ? 'secondary' : 'primary'}
|
|
on:click={handleOAuthLogin}
|
|
>
|
|
{#if oauthLoading}
|
|
<span class="h-6">
|
|
<LoadingSpinner />
|
|
</span>
|
|
{:else}
|
|
{$serverConfig.oauthButtonText}
|
|
{/if}
|
|
</Button>
|
|
</div>
|
|
{/if}
|
|
|
|
{#if !$featureFlags.passwordLogin && !$featureFlags.oauth}
|
|
<p class="p-4 text-center dark:text-immich-dark-fg">Login has been disabled.</p>
|
|
{/if}
|