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>
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.cleanForSlug = cleanForSlug;
|
|
var _removeAccents = _interopRequireDefault(require("remove-accents"));
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
|
|
/**
|
|
* Performs some basic cleanup of a string for use as a post slug.
|
|
*
|
|
* This replicates some of what `sanitize_title()` does in WordPress core, but
|
|
* is only designed to approximate what the slug will be.
|
|
*
|
|
* Converts Latin-1 Supplement and Latin Extended-A letters to basic Latin
|
|
* letters. Removes combining diacritical marks. Converts whitespace, periods,
|
|
* and forward slashes to hyphens. Removes any remaining non-word characters
|
|
* except hyphens. Converts remaining string to lowercase. It does not account
|
|
* for octets, HTML entities, or other encoded characters.
|
|
*
|
|
* @param {string} string Title or slug to be processed.
|
|
*
|
|
* @return {string} Processed string.
|
|
*/
|
|
function cleanForSlug(string) {
|
|
if (!string) {
|
|
return '';
|
|
}
|
|
return (0, _removeAccents.default)(string)
|
|
// Convert each group of whitespace, periods, and forward slashes to a hyphen.
|
|
.replace(/[\s\./]+/g, '-')
|
|
// Remove anything that's not a letter, number, underscore or hyphen.
|
|
.replace(/[^\p{L}\p{N}_-]+/gu, '')
|
|
// Convert to lowercase
|
|
.toLowerCase()
|
|
// Replace multiple hyphens with a single one.
|
|
.replace(/-+/g, '-')
|
|
// Remove any remaining leading or trailing hyphens.
|
|
.replace(/(^-+)|(-+$)/g, '');
|
|
}
|
|
//# sourceMappingURL=clean-for-slug.js.map
|