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>
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
const { parse, inspect } = require('../../lib/index.cjs');
|
|
|
|
const source = `
|
|
/**
|
|
* Typedef with multi-line property type.
|
|
*
|
|
* @typedef {object} MyType
|
|
* @property {function(
|
|
* number,
|
|
* {x:string}
|
|
* )} numberEater Method
|
|
* which takes a number.
|
|
*/`;
|
|
|
|
test('default', () => {
|
|
const parsed = parse(source);
|
|
// console.log(inspect(parsed[0]));
|
|
expect(parsed[0].tags[1]).toMatchObject({
|
|
tag: 'property',
|
|
type: 'function(number,{x:string})',
|
|
name: 'numberEater',
|
|
description: 'Method which takes a number.',
|
|
problems: [],
|
|
});
|
|
});
|
|
|
|
test('preserve', () => {
|
|
const parsed = parse(source, { spacing: 'preserve' });
|
|
// console.log(inspect(parsed[0]));
|
|
expect(parsed[0].tags[1]).toMatchObject({
|
|
tag: 'property',
|
|
type: 'function(\n number,\n {x:string}\n)',
|
|
name: 'numberEater',
|
|
description: 'Method\n which takes a number.',
|
|
problems: [],
|
|
});
|
|
});
|
|
|
|
test('compact', () => {
|
|
const parsed = parse(source, { spacing: 'compact' });
|
|
// console.log(inspect(parsed[0]));
|
|
expect(parsed[0].tags[1]).toMatchObject({
|
|
tag: 'property',
|
|
type: 'function(number,{x:string})',
|
|
name: 'numberEater',
|
|
description: 'Method which takes a number.',
|
|
problems: [],
|
|
});
|
|
});
|