mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
73 lines
2.6 KiB
Svelte
73 lines
2.6 KiB
Svelte
<script lang="ts">
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { getConfig, type SystemConfigDto } from '@immich/sdk';
|
|
import { mdiArrowLeft, mdiCheck } from '@mdi/js';
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
import AdminSettings from '../admin-page/settings/admin-settings.svelte';
|
|
import StorageTemplateSettings from '../admin-page/settings/storage-template/storage-template-settings.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import Icon from '../elements/icon.svelte';
|
|
import OnboardingCard from './onboarding-card.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import FormatMessage from '$lib/components/i18n/format-message.svelte';
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
done: void;
|
|
previous: void;
|
|
}>();
|
|
|
|
let config: SystemConfigDto | null = null;
|
|
|
|
onMount(async () => {
|
|
config = await getConfig();
|
|
});
|
|
</script>
|
|
|
|
<OnboardingCard>
|
|
<p class="text-xl text-immich-primary dark:text-immich-dark-primary">
|
|
{$t('admin.storage_template_settings').toUpperCase()}
|
|
</p>
|
|
|
|
<p>
|
|
<FormatMessage key="admin.storage_template_onboarding_description" let:message>
|
|
<a class="underline" href="https://immich.app/docs/administration/storage-template">{message}</a>
|
|
</FormatMessage>
|
|
</p>
|
|
|
|
{#if config && $user}
|
|
<AdminSettings bind:config let:defaultConfig let:savedConfig let:handleSave let:handleReset>
|
|
<StorageTemplateSettings
|
|
minified
|
|
disabled={$featureFlags.configFile}
|
|
{config}
|
|
{defaultConfig}
|
|
{savedConfig}
|
|
onSave={(config) => handleSave(config)}
|
|
onReset={(options) => handleReset(options)}
|
|
>
|
|
<div class="flex pt-4">
|
|
<div class="w-full flex place-content-start">
|
|
<Button class="flex gap-2 place-content-center" on:click={() => dispatch('previous')}>
|
|
<Icon path={mdiArrowLeft} size="18" />
|
|
<p>{$t('theme')}</p>
|
|
</Button>
|
|
</div>
|
|
<div class="flex w-full place-content-end">
|
|
<Button
|
|
on:click={() => {
|
|
handleSave({ storageTemplate: config?.storageTemplate });
|
|
dispatch('done');
|
|
}}
|
|
>
|
|
<span class="flex place-content-center place-items-center gap-2">
|
|
{$t('done')}
|
|
<Icon path={mdiCheck} size="18" />
|
|
</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</StorageTemplateSettings>
|
|
</AdminSettings>
|
|
{/if}
|
|
</OnboardingCard>
|