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
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Given an object of problem messages, return another
|
|
* that provides the same messages postfixed with the rule
|
|
* that has been violated.
|
|
*
|
|
* @template {import('stylelint').RuleMessages} T
|
|
* @template {{[K in keyof T]: T[K]}} R
|
|
* @param {string} ruleName
|
|
* @param {T} messages - Object whose keys are message identifiers
|
|
* and values are either message strings or functions that return message strings
|
|
* @returns {R} New message object, whose messages will be marked with the rule name
|
|
*/
|
|
function ruleMessages(ruleName, messages) {
|
|
/** @typedef {keyof T} K */
|
|
const newMessages = /** @type {R} */ ({});
|
|
|
|
for (const [messageId, messageText] of /** @type {[K, T[K]][]} */ (Object.entries(messages))) {
|
|
if (typeof messageText === 'string') {
|
|
newMessages[messageId] = /** @type {R[K]} */ (`${messageText} (${ruleName})`);
|
|
} else {
|
|
newMessages[messageId] = /** @type {R[K]} */ (
|
|
(...args) => `${messageText(...args)} (${ruleName})`
|
|
);
|
|
}
|
|
}
|
|
|
|
return newMessages;
|
|
}
|
|
|
|
module.exports = /** @type {typeof import('stylelint').utils.ruleMessages} */ (ruleMessages);
|