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>
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = domReady;
|
|
/**
|
|
* @typedef {() => void} Callback
|
|
*
|
|
* TODO: Remove this typedef and inline `() => void` type.
|
|
*
|
|
* This typedef is used so that a descriptive type is provided in our
|
|
* automatically generated documentation.
|
|
*
|
|
* An in-line type `() => void` would be preferable, but the generated
|
|
* documentation is `null` in that case.
|
|
*
|
|
* @see https://github.com/WordPress/gutenberg/issues/18045
|
|
*/
|
|
|
|
/**
|
|
* Specify a function to execute when the DOM is fully loaded.
|
|
*
|
|
* @param {Callback} callback A function to execute after the DOM is ready.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* import domReady from '@wordpress/dom-ready';
|
|
*
|
|
* domReady( function() {
|
|
* //do something after DOM loads.
|
|
* } );
|
|
* ```
|
|
*
|
|
* @return {void}
|
|
*/
|
|
function domReady(callback) {
|
|
if (typeof document === 'undefined') {
|
|
return;
|
|
}
|
|
if (document.readyState === 'complete' ||
|
|
// DOMContentLoaded + Images/Styles/etc loaded, so we call directly.
|
|
document.readyState === 'interactive' // DOMContentLoaded fires at this point, so we call directly.
|
|
) {
|
|
return void callback();
|
|
}
|
|
|
|
// DOMContentLoaded has not fired yet, delay callback until then.
|
|
document.addEventListener('DOMContentLoaded', callback);
|
|
}
|
|
//# sourceMappingURL=index.js.map
|