@octopusdeploy/design-system-components
Version:
The design systems component library.
62 lines (61 loc) • 3.11 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultTransitionComponent = void 0;
exports.OverrideTransitionComponents = OverrideTransitionComponents;
exports.useTransitionComponentOverride = useTransitionComponentOverride;
const jsx_runtime_1 = require("react/jsx-runtime");
const react_1 = __importStar(require("react"));
const transitionComponentOverrideContext = react_1.default.createContext(null);
function OverrideTransitionComponents(props) {
return (0, jsx_runtime_1.jsx)(transitionComponentOverrideContext.Provider, { value: exports.DefaultTransitionComponent, children: props.children });
}
function useTransitionComponentOverride() {
return (0, react_1.useContext)(transitionComponentOverrideContext);
}
/**
* This component can be used in place of a Material-ui transition component. It is designed to be used during testing
* It does not invoke the onEnter/onExit/etc. callbacks of a normal transition component and instead always renders its children
* This makes it ideal for testing
* Some components (eg Modal from material-ui) will unmount their children asynchronously due to their usage of Transitions
* By providing a custom component that does not invoke any of the on* methods from other transitions, we can bypass this logic
* and force components like Modal to unmount their children synchronously
* @param props
* @constructor
*/
exports.DefaultTransitionComponent = (0, react_1.forwardRef)((props, ref) => {
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: props.in && ((0, jsx_runtime_1.jsx)("div", { ref: ref, tabIndex: 0, children: props.children })) }));
});
exports.DefaultTransitionComponent.displayName = "DefaultTransitionComponent";