27 lines
559 B
TypeScript
27 lines
559 B
TypeScript
import React from 'react'
|
|
|
|
interface Config {
|
|
apiUrl: string
|
|
}
|
|
|
|
async function loadConfig(): Promise<Config> {
|
|
const response = await fetch('./config.json')
|
|
const config = await response.json()
|
|
return config
|
|
}
|
|
|
|
let _configPromise: Promise<Config> = loadConfig()
|
|
let _configCache: null | Config = null
|
|
|
|
export function useConfig() {
|
|
const [config, setConfig] = React.useState<Config>(_configCache)
|
|
React.useEffect(() => {
|
|
if (!_configCache) {
|
|
_configPromise.then(setConfig)
|
|
}
|
|
}, [])
|
|
return config
|
|
}
|
|
|
|
export default _configPromise
|