mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
Merge branch 'api-polling-catch-error' into 'dev'
Catch error state in API polling. See merge request turris/reforis/foris-js!44
This commit is contained in:
commit
1dcba1dfa8
|
@ -95,13 +95,13 @@ export {
|
|||
|
||||
export function useAPIPolling(endpoint, delay = 1000, until) { // delay ms
|
||||
const [state, setState] = useState({ state: API_STATE.INIT });
|
||||
const [getState, get] = useAPIGet(endpoint);
|
||||
const [getResponse, get] = useAPIGet(endpoint);
|
||||
|
||||
useEffect(() => {
|
||||
if (getState.state === API_STATE.SUCCESS) {
|
||||
setState(getState);
|
||||
if (getResponse.state !== API_STATE.INIT) {
|
||||
setState(getResponse);
|
||||
}
|
||||
}, [getState]);
|
||||
}, [getResponse]);
|
||||
|
||||
useEffect(() => {
|
||||
if (until) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user