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>
33 lines
972 B
JavaScript
33 lines
972 B
JavaScript
import { createElement } from "react";
|
|
/**
|
|
* WordPress dependencies
|
|
*/
|
|
import { useState, useMemo } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { RovingTabIndexProvider } from './roving-tab-index-context';
|
|
|
|
/**
|
|
* Provider for adding roving tab index behaviors to tree grid structures.
|
|
*
|
|
* @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/components/src/tree-grid/README.md
|
|
*/
|
|
export default function RovingTabIndex({
|
|
children
|
|
}) {
|
|
const [lastFocusedElement, setLastFocusedElement] = useState();
|
|
|
|
// Use `useMemo` to avoid creation of a new object for the providerValue
|
|
// on every render. Only create a new object when the `lastFocusedElement`
|
|
// value changes.
|
|
const providerValue = useMemo(() => ({
|
|
lastFocusedElement,
|
|
setLastFocusedElement
|
|
}), [lastFocusedElement]);
|
|
return createElement(RovingTabIndexProvider, {
|
|
value: providerValue
|
|
}, children);
|
|
}
|
|
//# sourceMappingURL=roving-tab-index.js.map
|