2022-12-09 15:51:42 -05:00
|
|
|
<script lang="ts">
|
2023-07-01 00:50:47 -04:00
|
|
|
import { page } from '$app/stores';
|
|
|
|
|
import FFmpegSettings from '$lib/components/admin-page/settings/ffmpeg/ffmpeg-settings.svelte';
|
|
|
|
|
import JobSettings from '$lib/components/admin-page/settings/job-settings/job-settings.svelte';
|
2023-08-25 00:15:03 -04:00
|
|
|
import MachineLearningSettings from '$lib/components/admin-page/settings/machine-learning-settings/machine-learning-settings.svelte';
|
2023-09-08 22:51:46 -04:00
|
|
|
import MapSettings from '$lib/components/admin-page/settings/map-settings/map-settings.svelte';
|
2023-07-01 00:50:47 -04:00
|
|
|
import OAuthSettings from '$lib/components/admin-page/settings/oauth/oauth-settings.svelte';
|
|
|
|
|
import PasswordLoginSettings from '$lib/components/admin-page/settings/password-login/password-login-settings.svelte';
|
|
|
|
|
import SettingAccordion from '$lib/components/admin-page/settings/setting-accordion.svelte';
|
|
|
|
|
import StorageTemplateSettings from '$lib/components/admin-page/settings/storage-template/storage-template-settings.svelte';
|
2023-08-25 00:15:03 -04:00
|
|
|
import ThumbnailSettings from '$lib/components/admin-page/settings/thumbnail/thumbnail-settings.svelte';
|
2023-10-13 11:02:28 -04:00
|
|
|
import TrashSettings from '$lib/components/admin-page/settings/trash-settings/trash-settings.svelte';
|
2023-10-23 11:38:41 -07:00
|
|
|
import ThemeSettings from '$lib/components/admin-page/settings/theme/theme-settings.svelte';
|
2023-10-13 11:02:28 -04:00
|
|
|
import LinkButton from '$lib/components/elements/buttons/link-button.svelte';
|
|
|
|
|
import UserPageLayout from '$lib/components/layouts/user-page-layout.svelte';
|
2023-08-25 19:44:52 +02:00
|
|
|
import { downloadManager } from '$lib/stores/download';
|
2023-09-08 22:51:46 -04:00
|
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
2023-08-25 19:44:52 +02:00
|
|
|
import { downloadBlob } from '$lib/utils/asset-utils';
|
2023-10-13 11:02:28 -04:00
|
|
|
import { copyToClipboard } from '@api';
|
2023-10-25 09:48:25 -04:00
|
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
2023-07-01 00:50:47 -04:00
|
|
|
import type { PageData } from './$types';
|
2023-10-24 17:05:42 +02:00
|
|
|
import NewVersionCheckSettings from '$lib/components/admin-page/settings/new-version-check-settings/new-version-check-settings.svelte';
|
2023-10-31 21:19:12 +01:00
|
|
|
import LibrarySettings from '$lib/components/admin-page/settings/library-settings/library-settings.svelte';
|
2023-12-14 11:55:40 -05:00
|
|
|
import LoggingSettings from '$lib/components/admin-page/settings/logging-settings/logging-settings.svelte';
|
2023-10-25 09:48:25 -04:00
|
|
|
import { mdiAlert, mdiContentCopy, mdiDownload } from '@mdi/js';
|
2022-12-09 15:51:42 -05:00
|
|
|
|
2023-07-01 00:50:47 -04:00
|
|
|
export let data: PageData;
|
2023-01-09 16:32:58 -05:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
const configs = data.configs;
|
2023-08-25 19:44:52 +02:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
const downloadConfig = () => {
|
2023-08-25 19:44:52 +02:00
|
|
|
const blob = new Blob([JSON.stringify(configs, null, 2)], { type: 'application/json' });
|
|
|
|
|
const downloadKey = 'immich-config.json';
|
|
|
|
|
downloadManager.add(downloadKey, blob.size);
|
|
|
|
|
downloadManager.update(downloadKey, blob.size);
|
|
|
|
|
downloadBlob(blob, downloadKey);
|
|
|
|
|
setTimeout(() => downloadManager.clear(downloadKey), 5_000);
|
|
|
|
|
};
|
2022-12-09 15:51:42 -05:00
|
|
|
</script>
|
|
|
|
|
|
2023-08-25 19:44:52 +02:00
|
|
|
{#if $featureFlags.configFile}
|
|
|
|
|
<div class="mb-8 flex flex-row items-center gap-2 rounded-md bg-gray-100 p-3 dark:bg-gray-800">
|
2023-10-25 09:48:25 -04:00
|
|
|
<Icon path={mdiAlert} class="text-yellow-400" size={18} />
|
2023-08-25 19:44:52 +02:00
|
|
|
<h2 class="text-md text-immich-primary dark:text-immich-dark-primary">Config is currently set by a config file</h2>
|
|
|
|
|
</div>
|
|
|
|
|
{/if}
|
|
|
|
|
|
2023-12-12 17:35:28 +01:00
|
|
|
<UserPageLayout title={data.meta.title} admin>
|
2023-10-13 11:02:28 -04:00
|
|
|
<div class="flex justify-end gap-2" slot="buttons">
|
|
|
|
|
<LinkButton on:click={() => copyToClipboard(JSON.stringify(configs, null, 2))}>
|
|
|
|
|
<div class="flex place-items-center gap-2 text-sm">
|
2023-10-25 09:48:25 -04:00
|
|
|
<Icon path={mdiContentCopy} size="18" />
|
2023-10-13 11:02:28 -04:00
|
|
|
Copy to Clipboard
|
|
|
|
|
</div>
|
|
|
|
|
</LinkButton>
|
|
|
|
|
<LinkButton on:click={() => downloadConfig()}>
|
|
|
|
|
<div class="flex place-items-center gap-2 text-sm">
|
2023-10-25 09:48:25 -04:00
|
|
|
<Icon path={mdiDownload} size="18" />
|
2023-10-13 11:02:28 -04:00
|
|
|
Export as JSON
|
|
|
|
|
</div>
|
|
|
|
|
</LinkButton>
|
|
|
|
|
</div>
|
2023-08-29 09:58:00 -04:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<section id="setting-content" class="flex place-content-center sm:mx-4">
|
|
|
|
|
<section class="w-full pb-28 sm:w-5/6 md:w-[850px]">
|
|
|
|
|
<SettingAccordion
|
|
|
|
|
title="Job Settings"
|
|
|
|
|
subtitle="Manage job concurrency"
|
|
|
|
|
isOpen={$page.url.searchParams.get('open') === 'job-settings'}
|
|
|
|
|
>
|
|
|
|
|
<JobSettings disabled={$featureFlags.configFile} jobConfig={configs.job} />
|
|
|
|
|
</SettingAccordion>
|
2023-06-01 06:32:51 -04:00
|
|
|
|
2023-10-31 21:19:12 +01:00
|
|
|
<SettingAccordion title="Library" subtitle="Manage library settings">
|
|
|
|
|
<LibrarySettings disabled={$featureFlags.configFile} libraryConfig={configs.library} />
|
|
|
|
|
</SettingAccordion>
|
|
|
|
|
|
2023-12-14 11:55:40 -05:00
|
|
|
<SettingAccordion title="Logging" subtitle="Manage log settings">
|
|
|
|
|
<LoggingSettings disabled={$featureFlags.configFile} loggingConfig={configs.logging} />
|
|
|
|
|
</SettingAccordion>
|
|
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="Machine Learning Settings" subtitle="Manage machine learning features and settings">
|
|
|
|
|
<MachineLearningSettings disabled={$featureFlags.configFile} machineLearningConfig={configs.machineLearning} />
|
|
|
|
|
</SettingAccordion>
|
2023-09-08 22:51:46 -04:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="Map & GPS Settings" subtitle="Manage map related features and setting">
|
|
|
|
|
<MapSettings disabled={$featureFlags.configFile} config={configs} />
|
|
|
|
|
</SettingAccordion>
|
2023-01-09 16:32:58 -05:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="OAuth Authentication" subtitle="Manage the login with OAuth settings">
|
|
|
|
|
<OAuthSettings disabled={$featureFlags.configFile} oauthConfig={configs.oauth} />
|
|
|
|
|
</SettingAccordion>
|
2022-12-16 14:26:12 -06:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="Password Authentication" subtitle="Manage login with password settings">
|
|
|
|
|
<PasswordLoginSettings disabled={$featureFlags.configFile} passwordLoginConfig={configs.passwordLogin} />
|
|
|
|
|
</SettingAccordion>
|
2023-09-08 22:51:46 -04:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion
|
|
|
|
|
title="Storage Template"
|
|
|
|
|
subtitle="Manage the folder structure and file name of the upload asset"
|
|
|
|
|
isOpen={$page.url.searchParams.get('open') === 'storage-template'}
|
|
|
|
|
>
|
2023-12-12 17:35:28 +01:00
|
|
|
<StorageTemplateSettings disabled={$featureFlags.configFile} storageConfig={configs.storageTemplate} />
|
2023-10-13 11:02:28 -04:00
|
|
|
</SettingAccordion>
|
2023-09-08 22:51:46 -04:00
|
|
|
|
2023-10-23 11:38:41 -07:00
|
|
|
<SettingAccordion title="Theme Settings" subtitle="Manage customization of the Immich web interface">
|
|
|
|
|
<ThemeSettings disabled={$featureFlags.configFile} themeConfig={configs.theme} />
|
|
|
|
|
</SettingAccordion>
|
|
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="Thumbnail Settings" subtitle="Manage the resolution of thumbnail sizes">
|
|
|
|
|
<ThumbnailSettings disabled={$featureFlags.configFile} thumbnailConfig={configs.thumbnail} />
|
|
|
|
|
</SettingAccordion>
|
2023-09-08 22:51:46 -04:00
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion title="Trash Settings" subtitle="Manage trash settings">
|
|
|
|
|
<TrashSettings disabled={$featureFlags.configFile} trashConfig={configs.trash} />
|
|
|
|
|
</SettingAccordion>
|
2023-10-13 10:40:53 -04:00
|
|
|
|
2023-10-24 17:05:42 +02:00
|
|
|
<SettingAccordion title="Version Check" subtitle="Enable/disable the new version notification">
|
2023-12-16 20:39:17 +01:00
|
|
|
<NewVersionCheckSettings disabled={$featureFlags.configFile} newVersionCheckConfig={configs.newVersionCheck} />
|
2023-10-24 17:05:42 +02:00
|
|
|
</SettingAccordion>
|
|
|
|
|
|
2023-10-13 11:02:28 -04:00
|
|
|
<SettingAccordion
|
|
|
|
|
title="Video Transcoding Settings"
|
|
|
|
|
subtitle="Manage the resolution and encoding information of the video files"
|
|
|
|
|
>
|
|
|
|
|
<FFmpegSettings disabled={$featureFlags.configFile} ffmpegConfig={configs.ffmpeg} />
|
|
|
|
|
</SettingAccordion>
|
|
|
|
|
</section>
|
|
|
|
|
</section>
|
|
|
|
|
</UserPageLayout>
|