106 lines
5.2 KiB
JavaScript
106 lines
5.2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.GridSignature = void 0;
|
|
exports.createUseGridApiEventHandler = createUseGridApiEventHandler;
|
|
exports.useGridApiEventHandler = exports.unstable_resetCleanupTracking = void 0;
|
|
exports.useGridApiOptionHandler = useGridApiOptionHandler;
|
|
var React = _interopRequireWildcard(require("react"));
|
|
var _TimerBasedCleanupTracking = require("../../utils/cleanupTracking/TimerBasedCleanupTracking");
|
|
var _FinalizationRegistryBasedCleanupTracking = require("../../utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking");
|
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
/**
|
|
* Signal to the underlying logic what version of the public component API
|
|
* of the data grid is exposed.
|
|
*/
|
|
var GridSignature = exports.GridSignature = /*#__PURE__*/function (GridSignature) {
|
|
GridSignature["DataGrid"] = "DataGrid";
|
|
GridSignature["DataGridPro"] = "DataGridPro";
|
|
return GridSignature;
|
|
}(GridSignature || {});
|
|
// We use class to make it easier to detect in heap snapshots by name
|
|
class ObjectToBeRetainedByReact {}
|
|
|
|
// Based on https://github.com/Bnaya/use-dispose-uncommitted/blob/main/src/finalization-registry-based-impl.ts
|
|
// Check https://github.com/facebook/react/issues/15317 to get more information
|
|
function createUseGridApiEventHandler(registryContainer) {
|
|
let cleanupTokensCounter = 0;
|
|
return function useGridApiEventHandler(apiRef, eventName, handler, options) {
|
|
if (registryContainer.registry === null) {
|
|
registryContainer.registry = typeof FinalizationRegistry !== 'undefined' ? new _FinalizationRegistryBasedCleanupTracking.FinalizationRegistryBasedCleanupTracking() : new _TimerBasedCleanupTracking.TimerBasedCleanupTracking();
|
|
}
|
|
const [objectRetainedByReact] = React.useState(new ObjectToBeRetainedByReact());
|
|
const subscription = React.useRef(null);
|
|
const handlerRef = React.useRef();
|
|
handlerRef.current = handler;
|
|
const cleanupTokenRef = React.useRef(null);
|
|
if (!subscription.current && handlerRef.current) {
|
|
const enhancedHandler = (params, event, details) => {
|
|
if (!event.defaultMuiPrevented) {
|
|
handlerRef.current?.(params, event, details);
|
|
}
|
|
};
|
|
subscription.current = apiRef.current.subscribeEvent(eventName, enhancedHandler, options);
|
|
cleanupTokensCounter += 1;
|
|
cleanupTokenRef.current = {
|
|
cleanupToken: cleanupTokensCounter
|
|
};
|
|
registryContainer.registry.register(objectRetainedByReact,
|
|
// The callback below will be called once this reference stops being retained
|
|
() => {
|
|
subscription.current?.();
|
|
subscription.current = null;
|
|
cleanupTokenRef.current = null;
|
|
}, cleanupTokenRef.current);
|
|
} else if (!handlerRef.current && subscription.current) {
|
|
subscription.current();
|
|
subscription.current = null;
|
|
if (cleanupTokenRef.current) {
|
|
registryContainer.registry.unregister(cleanupTokenRef.current);
|
|
cleanupTokenRef.current = null;
|
|
}
|
|
}
|
|
React.useEffect(() => {
|
|
if (!subscription.current && handlerRef.current) {
|
|
const enhancedHandler = (params, event, details) => {
|
|
if (!event.defaultMuiPrevented) {
|
|
handlerRef.current?.(params, event, details);
|
|
}
|
|
};
|
|
subscription.current = apiRef.current.subscribeEvent(eventName, enhancedHandler, options);
|
|
}
|
|
if (cleanupTokenRef.current && registryContainer.registry) {
|
|
// If the effect was called, it means that this render was committed
|
|
// so we can trust the cleanup function to remove the listener.
|
|
registryContainer.registry.unregister(cleanupTokenRef.current);
|
|
cleanupTokenRef.current = null;
|
|
}
|
|
return () => {
|
|
subscription.current?.();
|
|
subscription.current = null;
|
|
};
|
|
}, [apiRef, eventName, options]);
|
|
};
|
|
}
|
|
const registryContainer = {
|
|
registry: null
|
|
};
|
|
|
|
// TODO: move to @mui/x-data-grid/internals
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
const unstable_resetCleanupTracking = () => {
|
|
registryContainer.registry?.reset();
|
|
registryContainer.registry = null;
|
|
};
|
|
exports.unstable_resetCleanupTracking = unstable_resetCleanupTracking;
|
|
const useGridApiEventHandler = exports.useGridApiEventHandler = createUseGridApiEventHandler(registryContainer);
|
|
const optionsSubscriberOptions = {
|
|
isFirst: true
|
|
};
|
|
function useGridApiOptionHandler(apiRef, eventName, handler) {
|
|
// Validate that only one per event name?
|
|
useGridApiEventHandler(apiRef, eventName, handler, optionsSubscriberOptions);
|
|
} |