export async function sleep(time: number) { await new Promise((resolve) => { setTimeout(() => resolve(null), time); }); } export function downloadAsFile(filename: string, content: string) { const file = new Blob([content], { type: "text/plain", }); const fileURL = URL.createObjectURL(file); downloadUsingAnchor(fileURL, filename); } export function downloadUsingAnchor(link: string, name: string) { const a = document.createElement("a"); a.style.display = "none"; a.href = link; a.download = name; document.body.appendChild(a); a.click(); URL.revokeObjectURL(link); a.remove(); } export function isPromise(obj: T | Promise): obj is Promise { return obj && typeof (obj as any).then === "function"; } export async function retryAsyncFunction( request: (abort?: () => void) => Promise, ): Promise { const waitTimeBeforeNextTry = [2000, 5000, 10000]; for ( let attemptNumber = 0; attemptNumber <= waitTimeBeforeNextTry.length; attemptNumber++ ) { try { const resp = await request(); return resp; } catch (e) { if (attemptNumber === waitTimeBeforeNextTry.length) { throw e; } await sleep(waitTimeBeforeNextTry[attemptNumber]); } } } export const promiseWithTimeout = async ( request: Promise, timeout: number, ): Promise => { const timeoutRef = { current: null }; const rejectOnTimeout = new Promise((_, reject) => { timeoutRef.current = setTimeout( () => reject(new Error("Operation timed out")), timeout, ); }); const requestWithTimeOutCancellation = async () => { const resp = await request; clearTimeout(timeoutRef.current); return resp; }; return await Promise.race([ requestWithTimeOutCancellation(), rejectOnTimeout, ]); };