mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
98 lines
2.7 KiB
TypeScript
98 lines
2.7 KiB
TypeScript
import React, { useEffect } from "react";
|
|
import classnames from "classnames";
|
|
import Button from "components/buttons/Button/Button";
|
|
import Icon from "components/Icon/Icon";
|
|
|
|
const baseClass = "modal";
|
|
|
|
type ModalWidth = "medium" | "large" | "xlarge" | "auto";
|
|
|
|
export interface IModalProps {
|
|
title: string | JSX.Element;
|
|
children: JSX.Element;
|
|
onExit: () => void;
|
|
onEnter?: () => void;
|
|
/** default 650px, large 800px, xlarge 850px, auto auto-width */
|
|
width?: ModalWidth;
|
|
/** isHidden can be set true to hide the modal when opening another modal */
|
|
isHidden?: boolean;
|
|
/** isLoading can be set true to enable targeting elements by loading state */
|
|
isLoading?: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
const Modal = ({
|
|
title,
|
|
children,
|
|
onExit,
|
|
onEnter,
|
|
width = "medium",
|
|
isHidden = false,
|
|
isLoading = false,
|
|
className,
|
|
}: IModalProps): JSX.Element => {
|
|
useEffect(() => {
|
|
const closeWithEscapeKey = (e: KeyboardEvent) => {
|
|
if (e.key === "Escape") {
|
|
onExit();
|
|
}
|
|
};
|
|
|
|
document.addEventListener("keydown", closeWithEscapeKey);
|
|
|
|
return () => {
|
|
document.removeEventListener("keydown", closeWithEscapeKey);
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (onEnter) {
|
|
const closeOrSaveWithEnterKey = (event: KeyboardEvent) => {
|
|
if (event.code === "Enter" || event.code === "NumpadEnter") {
|
|
event.preventDefault();
|
|
onEnter();
|
|
}
|
|
};
|
|
|
|
document.addEventListener("keydown", closeOrSaveWithEnterKey);
|
|
return () => {
|
|
document.removeEventListener("keydown", closeOrSaveWithEnterKey);
|
|
};
|
|
}
|
|
}, [onEnter]);
|
|
|
|
const modalContainerClassName = classnames(
|
|
`${baseClass}__modal_container`,
|
|
className,
|
|
{ [`${baseClass}__modal_container__medium`]: width === "medium" },
|
|
{ [`${baseClass}__modal_container__large`]: width === "large" },
|
|
{ [`${baseClass}__modal_container__xlarge`]: width === "xlarge" },
|
|
{ [`${baseClass}__modal_container__auto`]: width === "auto" }
|
|
);
|
|
|
|
return (
|
|
<div
|
|
className={`${baseClass}__background ${
|
|
isHidden ? `${baseClass}__hidden` : ""
|
|
}`}
|
|
>
|
|
<div
|
|
className={`${modalContainerClassName} ${
|
|
isLoading ? `${className}__loading` : ""
|
|
}`}
|
|
>
|
|
<div className={`${baseClass}__header`}>
|
|
<span>{title}</span>
|
|
<div className={`${baseClass}__ex`}>
|
|
<Button className="button button--unstyled" onClick={onExit}>
|
|
<Icon name="close" color="core-fleet-black" size="medium" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div className={`${baseClass}__content`}>{children}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Modal;
|