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>
31 lines
691 B
Markdown
31 lines
691 B
Markdown
### Install
|
|
|
|
```shell
|
|
npm install --save detect-node
|
|
```
|
|
|
|
### Usage:
|
|
|
|
```js
|
|
var isNode = require('detect-node');
|
|
|
|
if (isNode) {
|
|
console.log("Running under Node.JS");
|
|
} else {
|
|
alert("Hello from browser (or whatever not-a-node env)");
|
|
}
|
|
```
|
|
|
|
The check is performed as:
|
|
```js
|
|
module.exports = false;
|
|
|
|
// Only Node.JS has a process variable that is of [[Class]] process
|
|
try {
|
|
module.exports = Object.prototype.toString.call(global.process) === '[object process]'
|
|
} catch(e) {}
|
|
|
|
```
|
|
|
|
Thanks to Ingvar Stepanyan for the initial idea. This check is both **the most reliable I could find** and it does not use `process` env directly, which would cause browserify to include it into the build.
|