mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-15 17:56:21 +01:00
43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import { Center, Loader, Select, Tooltip } from '@mantine/core';
|
|
import { setCookie } from 'cookies-next';
|
|
import { useEffect, useState } from 'react';
|
|
import { useConfig } from '../../tools/state';
|
|
|
|
export default function ConfigChanger() {
|
|
const { config, loadConfig, setConfig, getConfigs } = useConfig();
|
|
const [configList, setConfigList] = useState<string[]>([]);
|
|
const [value, setValue] = useState(config.name);
|
|
useEffect(() => {
|
|
getConfigs().then((configs) => setConfigList(configs));
|
|
}, [config]);
|
|
// If configlist is empty, return a loading indicator
|
|
if (configList.length === 0) {
|
|
return (
|
|
<Tooltip label={"Loading your configs. This doesn't load in vercel."}>
|
|
<Center>
|
|
<Loader />
|
|
</Center>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
// return <Select data={[{ value: '1', label: '1' },]} onChange={(e) => console.log(e)} value="1" />;
|
|
return (
|
|
<Select
|
|
label="Config loader"
|
|
value={value}
|
|
defaultValue={config.name}
|
|
onChange={(e) => {
|
|
loadConfig(e ?? 'default');
|
|
setCookie('config-name', e ?? 'default', {
|
|
maxAge: 60 * 60 * 24 * 30,
|
|
sameSite: 'strict',
|
|
});
|
|
}}
|
|
data={
|
|
// If config list is empty, return the current config
|
|
configList.length === 0 ? [config.name] : configList
|
|
}
|
|
/>
|
|
);
|
|
}
|