2024-01-03 23:28:32 -06:00
|
|
|
<script lang="ts">
|
|
|
|
|
import OnboardingCard from './onboarding-card.svelte';
|
|
|
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
|
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
|
|
|
import StorageTemplateSettings from '../admin-page/settings/storage-template/storage-template-settings.svelte';
|
2024-01-20 13:47:41 -05:00
|
|
|
import { type SystemConfigDto, api } from '@api';
|
2024-01-03 23:28:32 -06:00
|
|
|
import { user } from '$lib/stores/user.store';
|
2024-01-12 18:44:11 +01:00
|
|
|
import AdminSettings from '../admin-page/settings/admin-settings.svelte';
|
|
|
|
|
import { mdiArrowLeft, mdiCheck } from '@mdi/js';
|
|
|
|
|
import Button from '../elements/buttons/button.svelte';
|
|
|
|
|
import Icon from '../elements/icon.svelte';
|
2024-01-03 23:28:32 -06:00
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
|
|
|
done: void;
|
2024-01-06 21:01:24 +01:00
|
|
|
previous: void;
|
2024-01-03 23:28:32 -06:00
|
|
|
}>();
|
|
|
|
|
|
2024-01-12 18:44:11 +01:00
|
|
|
let config: SystemConfigDto | null = null;
|
2024-01-03 23:28:32 -06:00
|
|
|
|
|
|
|
|
onMount(async () => {
|
|
|
|
|
const { data } = await api.systemConfigApi.getConfig();
|
2024-01-12 18:44:11 +01:00
|
|
|
config = data;
|
2024-01-03 23:28:32 -06:00
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<OnboardingCard>
|
|
|
|
|
<p class="text-xl text-immich-primary dark:text-immich-dark-primary">STORAGE TEMPLATE</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
The storage template is used to determine the folder structure and file name of your media files. You can use
|
|
|
|
|
variables to customize the template to your liking.
|
|
|
|
|
</p>
|
|
|
|
|
|
2024-01-12 18:44:11 +01:00
|
|
|
{#if config && $user}
|
|
|
|
|
<AdminSettings bind:config let:defaultConfig let:savedConfig let:handleSave let:handleReset>
|
|
|
|
|
<StorageTemplateSettings
|
|
|
|
|
minified
|
|
|
|
|
disabled={$featureFlags.configFile}
|
|
|
|
|
{config}
|
|
|
|
|
{defaultConfig}
|
|
|
|
|
{savedConfig}
|
|
|
|
|
on:save={({ detail }) => handleSave(detail)}
|
|
|
|
|
on:reset={({ detail }) => handleReset(detail)}
|
|
|
|
|
>
|
|
|
|
|
<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>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">
|
|
|
|
|
Done
|
|
|
|
|
<Icon path={mdiCheck} size="18" />
|
|
|
|
|
</span>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</StorageTemplateSettings>
|
|
|
|
|
</AdminSettings>
|
2024-01-03 23:28:32 -06:00
|
|
|
{/if}
|
|
|
|
|
</OnboardingCard>
|