2018-12-20 14:14:08 -05:00
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2018-12-20 14:14:05 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-08-27 11:28:15 -04:00
|
|
|
const { waitForDb } = require('../../../../app/js/mongodb')
|
2018-12-20 14:14:11 -05:00
|
|
|
const app = require('../../../../app')
|
2018-01-29 07:01:26 -05:00
|
|
|
|
2018-12-20 14:14:05 -05:00
|
|
|
module.exports = {
|
2018-12-20 14:14:11 -05:00
|
|
|
running: false,
|
|
|
|
initing: false,
|
|
|
|
callbacks: [],
|
|
|
|
ensureRunning(callback) {
|
|
|
|
if (callback == null) {
|
2021-10-27 05:49:18 -04:00
|
|
|
callback = function () {}
|
2018-12-20 14:14:11 -05:00
|
|
|
}
|
|
|
|
if (this.running) {
|
|
|
|
return callback()
|
|
|
|
} else if (this.initing) {
|
|
|
|
return this.callbacks.push(callback)
|
2020-08-27 11:28:15 -04:00
|
|
|
}
|
|
|
|
this.initing = true
|
|
|
|
this.callbacks.push(callback)
|
|
|
|
waitForDb().then(() => {
|
2022-01-07 05:41:23 -05:00
|
|
|
app.listen(3010, 'localhost', error => {
|
2018-12-20 14:14:11 -05:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
this.running = true
|
2022-01-07 05:41:57 -05:00
|
|
|
for (callback of Array.from(this.callbacks)) {
|
|
|
|
callback()
|
|
|
|
}
|
2018-12-20 14:14:11 -05:00
|
|
|
})
|
2020-08-27 11:28:15 -04:00
|
|
|
})
|
2021-07-13 07:04:48 -04:00
|
|
|
},
|
2018-12-20 14:14:11 -05:00
|
|
|
}
|