Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
82 lines
2.5 KiB
Plaintext
82 lines
2.5 KiB
Plaintext
import { Action } from './Action';
|
|
import { intervalProvider } from './intervalProvider';
|
|
import { arrRemove } from '../util/arrRemove';
|
|
export class AsyncAction extends Action {
|
|
constructor(scheduler, work) {
|
|
super(scheduler, work);
|
|
this.scheduler = scheduler;
|
|
this.work = work;
|
|
this.pending = false;
|
|
}
|
|
schedule(state, delay = 0) {
|
|
var _a;
|
|
if (this.closed) {
|
|
return this;
|
|
}
|
|
this.state = state;
|
|
const id = this.id;
|
|
const scheduler = this.scheduler;
|
|
if (id != null) {
|
|
this.id = this.recycleAsyncId(scheduler, id, delay);
|
|
}
|
|
this.pending = true;
|
|
this.delay = delay;
|
|
this.id = (_a = this.id) !== null && _a !== void 0 ? _a : this.requestAsyncId(scheduler, this.id, delay);
|
|
return this;
|
|
}
|
|
requestAsyncId(scheduler, _id, delay = 0) {
|
|
return intervalProvider.setInterval(scheduler.flush.bind(scheduler, this), delay);
|
|
}
|
|
recycleAsyncId(_scheduler, id, delay = 0) {
|
|
if (delay != null && this.delay === delay && this.pending === false) {
|
|
return id;
|
|
}
|
|
if (id != null) {
|
|
intervalProvider.clearInterval(id);
|
|
}
|
|
return undefined;
|
|
}
|
|
execute(state, delay) {
|
|
if (this.closed) {
|
|
return new Error('executing a cancelled action');
|
|
}
|
|
this.pending = false;
|
|
const error = this._execute(state, delay);
|
|
if (error) {
|
|
return error;
|
|
}
|
|
else if (this.pending === false && this.id != null) {
|
|
this.id = this.recycleAsyncId(this.scheduler, this.id, null);
|
|
}
|
|
}
|
|
_execute(state, _delay) {
|
|
let errored = false;
|
|
let errorValue;
|
|
try {
|
|
this.work(state);
|
|
}
|
|
catch (e) {
|
|
errored = true;
|
|
errorValue = e ? e : new Error('Scheduled action threw falsy error');
|
|
}
|
|
if (errored) {
|
|
this.unsubscribe();
|
|
return errorValue;
|
|
}
|
|
}
|
|
unsubscribe() {
|
|
if (!this.closed) {
|
|
const { id, scheduler } = this;
|
|
const { actions } = scheduler;
|
|
this.work = this.state = this.scheduler = null;
|
|
this.pending = false;
|
|
arrRemove(actions, this);
|
|
if (id != null) {
|
|
this.id = this.recycleAsyncId(scheduler, id, null);
|
|
}
|
|
this.delay = null;
|
|
super.unsubscribe();
|
|
}
|
|
}
|
|
}
|
|
//# sourceMappingURL=AsyncAction.js.map |