vault/ui/app/helpers/-date-base.js
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

47 lines
1 KiB
JavaScript

/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
import { run } from '@ember/runloop';
import Helper from '@ember/component/helper';
import Ember from 'ember';
export default Helper.extend({
disableInterval: false,
compute(value, { interval }) {
if (Ember.testing) {
// issues with flaky test, suspect it has to the do with the run loop not being cleared as intended farther down.
return;
}
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);
},
});