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>
74 lines
1.5 KiB
JavaScript
74 lines
1.5 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import classnames from 'classnames';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
|
|
/**
|
|
* @param type The animation type
|
|
* @return Default origin
|
|
*/
|
|
function getDefaultOrigin(type) {
|
|
return type === 'appear' ? 'top' : 'left';
|
|
}
|
|
|
|
/**
|
|
* @param options
|
|
*
|
|
* @return ClassName that applies the animations
|
|
*/
|
|
export function getAnimateClassName(options) {
|
|
if (options.type === 'loading') {
|
|
return classnames('components-animate__loading');
|
|
}
|
|
const {
|
|
type,
|
|
origin = getDefaultOrigin(type)
|
|
} = options;
|
|
if (type === 'appear') {
|
|
const [yAxis, xAxis = 'center'] = origin.split(' ');
|
|
return classnames('components-animate__appear', {
|
|
['is-from-' + xAxis]: xAxis !== 'center',
|
|
['is-from-' + yAxis]: yAxis !== 'middle'
|
|
});
|
|
}
|
|
if (type === 'slide-in') {
|
|
return classnames('components-animate__slide-in', 'is-from-' + origin);
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* Simple interface to introduce animations to components.
|
|
*
|
|
* ```jsx
|
|
* import { Animate, Notice } from '@wordpress/components';
|
|
*
|
|
* const MyAnimatedNotice = () => (
|
|
* <Animate type="slide-in" options={ { origin: 'top' } }>
|
|
* { ( { className } ) => (
|
|
* <Notice className={ className } status="success">
|
|
* <p>Animation finished.</p>
|
|
* </Notice>
|
|
* ) }
|
|
* </Animate>
|
|
* );
|
|
* ```
|
|
*/
|
|
export function Animate({
|
|
type,
|
|
options = {},
|
|
children
|
|
}) {
|
|
return children({
|
|
className: getAnimateClassName({
|
|
type,
|
|
...options
|
|
})
|
|
});
|
|
}
|
|
export default Animate;
|
|
//# sourceMappingURL=index.js.map
|