awaitFor

Waits until a condition is true, executing a callback function when the condition is met.

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/467272/1235249/awaitFor.js

  1. // ==UserScript==
  2. // @name awaitFor
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Waits until a condition is true, executing a callback function when the condition is met.
  6. // @author IgnaV
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. const awaitFor = (condition, callback, maxAttempts=null, awaitTime=500, maxAwaitTime=10000, ...params) => {
  11. maxAttempts ||= maxAwaitTime / awaitTime;
  12.  
  13. let attempts = 0
  14. const intervalId = setInterval(() => {
  15. const result = condition();
  16. attempts++;
  17. if (attempts >= maxAttempts || result) {
  18. clearInterval(intervalId);
  19. }
  20. if (result) {
  21. callback(result, ...params);
  22. }
  23. }, awaitTime);
  24. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址