@octopusdeploy/design-system-components
Version:
The design systems component library.
80 lines (79 loc) • 3.54 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;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.LegacyDialog = LegacyDialog;
const jsx_runtime_1 = require("react/jsx-runtime");
const css_1 = require("@emotion/css");
const Dialog_1 = __importDefault(require("@mui/material/Dialog"));
const design_system_tokens_1 = require("@octopusdeploy/design-system-tokens");
const React = __importStar(require("react"));
/**
* @deprecated
* Deprecated: 28/05/2026
* Replacement: Use workflows in Portal, or Dialog otherwise
* Reason: This component is deprecated and will be removed in a future release.
*/
function LegacyDialog(props) {
const { open, children, fullScreen, dialogWidth = "600px", onExited, keepChildrenMounted } = props;
// Dialogs are used in portals, however because react uses synthetic events, events in the dialog will bubble up the react tree rather than the dom tree.
// This means that clicks inside the dialog can trigger click handlers on parent react components such as redirects on list rows.
// This can be prevented by stopping the event propagation at the root of the dialog.
const stopEventPropagation = React.useCallback((event) => event.stopPropagation(), []);
const shouldMountChildren = open || keepChildrenMounted;
return ((0, jsx_runtime_1.jsx)(Dialog_1.default, { className: (0, css_1.cx)(styles.root, styles.paper(dialogWidth)), maxWidth: false, open: open || false, fullScreen: fullScreen, onClick: stopEventPropagation, slotProps: {
transition: {
onExited,
},
}, children: shouldMountChildren && children }));
}
const styles = {
root: (0, css_1.css)({
"&&": {
zIndex: "auto",
isolation: "isolate",
},
}),
paper: (maxWidth) => (0, css_1.css)({
".MuiDialog-paperWidthFalse": {
maxWidth,
width: "100%",
backgroundColor: design_system_tokens_1.themeTokens.color.dialog.background.primary,
},
}),
};
LegacyDialog.displayName = "Dialog";