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>
36 lines
1014 B
JavaScript
36 lines
1014 B
JavaScript
/**
|
|
* Create a valid URL from parsed URL parts.
|
|
* @param {import('./getSocketUrlParts').SocketUrlParts} urlParts The parsed URL parts.
|
|
* @param {import('./getWDSMetadata').WDSMetaObj} [metadata] The parsed WDS metadata object.
|
|
* @returns {string} The generated URL.
|
|
*/
|
|
function urlFromParts(urlParts, metadata) {
|
|
if (typeof metadata === 'undefined') {
|
|
metadata = {};
|
|
}
|
|
|
|
let fullProtocol = 'http:';
|
|
if (urlParts.protocol) {
|
|
fullProtocol = urlParts.protocol;
|
|
}
|
|
if (metadata.enforceWs) {
|
|
fullProtocol = fullProtocol.replace(/^(?:http|.+-extension|file)/i, 'ws');
|
|
}
|
|
|
|
fullProtocol = fullProtocol + '//';
|
|
|
|
let fullHost = urlParts.hostname;
|
|
if (urlParts.auth) {
|
|
const fullAuth = urlParts.auth.split(':').map(encodeURIComponent).join(':') + '@';
|
|
fullHost = fullAuth + fullHost;
|
|
}
|
|
if (urlParts.port) {
|
|
fullHost = fullHost + ':' + urlParts.port;
|
|
}
|
|
|
|
const url = new URL(urlParts.pathname, fullProtocol + fullHost);
|
|
return url.href;
|
|
}
|
|
|
|
module.exports = urlFromParts;
|