mirror of
				https://gitlab.nic.cz/turris/reforis/foris-js.git
				synced 2025-11-03 23:00:31 +01:00 
			
		
		
		
	Add default delay.
This commit is contained in:
		@@ -5,14 +5,10 @@
 | 
			
		||||
 * See /LICENSE for more information.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
import {
 | 
			
		||||
    useCallback, useEffect, useReducer, useState,
 | 
			
		||||
} from "react";
 | 
			
		||||
import { useCallback, useEffect, useReducer, useState, } from "react";
 | 
			
		||||
 | 
			
		||||
import { ForisURLs } from "forisUrls";
 | 
			
		||||
import {
 | 
			
		||||
    API_ACTIONS, API_METHODS, API_STATE, getErrorPayload, HEADERS, TIMEOUT,
 | 
			
		||||
} from "./utils";
 | 
			
		||||
import { API_ACTIONS, API_METHODS, API_STATE, getErrorPayload, HEADERS, TIMEOUT, } from "./utils";
 | 
			
		||||
 | 
			
		||||
const DATA_METHODS = ["POST", "PATCH", "PUT"];
 | 
			
		||||
 | 
			
		||||
@@ -93,7 +89,7 @@ export {
 | 
			
		||||
    useAPIGet, useAPIPost, useAPIPatch, useAPIPut, useAPIDelete,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export function useAPIPolling(endpoint, delay) {
 | 
			
		||||
export function useAPIPolling(endpoint, delay = 1000) { // delay ms
 | 
			
		||||
    const [state, setState] = useState({ state: API_STATE.INIT });
 | 
			
		||||
    const [getState, get] = useAPIGet(endpoint);
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user