hexabot/frontend/src/contexts/config.context.tsx
2024-12-25 09:21:54 +01:00

47 lines
1.4 KiB
TypeScript

/*
* Copyright © 2024 Hexastack. All rights reserved.
*
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import { createContext, useEffect, useState } from "react";
export const ConfigContext = createContext<IConfig | null>(null);
export interface IConfig {
apiUrl: string;
ssoEnabled: boolean;
maxUploadSize: number;
}
export const ConfigProvider = ({ children }) => {
const [config, setConfig] = useState<IConfig | null>(null);
useEffect(() => {
const fetchConfig = async () => {
try {
const res = await fetch("/config");
const data = (await res.json()) as IConfig;
setConfig(data);
} catch (error) {
// eslint-disable-next-line no-console
console.error("Failed to fetch configuration:", error);
}
};
fetchConfig();
}, []);
if (!config) {
// You can return a loader here if you want
return null;
}
return (
<ConfigContext.Provider value={config}>{children}</ConfigContext.Provider>
);
};