Created
September 24, 2021 01:31
-
-
Save zhangzhibin/dfd192da8c2db6964ee901a642bacaa1 to your computer and use it in GitHub Desktop.
javascript/typescript wait until condition meet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TypeScript/JavaScript 异步等待方法的实现 | |
// refer to https://xmanyou.com/javascript-wait-until-condition-meet-or-timeout/ | |
function waitUntil(condition:()=>boolean, timeout?:number, interval?:number) { | |
if (timeout === void 0) { timeout = 0; } // if not set, wait forever | |
if (interval === void 0) { interval = 50; } // default interval = 50ms | |
let waitHandler; | |
let timeoutHandler; | |
return new Promise<void>(function (resolve, reject) { | |
var waitFn = function () { | |
if (condition()) { | |
if(timeoutHandler){ | |
clearTimeout(timeoutHandler); | |
} | |
resolve(); | |
} | |
else { | |
waitHandler = setTimeout(waitFn, interval); | |
} | |
}; | |
// | |
waitHandler = setTimeout(waitFn, interval); | |
// timeout, if timeout <=0, never timeout | |
if(timeout>0){ | |
timeoutHandler = setTimeout(()=>{ | |
if(waitHandler){ | |
clearTimeout(waitHandler); | |
} | |
reject({ | |
code:"TIMEOUT", | |
message: "timeout" | |
}); | |
}, timeout); | |
} | |
}); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment