mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import { createContext, ReactNode, useContext, useEffect, useState } from 'react';
|
|
import { shallow } from 'zustand/shallow';
|
|
import { useColorTheme } from '../tools/color';
|
|
import { ConfigType } from '../types/config';
|
|
import { useConfigStore } from './store';
|
|
|
|
export type ConfigContextType = {
|
|
config: ConfigType | undefined;
|
|
name: string | undefined;
|
|
configVersion: number | undefined;
|
|
increaseVersion: () => void;
|
|
setConfigName: (name: string) => void;
|
|
};
|
|
|
|
const ConfigContext = createContext<ConfigContextType>({
|
|
name: 'unknown',
|
|
config: undefined,
|
|
configVersion: undefined,
|
|
increaseVersion: () => {},
|
|
setConfigName: () => {},
|
|
});
|
|
|
|
export const ConfigProvider = ({ children }: { children: ReactNode }) => {
|
|
const [configName, setConfigName] = useState<string>();
|
|
const [configVersion, setConfigVersion] = useState(0);
|
|
const { configs } = useConfigStore((s) => ({ configs: s.configs }), shallow);
|
|
const { setPrimaryColor, setSecondaryColor, setPrimaryShade } = useColorTheme();
|
|
|
|
const currentConfig = configs.find((c) => c.value.configProperties.name === configName)?.value;
|
|
|
|
useEffect(() => {
|
|
setPrimaryColor(currentConfig?.settings.customization.colors.primary || 'red');
|
|
setSecondaryColor(currentConfig?.settings.customization.colors.secondary || 'orange');
|
|
setPrimaryShade(currentConfig?.settings.customization.colors.shade || 6);
|
|
}, [configName]);
|
|
|
|
return (
|
|
<ConfigContext.Provider
|
|
value={{
|
|
name: configName,
|
|
config: currentConfig,
|
|
configVersion,
|
|
increaseVersion: () => setConfigVersion((v) => v + 1),
|
|
setConfigName: (name: string) => setConfigName(name),
|
|
}}
|
|
>
|
|
{children}
|
|
</ConfigContext.Provider>
|
|
);
|
|
};
|
|
|
|
export const useConfigContext = () => useContext(ConfigContext);
|