Files
formipay/node_modules/marky/lib/marky.cjs.js
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
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>
2026-04-18 17:02:14 +07:00

124 lines
3.5 KiB
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
/* global performance */
var perf = typeof performance !== 'undefined' && performance;
var nowPolyfillForNode;
{
// implementation borrowed from:
// https://github.com/myrne/performance-now/blob/6223a0d544bae1d5578dd7431f78b4ec7d65b15c/src/performance-now.coffee
var hrtime = process.hrtime;
var getNanoSeconds = function () {
var hr = hrtime();
return hr[0] * 1e9 + hr[1]
};
var loadTime = getNanoSeconds();
nowPolyfillForNode = function () { return ((getNanoSeconds() - loadTime) / 1e6); };
}
var now = perf && perf.now
? function () { return perf.now(); }
: nowPolyfillForNode;
function throwIfEmpty (name) {
if (!name) {
throw new Error('name must be non-empty')
}
}
// simple binary sort insertion
function insertSorted (arr, item) {
var low = 0;
var high = arr.length;
var mid;
while (low < high) {
mid = (low + high) >>> 1; // like (num / 2) but faster
if (arr[mid].startTime < item.startTime) {
low = mid + 1;
} else {
high = mid;
}
}
arr.splice(low, 0, item);
}
exports.mark = void 0;
exports.stop = void 0;
exports.getEntries = void 0;
exports.clear = void 0;
if (
perf &&
perf.mark &&
perf.measure &&
perf.getEntriesByName &&
perf.getEntriesByType &&
perf.clearMarks &&
perf.clearMeasures &&
// In Node, we want to detect that this perf/correctness fix [1] is available, which
// landed in Node 16.15.0, 17.6.0, and 18.0.0. However, it's not observable, and
// we don't want to rely on fragile version checks.
// So we can rely on this observable change [2] to add clearResourceTimings, which
// landed a bit later (18.2.0), but is close enough for our purposes.
// [1]: https://github.com/nodejs/node/pull/42032
// [2]: https://github.com/nodejs/node/pull/42725
(perf.clearResourceTimings)
) {
exports.mark = function (name) {
throwIfEmpty(name);
perf.mark(("start " + name));
};
exports.stop = function (name) {
throwIfEmpty(name);
perf.mark(("end " + name));
var measure = perf.measure(name, ("start " + name), ("end " + name));
if (measure) {
// return value from performance.measure not supported in all browsers
// https://developer.mozilla.org/en-US/docs/Web/API/Performance/measure#browser_compatibility
return measure
}
var entries = perf.getEntriesByName(name);
return entries[entries.length - 1]
};
exports.getEntries = function () { return perf.getEntriesByType('measure'); };
exports.clear = function () {
perf.clearMarks();
perf.clearMeasures();
};
} else {
var marks = {};
var entries = [];
exports.mark = function (name) {
throwIfEmpty(name);
var startTime = now();
marks['$' + name] = startTime;
};
exports.stop = function (name) {
throwIfEmpty(name);
var endTime = now();
var startTime = marks['$' + name];
if (!startTime) {
throw new Error(("no known mark: " + name))
}
var entry = {
startTime: startTime,
name: name,
duration: endTime - startTime,
entryType: 'measure'
};
// per the spec this should be at least 150:
// https://www.w3.org/TR/resource-timing-1/#extensions-performance-interface
// we just have no limit, per Chrome and Edge's de-facto behavior
insertSorted(entries, entry);
return entry
};
exports.getEntries = function () { return entries; };
exports.clear = function () {
marks = {};
entries = [];
};
}