2bf6cd9241
* Fix redirect to login page after password change Copied from the similar fix in #414 * Fix typo in change-password form * Remove misplaced text from user management page
57 lines
1.2 KiB
Svelte
57 lines
1.2 KiB
Svelte
<script context="module" lang="ts">
|
|
export const prerender = false;
|
|
|
|
import type { Load } from '@sveltejs/kit';
|
|
|
|
export const load: Load = async () => {
|
|
try {
|
|
const { data: userInfo } = await api.userApi.getMyUserInfo();
|
|
|
|
if (userInfo.shouldChangePassword) {
|
|
return {
|
|
status: 200,
|
|
props: {
|
|
user: userInfo
|
|
}
|
|
};
|
|
} else {
|
|
return {
|
|
status: 302,
|
|
redirect: '/photos'
|
|
};
|
|
}
|
|
} catch (e) {
|
|
return {
|
|
status: 302,
|
|
redirect: '/auth/login'
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import { fade } from 'svelte/transition';
|
|
|
|
import ChangePasswordForm from '$lib/components/forms/change-password-form.svelte';
|
|
import { api, UserResponseDto } from '@api';
|
|
|
|
export let user: UserResponseDto;
|
|
|
|
const onSuccessHandler = async () => {
|
|
await fetch('auth/logout', { method: 'POST' });
|
|
|
|
goto('/auth/login');
|
|
};
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Change Password - Immich</title>
|
|
</svelte:head>
|
|
|
|
<section class="h-screen w-screen flex place-items-center place-content-center">
|
|
<div in:fade={{ duration: 100 }} out:fade={{ duration: 100 }}>
|
|
<ChangePasswordForm {user} on:success={onSuccessHandler} />
|
|
</div>
|
|
</section>
|