mirror of
https://github.com/immich-app/immich
synced 2025-06-08 21:18:03 +00:00

* chore(web): another missing translations * unused removed * more keys * lint fix * test fixed * dynamic translation fix * fixes * people search translation * params fixed * keep filter setting fix * lint fix * $t fixes * Update web/src/lib/i18n/en.json Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * another missing * activity translation * link sharing translations * expiration dropdown fix - didn't work localized * notification title * device logout * search results * reset to default * unsaved change * select from computer * selected * select-2 * select-3 * unmerge * pluralize, force icu message * Update web/src/lib/components/asset-viewer/asset-viewer.svelte Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * review fixes * remove user * plural fixes * ffmpeg settings * fixes * error title * plural fixes * onboarding * change password * more more * console log fix * another * api key desc * map marker * format fix * key fix * asset-utils * utils * misc --------- Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com>
63 lines
1.7 KiB
Svelte
63 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher } from 'svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import PasswordField from '../shared-components/password-field.svelte';
|
|
import { updateMyUser } from '@immich/sdk';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
let errorMessage: string;
|
|
let success: string;
|
|
|
|
let password = '';
|
|
let passwordConfirm = '';
|
|
|
|
let valid = false;
|
|
|
|
$: {
|
|
if (password !== passwordConfirm && passwordConfirm.length > 0) {
|
|
errorMessage = $t('password_does_not_match');
|
|
valid = false;
|
|
} else {
|
|
errorMessage = '';
|
|
valid = true;
|
|
}
|
|
}
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
success: void;
|
|
}>();
|
|
|
|
async function changePassword() {
|
|
if (valid) {
|
|
errorMessage = '';
|
|
|
|
await updateMyUser({ userUpdateMeDto: { password: String(password) } });
|
|
|
|
dispatch('success');
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<form on:submit|preventDefault={changePassword} method="post" class="mt-5 flex flex-col gap-5">
|
|
<div class="flex flex-col gap-2">
|
|
<label class="immich-form-label" for="password">{$t('new_password')}</label>
|
|
<PasswordField id="password" bind:password autocomplete="new-password" />
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2">
|
|
<label class="immich-form-label" for="confirmPassword">{$t('confirm_password')}</label>
|
|
<PasswordField id="confirmPassword" bind:password={passwordConfirm} autocomplete="new-password" />
|
|
</div>
|
|
|
|
{#if errorMessage}
|
|
<p class="text-sm text-red-400">{errorMessage}</p>
|
|
{/if}
|
|
|
|
{#if success}
|
|
<p class="text-sm text-immich-primary">{success}</p>
|
|
{/if}
|
|
<div class="my-5 flex w-full">
|
|
<Button type="submit" size="lg" fullwidth>{$t('to_change_password')}</Button>
|
|
</div>
|
|
</form>
|