2023-10-31 21:19:12 +01:00
|
|
|
<script lang="ts">
|
2024-01-12 18:44:11 +01:00
|
|
|
import type { SystemConfigDto } from '@api';
|
2023-10-31 21:19:12 +01:00
|
|
|
import { isEqual } from 'lodash-es';
|
2024-01-12 18:44:11 +01:00
|
|
|
import { createEventDispatcher } from 'svelte';
|
2024-01-20 13:47:41 -05:00
|
|
|
import { fade } from 'svelte/transition';
|
2024-01-12 18:44:11 +01:00
|
|
|
import type { SettingsEventType } from '../admin-settings';
|
2024-01-20 13:47:41 -05:00
|
|
|
import SettingAccordion from '../setting-accordion.svelte';
|
|
|
|
import SettingButtonsRow from '../setting-buttons-row.svelte';
|
|
|
|
import SettingInputField, { SettingInputFieldType } from '../setting-input-field.svelte';
|
|
|
|
import SettingSwitch from '../setting-switch.svelte';
|
2023-10-31 21:19:12 +01:00
|
|
|
|
2024-01-12 18:44:11 +01:00
|
|
|
export let savedConfig: SystemConfigDto;
|
|
|
|
export let defaultConfig: SystemConfigDto;
|
|
|
|
export let config: SystemConfigDto; // this is the config that is being edited
|
2023-10-31 21:19:12 +01:00
|
|
|
export let disabled = false;
|
|
|
|
|
|
|
|
const cronExpressionOptions = [
|
|
|
|
{ title: 'Every night at midnight', expression: '0 0 * * *' },
|
|
|
|
{ title: 'Every night at 2am', expression: '0 2 * * *' },
|
|
|
|
{ title: 'Every day at 1pm', expression: '0 13 * * *' },
|
|
|
|
{ title: 'Every 6 hours', expression: '0 */6 * * *' },
|
|
|
|
];
|
|
|
|
|
2024-01-12 18:44:11 +01:00
|
|
|
const dispatch = createEventDispatcher<SettingsEventType>();
|
2023-10-31 21:19:12 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div>
|
2024-01-12 18:44:11 +01:00
|
|
|
<div in:fade={{ duration: 500 }}>
|
2024-01-31 09:15:54 +01:00
|
|
|
<SettingAccordion title="Library watching (EXPERIMENTAL)" subtitle="Automatically watch for changed files" isOpen>
|
|
|
|
<form autocomplete="off" on:submit|preventDefault>
|
|
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
|
|
|
<SettingSwitch
|
|
|
|
title="Watch filesystem"
|
|
|
|
{disabled}
|
|
|
|
subtitle="Watch external libraries for file changes"
|
|
|
|
bind:checked={config.library.watch.enabled}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<SettingSwitch
|
|
|
|
title="Use filesystem polling (EXPERIMENTAL)"
|
|
|
|
disabled={disabled || !config.library.watch.enabled}
|
|
|
|
subtitle="Use polling instead of native filesystem watching. This is required for network shares but can be very resource intensive. Use with care!"
|
|
|
|
bind:checked={config.library.watch.usePolling}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<SettingInputField
|
|
|
|
inputType={SettingInputFieldType.NUMBER}
|
|
|
|
required={config.library.watch.usePolling}
|
|
|
|
disabled={disabled || !config.library.watch.usePolling || !config.library.watch.enabled}
|
|
|
|
label="Polling interval"
|
|
|
|
bind:value={config.library.watch.interval}
|
|
|
|
isEdited={config.library.watch.interval !== savedConfig.library.watch.interval}
|
|
|
|
>
|
|
|
|
<svelte:fragment slot="desc">
|
|
|
|
<p class="text-sm dark:text-immich-dark-fg">
|
|
|
|
Interval of filesystem polling, in milliseconds. Lower values will result in higher CPU usage.
|
|
|
|
</p>
|
|
|
|
</svelte:fragment>
|
|
|
|
</SettingInputField>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ml-4">
|
|
|
|
<SettingButtonsRow
|
|
|
|
on:reset={({ detail }) => dispatch('reset', { ...detail, configKeys: ['library'] })}
|
|
|
|
on:save={() => dispatch('save', { library: config.library })}
|
|
|
|
showResetToDefault={!isEqual(savedConfig.library, defaultConfig.library)}
|
|
|
|
{disabled}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</SettingAccordion>
|
|
|
|
|
|
|
|
<SettingAccordion title="Periodic Scanning" subtitle="Configure periodic library scanning" isOpen>
|
2024-01-12 18:44:11 +01:00
|
|
|
<form autocomplete="off" on:submit|preventDefault>
|
|
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
|
|
|
<SettingSwitch
|
|
|
|
title="ENABLED"
|
|
|
|
{disabled}
|
2024-01-31 09:15:54 +01:00
|
|
|
subtitle="Enable periodic library scanning"
|
2024-01-12 18:44:11 +01:00
|
|
|
bind:checked={config.library.scan.enabled}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<div class="flex flex-col my-2 dark:text-immich-dark-fg">
|
|
|
|
<label class="text-sm" for="expression-select">Cron Expression Presets</label>
|
|
|
|
<select
|
|
|
|
class="p-2 mt-2 text-sm rounded-lg bg-slate-200 hover:cursor-pointer dark:bg-gray-600"
|
|
|
|
disabled={disabled || !config.library.scan.enabled}
|
|
|
|
name="expression"
|
|
|
|
id="expression-select"
|
|
|
|
bind:value={config.library.scan.cronExpression}
|
2023-10-31 21:19:12 +01:00
|
|
|
>
|
2024-01-12 18:44:11 +01:00
|
|
|
{#each cronExpressionOptions as { title, expression }}
|
|
|
|
<option value={expression}>{title}</option>
|
|
|
|
{/each}
|
|
|
|
</select>
|
2023-10-31 21:19:12 +01:00
|
|
|
</div>
|
|
|
|
|
2024-01-12 18:44:11 +01:00
|
|
|
<SettingInputField
|
|
|
|
inputType={SettingInputFieldType.TEXT}
|
|
|
|
required={true}
|
|
|
|
disabled={disabled || !config.library.scan.enabled}
|
|
|
|
label="Cron Expression"
|
|
|
|
bind:value={config.library.scan.cronExpression}
|
|
|
|
isEdited={config.library.scan.cronExpression !== savedConfig.library.scan.cronExpression}
|
|
|
|
>
|
|
|
|
<svelte:fragment slot="desc">
|
|
|
|
<p class="text-sm dark:text-immich-dark-fg">
|
|
|
|
Set the scanning interval using the cron format. For more information please refer to e.g. <a
|
|
|
|
href="https://crontab.guru"
|
|
|
|
class="underline"
|
|
|
|
target="_blank"
|
|
|
|
rel="noreferrer">Crontab Guru</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
</svelte:fragment>
|
|
|
|
</SettingInputField>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ml-4">
|
|
|
|
<SettingButtonsRow
|
|
|
|
on:reset={({ detail }) => dispatch('reset', { ...detail, configKeys: ['library'] })}
|
|
|
|
on:save={() => dispatch('save', { library: config.library })}
|
|
|
|
showResetToDefault={!isEqual(savedConfig.library, defaultConfig.library)}
|
|
|
|
{disabled}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</SettingAccordion>
|
|
|
|
</div>
|
2023-10-31 21:19:12 +01:00
|
|
|
</div>
|