immich/web/src/lib/modals/PinCodeResetModal.svelte
2026-01-09 13:03:57 -05:00

46 lines
1.5 KiB
Svelte

<script lang="ts">
import { featureFlagsManager } from '$lib/managers/feature-flags-manager.svelte';
import { handleResetPinCode } from '$lib/services/user.service';
import { Field, FormModal, HelperText, Modal, ModalBody, PasswordInput, Stack, type ModalSize } from '@immich/ui';
import { mdiLockReset } from '@mdi/js';
import { t } from 'svelte-i18n';
type Props = {
onClose: (success?: true) => void;
};
let { onClose }: Props = $props();
let password = $state('');
const onSubmit = async () => {
const success = await handleResetPinCode({ password });
if (success) {
onClose();
}
};
const common = $derived({ title: $t('reset'), size: 'small' as ModalSize, icon: mdiLockReset, onClose });
</script>
{#if featureFlagsManager.value.passwordLogin === false}
<FormModal {...common} submitColor="danger" submitText={$t('reset')} disabled={!password} {onSubmit}>
<Stack gap={4}>
<div>{$t('reset_pin_code_description')}</div>
<hr class="my-2 h-px w-full border-0 bg-gray-200 dark:bg-gray-600" />
<section>
<Field label={$t('confirm_password')} required>
<PasswordInput bind:value={password} autocomplete="current-password" />
<HelperText color="muted">{$t('reset_pin_code_with_password')}</HelperText>
</Field>
</section>
</Stack>
</FormModal>
{:else}
<Modal {...common} closeOnBackdropClick>
<ModalBody>
<div>{$t('reset_pin_code_description')}</div>
</ModalBody>
</Modal>
{/if}