mirror of
https://github.com/immich-app/immich.git
synced 2025-06-17 12:37:55 -04:00
79 lines
1.9 KiB
Svelte
79 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
notificationController,
|
|
NotificationType
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import { api, ApiError } from '@api';
|
|
import { fade } from 'svelte/transition';
|
|
import SettingInputField, {
|
|
SettingInputFieldType
|
|
} from '../admin-page/settings/setting-input-field.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
|
|
let password = '';
|
|
let newPassword = '';
|
|
let confirmPassword = '';
|
|
|
|
const handleChangePassword = async () => {
|
|
try {
|
|
await api.authenticationApi.changePassword({
|
|
password,
|
|
newPassword
|
|
});
|
|
|
|
notificationController.show({
|
|
message: 'Updated password',
|
|
type: NotificationType.Info
|
|
});
|
|
|
|
password = '';
|
|
newPassword = '';
|
|
confirmPassword = '';
|
|
} catch (error) {
|
|
console.error('Error [user-profile] [changePassword]', error);
|
|
notificationController.show({
|
|
message: (error as ApiError)?.response?.data?.message || 'Unable to change password',
|
|
type: NotificationType.Error
|
|
});
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<section class="my-4">
|
|
<div in:fade={{ duration: 500 }}>
|
|
<form autocomplete="off" on:submit|preventDefault>
|
|
<div class="flex flex-col gap-4 ml-4 mt-4">
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.PASSWORD}
|
|
label="PASSWORD"
|
|
bind:value={password}
|
|
required={true}
|
|
/>
|
|
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.PASSWORD}
|
|
label="NEW PASSWORD"
|
|
bind:value={newPassword}
|
|
required={true}
|
|
/>
|
|
|
|
<SettingInputField
|
|
inputType={SettingInputFieldType.PASSWORD}
|
|
label="CONFIRM PASSWORD"
|
|
bind:value={confirmPassword}
|
|
required={true}
|
|
/>
|
|
|
|
<div class="flex justify-end">
|
|
<Button
|
|
type="submit"
|
|
size="sm"
|
|
disabled={!(password && newPassword && newPassword === confirmPassword)}
|
|
on:click={() => handleChangePassword()}>Save</Button
|
|
>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</section>
|