mirror of
https://github.com/sct/overseerr.git
synced 2025-12-29 17:16:18 +01:00
43 lines
995 B
TypeScript
43 lines
995 B
TypeScript
import React from 'react';
|
|
import { PublicSettingsResponse } from '../../server/interfaces/api/settingsInterfaces';
|
|
import useSWR from 'swr';
|
|
|
|
export interface SettingsContextProps {
|
|
currentSettings: PublicSettingsResponse;
|
|
}
|
|
|
|
const defaultSettings = {
|
|
initialized: false,
|
|
applicationTitle: 'Overseerr',
|
|
hideAvailable: false,
|
|
localLogin: false,
|
|
movie4kEnabled: false,
|
|
series4kEnabled: false,
|
|
};
|
|
|
|
export const SettingsContext = React.createContext<SettingsContextProps>({
|
|
currentSettings: defaultSettings,
|
|
});
|
|
|
|
export const SettingsProvider: React.FC<SettingsContextProps> = ({
|
|
children,
|
|
currentSettings,
|
|
}) => {
|
|
const { data, error } = useSWR<PublicSettingsResponse>(
|
|
'/api/v1/settings/public',
|
|
{ initialData: currentSettings }
|
|
);
|
|
|
|
let newSettings = defaultSettings;
|
|
|
|
if (data && !error) {
|
|
newSettings = data;
|
|
}
|
|
|
|
return (
|
|
<SettingsContext.Provider value={{ currentSettings: newSettings }}>
|
|
{children}
|
|
</SettingsContext.Provider>
|
|
);
|
|
};
|