Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
34 lines
565 B
JavaScript
34 lines
565 B
JavaScript
'use strict';
|
|
|
|
module.exports = class Queue {
|
|
_queue = [];
|
|
_executing = false;
|
|
_jobRunner = null;
|
|
|
|
constructor(jobRunner) {
|
|
this._jobRunner = jobRunner;
|
|
}
|
|
|
|
enqueue = (...args) => {
|
|
this._queue.push(args);
|
|
this._dequeue();
|
|
};
|
|
|
|
destroy() {
|
|
this._queue.length = 0;
|
|
this._jobRunner = null;
|
|
}
|
|
|
|
_dequeue() {
|
|
if (this._executing || !this._queue.length) return;
|
|
this._executing = true;
|
|
|
|
this._jobRunner(...this._queue.shift());
|
|
|
|
setTimeout(() => {
|
|
this._executing = false;
|
|
this._dequeue();
|
|
});
|
|
}
|
|
};
|