mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* chore: styling tweak * replace full-screen-modal, update docs * scrubber * fix: control app bar in memory viewer * face lift * pr feedback * clean up
80 lines
2.5 KiB
Svelte
80 lines
2.5 KiB
Svelte
<script lang="ts">
|
|
import { Button, Modal, ModalBody, ModalFooter } from '@immich/ui';
|
|
import { mdiFolderRemove } from '@mdi/js';
|
|
import { onMount } from 'svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
exclusionPattern: string;
|
|
exclusionPatterns?: string[];
|
|
isEditing?: boolean;
|
|
submitText?: string;
|
|
onCancel: () => void;
|
|
onSubmit: (exclusionPattern: string) => void;
|
|
onDelete?: () => void;
|
|
}
|
|
|
|
let {
|
|
exclusionPattern = $bindable(),
|
|
exclusionPatterns = $bindable([]),
|
|
isEditing = false,
|
|
submitText = $t('submit'),
|
|
onCancel,
|
|
onSubmit,
|
|
onDelete,
|
|
}: Props = $props();
|
|
|
|
onMount(() => {
|
|
if (isEditing) {
|
|
exclusionPatterns = exclusionPatterns.filter((pattern) => pattern !== exclusionPattern);
|
|
}
|
|
});
|
|
|
|
let isDuplicate = $derived(exclusionPattern !== null && exclusionPatterns.includes(exclusionPattern));
|
|
let canSubmit = $derived(exclusionPattern && !exclusionPatterns.includes(exclusionPattern));
|
|
|
|
const onsubmit = (event: Event) => {
|
|
event.preventDefault();
|
|
if (canSubmit) {
|
|
onSubmit(exclusionPattern);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<Modal size="small" title={$t('add_exclusion_pattern')} icon={mdiFolderRemove} onClose={onCancel}>
|
|
<ModalBody>
|
|
<form {onsubmit} autocomplete="off" id="add-exclusion-pattern-form">
|
|
<p class="py-5 text-sm">
|
|
{$t('admin.exclusion_pattern_description')}
|
|
<br /><br />
|
|
{$t('admin.add_exclusion_pattern_description')}
|
|
</p>
|
|
<div class="my-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="exclusionPattern">{$t('pattern')}</label>
|
|
<input
|
|
class="immich-form-input"
|
|
id="exclusionPattern"
|
|
name="exclusionPattern"
|
|
type="text"
|
|
bind:value={exclusionPattern}
|
|
/>
|
|
</div>
|
|
<div class="mt-8 flex w-full gap-4">
|
|
{#if isDuplicate}
|
|
<p class="text-red-500 text-sm">{$t('errors.exclusion_pattern_already_exists')}</p>
|
|
{/if}
|
|
</div>
|
|
</form>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<div class="flex gap-2 w-full">
|
|
<Button shape="round" color="secondary" fullWidth onclick={onCancel}>{$t('cancel')}</Button>
|
|
{#if isEditing}
|
|
<Button shape="round" color="danger" fullWidth onclick={onDelete}>{$t('delete')}</Button>
|
|
{/if}
|
|
<Button shape="round" type="submit" disabled={!canSubmit} fullWidth form="add-exclusion-pattern-form"
|
|
>{submitText}</Button
|
|
>
|
|
</div>
|
|
</ModalFooter>
|
|
</Modal>
|