Welcome to mirror list, hosted at ThFree Co, Russian Federation.

simple_poll.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25ca98afbe7f6dbbc8d229a4d3e6f07e70aff315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export default (fn, interval = 2000, timeout = 60000) => {
  const startTime = Date.now();

  return new Promise((resolve, reject) => {
    const stop = arg => ((arg instanceof Error) ? reject(arg) : resolve(arg));
    const next = () => {
      if (Date.now() - startTime < timeout) {
        setTimeout(fn.bind(null, next, stop), interval);
      } else {
        reject(new Error('SIMPLE_POLL_TIMEOUT'));
      }
    };
    fn(next, stop);
  });
};