immich/web/src/lib/components/user-settings-page/change-password-settings.svelte
2025-04-28 08:53:53 -05:00

85 lines
2.5 KiB
Svelte

<script lang="ts">
import {
notificationController,
NotificationType,
} from '$lib/components/shared-components/notification/notification';
import SettingInputField from '$lib/components/shared-components/settings/setting-input-field.svelte';
import { SettingInputFieldType } from '$lib/constants';
import { changePassword } from '@immich/sdk';
import { Button } from '@immich/ui';
import type { HttpError } from '@sveltejs/kit';
import { t } from 'svelte-i18n';
import { fade } from 'svelte/transition';
let password = $state('');
let newPassword = $state('');
let confirmPassword = $state('');
const handleChangePassword = async () => {
try {
await changePassword({ changePasswordDto: { password, newPassword } });
notificationController.show({
message: $t('updated_password'),
type: NotificationType.Info,
});
password = '';
newPassword = '';
confirmPassword = '';
} catch (error) {
console.error('Error [user-profile] [changePassword]', error);
notificationController.show({
message: (error as HttpError)?.body?.message || $t('errors.unable_to_change_password'),
type: NotificationType.Error,
});
}
};
const onsubmit = (event: Event) => {
event.preventDefault();
};
</script>
<section class="my-4">
<div in:fade={{ duration: 500 }}>
<form autocomplete="off" {onsubmit}>
<div class="ms-4 mt-4 flex flex-col gap-4">
<SettingInputField
inputType={SettingInputFieldType.PASSWORD}
label={$t('password')}
bind:value={password}
required={true}
passwordAutocomplete="current-password"
/>
<SettingInputField
inputType={SettingInputFieldType.PASSWORD}
label={$t('new_password')}
bind:value={newPassword}
required={true}
passwordAutocomplete="new-password"
/>
<SettingInputField
inputType={SettingInputFieldType.PASSWORD}
label={$t('confirm_password')}
bind:value={confirmPassword}
required={true}
passwordAutocomplete="new-password"
/>
<div class="flex justify-end">
<Button
shape="round"
type="submit"
size="small"
disabled={!(password && newPassword && newPassword === confirmPassword)}
onclick={() => handleChangePassword()}>{$t('save')}</Button
>
</div>
</div>
</form>
</div>
</section>