mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
73 lines
2.2 KiB
Svelte
73 lines
2.2 KiB
Svelte
<script lang="ts">
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
|
|
import { mdiFolderSync } from '@mdi/js';
|
|
import { onMount } from 'svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
importPath: string | null;
|
|
importPaths?: string[];
|
|
title?: string;
|
|
cancelText?: string;
|
|
submitText?: string;
|
|
isEditing?: boolean;
|
|
onCancel: () => void;
|
|
onSubmit: (importPath: string | null) => void;
|
|
onDelete?: () => void;
|
|
}
|
|
|
|
let {
|
|
importPath = $bindable(),
|
|
importPaths = $bindable([]),
|
|
title = $t('import_path'),
|
|
cancelText = $t('cancel'),
|
|
submitText = $t('save'),
|
|
isEditing = false,
|
|
onCancel,
|
|
onSubmit,
|
|
onDelete,
|
|
}: Props = $props();
|
|
|
|
onMount(() => {
|
|
if (isEditing) {
|
|
importPaths = importPaths.filter((path) => path !== importPath);
|
|
}
|
|
});
|
|
|
|
let isDuplicate = $derived(importPath !== null && importPaths.includes(importPath));
|
|
let canSubmit = $derived(importPath !== '' && importPath !== null && !importPaths.includes(importPath));
|
|
|
|
const onsubmit = (event: Event) => {
|
|
event.preventDefault();
|
|
if (canSubmit) {
|
|
onSubmit(importPath);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FullScreenModal {title} icon={mdiFolderSync} onClose={onCancel}>
|
|
<form {onsubmit} autocomplete="off" id="library-import-path-form">
|
|
<p class="py-5 text-sm">{$t('admin.library_import_path_description')}</p>
|
|
|
|
<div class="my-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="path">{$t('path')}</label>
|
|
<input class="immich-form-input" id="path" name="path" type="text" bind:value={importPath} />
|
|
</div>
|
|
|
|
<div class="mt-8 flex w-full gap-4">
|
|
{#if isDuplicate}
|
|
<p class="text-red-500 text-sm">{$t('errors.import_path_already_exists')}</p>
|
|
{/if}
|
|
</div>
|
|
</form>
|
|
|
|
{#snippet stickyBottom()}
|
|
<Button color="gray" fullwidth onclick={onCancel}>{cancelText}</Button>
|
|
{#if isEditing}
|
|
<Button color="red" fullwidth onclick={onDelete}>{$t('delete')}</Button>
|
|
{/if}
|
|
<Button type="submit" disabled={!canSubmit} fullwidth form="library-import-path-form">{submitText}</Button>
|
|
{/snippet}
|
|
</FullScreenModal>
|