mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 15:17:05 -08:00
31 lines
973 B
Svelte
31 lines
973 B
Svelte
<script lang="ts">
|
|
import { handleEditExclusionPattern } from '$lib/services/library.service';
|
|
import type { LibraryResponseDto } from '@immich/sdk';
|
|
import { Field, FormModal, Input, Text } from '@immich/ui';
|
|
import { mdiFolderSync } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
type Props = {
|
|
library: LibraryResponseDto;
|
|
exclusionPattern: string;
|
|
onClose: () => void;
|
|
};
|
|
|
|
const { library, exclusionPattern: oldValue, onClose }: Props = $props();
|
|
let newValue = $state(oldValue);
|
|
|
|
const onSubmit = async () => {
|
|
const success = await handleEditExclusionPattern(library, oldValue, newValue);
|
|
if (success) {
|
|
onClose();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FormModal title={$t('edit_exclusion_pattern')} icon={mdiFolderSync} {onClose} {onSubmit} size="small">
|
|
<Text size="small" class="mb-4">{$t('admin.exclusion_pattern_description')}</Text>
|
|
<Field label={$t('pattern')}>
|
|
<Input bind:value={newValue} />
|
|
</Field>
|
|
</FormModal>
|