1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add useWebConfig hook

This commit is contained in:
Bill Thornton 2023-05-05 11:47:08 -04:00
parent 5f86d89ca6
commit 865df884fd
3 changed files with 70 additions and 7 deletions

View file

@ -0,0 +1,40 @@
import React, { createContext, FC, useContext, useEffect, useState } from 'react';
import type { WebConfig } from '../types/webConfig';
import defaultConfig from '../config.json';
import fetchLocal from '../utils/fetchLocal';
export const WebConfigContext = createContext<WebConfig>(defaultConfig);
export const useWebConfig = () => useContext(WebConfigContext);
export const WebConfigProvider: FC = ({ children }) => {
const [ config, setConfig ] = useState<WebConfig>(defaultConfig);
useEffect(() => {
const fetchConfig = async () => {
try {
const response = await fetchLocal('config.json', { cache: 'no-cache' });
if (!response.ok) {
throw new Error('network response was not ok');
}
const configData = await response.json();
setConfig(configData);
} catch (err) {
console.warn('[WebConfigProvider] failed to fetch config file', err);
}
};
fetchConfig()
.catch(() => {
// This should never happen since fetchConfig catches errors internally
});
}, [ setConfig ]);
return (
<WebConfigContext.Provider value={config}>
{children}
</WebConfigContext.Provider>
);
};