2023-10-23 11:38:41 -07:00
|
|
|
<script lang="ts">
|
|
|
|
|
import {
|
|
|
|
|
notificationController,
|
|
|
|
|
NotificationType,
|
|
|
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
|
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
|
|
|
import { api, SystemConfigThemeDto } from '@api';
|
|
|
|
|
import { isEqual } from 'lodash-es';
|
|
|
|
|
import { fade } from 'svelte/transition';
|
|
|
|
|
import SettingButtonsRow from '../setting-buttons-row.svelte';
|
|
|
|
|
import SettingTextarea from '../setting-textarea.svelte';
|
2023-12-14 17:55:15 +01:00
|
|
|
import type { ResetOptions } from '$lib/utils/dipatch';
|
2023-10-23 11:38:41 -07:00
|
|
|
|
|
|
|
|
export let themeConfig: SystemConfigThemeDto; // this is the config that is being edited
|
|
|
|
|
export let disabled = false;
|
|
|
|
|
|
|
|
|
|
let savedConfig: SystemConfigThemeDto;
|
|
|
|
|
let defaultConfig: SystemConfigThemeDto;
|
|
|
|
|
|
2023-12-14 17:55:15 +01:00
|
|
|
const handleReset = (detail: ResetOptions) => {
|
|
|
|
|
if (detail.default) {
|
|
|
|
|
resetToDefault();
|
|
|
|
|
} else {
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-23 11:38:41 -07:00
|
|
|
async function getConfigs() {
|
|
|
|
|
[savedConfig, defaultConfig] = await Promise.all([
|
|
|
|
|
api.systemConfigApi.getConfig().then((res) => res.data.theme),
|
2023-11-03 21:33:15 -04:00
|
|
|
api.systemConfigApi.getConfigDefaults().then((res) => res.data.theme),
|
2023-10-23 11:38:41 -07:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function saveSetting() {
|
|
|
|
|
try {
|
|
|
|
|
const { data: current } = await api.systemConfigApi.getConfig();
|
|
|
|
|
|
|
|
|
|
const { data: updated } = await api.systemConfigApi.updateConfig({
|
|
|
|
|
systemConfigDto: {
|
|
|
|
|
...current,
|
|
|
|
|
theme: themeConfig,
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
themeConfig = { ...updated.theme };
|
|
|
|
|
savedConfig = { ...updated.theme };
|
|
|
|
|
|
|
|
|
|
notificationController.show({ message: 'Theme saved', type: NotificationType.Info });
|
|
|
|
|
} catch (error) {
|
|
|
|
|
handleError(error, 'Unable to save settings');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function reset() {
|
|
|
|
|
const { data: resetConfig } = await api.systemConfigApi.getConfig();
|
|
|
|
|
|
|
|
|
|
themeConfig = { ...resetConfig.theme };
|
|
|
|
|
savedConfig = { ...resetConfig.theme };
|
|
|
|
|
|
|
|
|
|
notificationController.show({
|
|
|
|
|
message: 'Reset theme to the recent saved theme',
|
|
|
|
|
type: NotificationType.Info,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function resetToDefault() {
|
2023-11-03 21:33:15 -04:00
|
|
|
const { data: configs } = await api.systemConfigApi.getConfigDefaults();
|
2023-10-23 11:38:41 -07:00
|
|
|
|
|
|
|
|
themeConfig = { ...configs.theme };
|
|
|
|
|
defaultConfig = { ...configs.theme };
|
|
|
|
|
|
|
|
|
|
notificationController.show({
|
|
|
|
|
message: 'Reset theme to default',
|
|
|
|
|
type: NotificationType.Info,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
{#await getConfigs() then}
|
|
|
|
|
<div in:fade={{ duration: 500 }}>
|
|
|
|
|
<form autocomplete="off" on:submit|preventDefault>
|
|
|
|
|
<div class="ml-4 mt-4 flex flex-col gap-4">
|
|
|
|
|
<div class="ml-4">
|
|
|
|
|
<SettingTextarea
|
|
|
|
|
{disabled}
|
|
|
|
|
label="Custom CSS"
|
|
|
|
|
desc="Cascading Style Sheets allow the design of Immich to be customized."
|
|
|
|
|
bind:value={themeConfig.customCss}
|
|
|
|
|
required={true}
|
|
|
|
|
isEdited={themeConfig.customCss !== savedConfig.customCss}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<SettingButtonsRow
|
2023-12-14 17:55:15 +01:00
|
|
|
on:reset={({ detail }) => handleReset(detail)}
|
2023-10-23 11:38:41 -07:00
|
|
|
on:save={saveSetting}
|
|
|
|
|
showResetToDefault={!isEqual(savedConfig, defaultConfig)}
|
|
|
|
|
{disabled}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
{/await}
|
|
|
|
|
</div>
|