open-vault/ui/app/helpers/-date-base.js

35 lines
738 B
JavaScript

import { run } from '@ember/runloop';
import Helper from '@ember/component/helper';
export default Helper.extend({
disableInterval: false,
compute(value, { interval }) {
if (this.disableInterval) {
return;
}
this.clearTimer();
if (interval) {
/*
* NOTE: intentionally a setTimeout so tests do not block on it
* as the run loop queue is never clear so tests will stay locked waiting
* for queue to clear.
*/
this.intervalTimer = setTimeout(() => {
run(() => this.recompute());
}, parseInt(interval, 10));
}
},
clearTimer() {
clearTimeout(this.intervalTimer);
},
destroy() {
this.clearTimer();
this._super(...arguments);
},
});