mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1ebc8a79cb
Upgrade Prettier to v2 GitOrigin-RevId: 85aa3fa1acb6332c4f58c46165a43d1a51471f33
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
/* eslint-disable
|
|
max-len,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
import App from '../base'
|
|
|
|
export default App.factory('waitFor', function ($q) {
|
|
const waitFor = function (testFunction, timeout, pollInterval) {
|
|
if (pollInterval == null) {
|
|
pollInterval = 500
|
|
}
|
|
const iterationLimit = Math.floor(timeout / pollInterval)
|
|
let iterations = 0
|
|
return $q(function (resolve, reject) {
|
|
let tryIteration
|
|
return (tryIteration = function () {
|
|
if (iterations > iterationLimit) {
|
|
return reject(
|
|
new Error(
|
|
`waiting too long, ${JSON.stringify({ timeout, pollInterval })}`
|
|
)
|
|
)
|
|
}
|
|
iterations += 1
|
|
const result = testFunction()
|
|
if (result != null) {
|
|
return resolve(result)
|
|
} else {
|
|
return setTimeout(tryIteration, pollInterval)
|
|
}
|
|
})()
|
|
})
|
|
}
|
|
return waitFor
|
|
})
|