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>
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var callBound = require('call-bound');
|
|
|
|
var ToLength = require('./ToLength');
|
|
var ToString = require('./ToString');
|
|
|
|
var $strSlice = callBound('String.prototype.slice');
|
|
|
|
// https://262.ecma-international.org/11.0/#sec-stringpad
|
|
|
|
module.exports = function StringPad(O, maxLength, fillString, placement) {
|
|
if (placement !== 'start' && placement !== 'end') {
|
|
throw new $TypeError('Assertion failed: `placement` must be "start" or "end"');
|
|
}
|
|
var S = ToString(O);
|
|
var intMaxLength = ToLength(maxLength);
|
|
var stringLength = S.length;
|
|
if (intMaxLength <= stringLength) {
|
|
return S;
|
|
}
|
|
var filler = typeof fillString === 'undefined' ? ' ' : ToString(fillString);
|
|
if (filler === '') {
|
|
return S;
|
|
}
|
|
var fillLen = intMaxLength - stringLength;
|
|
|
|
// the String value consisting of repeated concatenations of filler truncated to length fillLen.
|
|
var truncatedStringFiller = '';
|
|
while (truncatedStringFiller.length < fillLen) {
|
|
truncatedStringFiller += filler;
|
|
}
|
|
truncatedStringFiller = $strSlice(truncatedStringFiller, 0, fillLen);
|
|
|
|
if (placement === 'start') {
|
|
return truncatedStringFiller + S;
|
|
}
|
|
return S + truncatedStringFiller;
|
|
};
|