mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-23 16:58:27 +01:00
9233b3dbd7
Co-authored-by: Sylvia Crowe <software@oneirocosm.com> Co-authored-by: sawka <mike.sawka@gmail.com>
122 lines
3.3 KiB
TypeScript
122 lines
3.3 KiB
TypeScript
// Copyright 2023, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { Button } from "@/app/element/button";
|
|
import ReactDOM from "react-dom";
|
|
|
|
import "./modal.less";
|
|
|
|
interface ModalHeaderProps {
|
|
title: React.ReactNode;
|
|
description?: string;
|
|
onClose?: () => void;
|
|
}
|
|
|
|
const ModalHeader = ({ onClose, title, description }: ModalHeaderProps) => (
|
|
<header className="modal-header">
|
|
{typeof title === "string" ? <h3 className="modal-title">{title}</h3> : title}
|
|
{description && <p>{description}</p>}
|
|
{onClose && (
|
|
<Button className="secondary ghost" onClick={onClose} title="Close (ESC)">
|
|
<i className="fa-sharp fa-solid fa-xmark"></i>
|
|
</Button>
|
|
)}
|
|
</header>
|
|
);
|
|
|
|
interface ModalContentProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
function ModalContent({ children }: ModalContentProps) {
|
|
return <div className="modal-content">{children}</div>;
|
|
}
|
|
|
|
interface ModalFooterProps {
|
|
okLabel?: string;
|
|
cancelLabel?: string;
|
|
onOk?: () => void;
|
|
onCancel?: () => void;
|
|
}
|
|
|
|
const ModalFooter = ({ onCancel, onOk, cancelLabel = "Cancel", okLabel = "Ok" }: ModalFooterProps) => (
|
|
<footer className="modal-footer">
|
|
{onCancel && (
|
|
<Button className="secondary" onClick={onCancel}>
|
|
{cancelLabel}
|
|
</Button>
|
|
)}
|
|
{onOk && (
|
|
<Button className="primary" onClick={onOk}>
|
|
{okLabel}
|
|
</Button>
|
|
)}
|
|
</footer>
|
|
);
|
|
|
|
interface ModalProps {
|
|
title: string;
|
|
children?: React.ReactNode;
|
|
description?: string;
|
|
okLabel?: string;
|
|
cancelLabel?: string;
|
|
className?: string;
|
|
onClickBackdrop?: () => void;
|
|
onOk?: () => void;
|
|
onCancel?: () => void;
|
|
onClose?: () => void;
|
|
}
|
|
|
|
const Modal = ({
|
|
children,
|
|
className,
|
|
title,
|
|
description,
|
|
cancelLabel,
|
|
okLabel,
|
|
onCancel,
|
|
onOk,
|
|
onClose,
|
|
onClickBackdrop,
|
|
}: ModalProps) => {
|
|
const renderBackdrop = (onClick) => <div className="modal-backdrop" onClick={onClick}></div>;
|
|
|
|
const renderModal = () => (
|
|
<div className="modal-wrapper">
|
|
{renderBackdrop(onClickBackdrop)}
|
|
<div className={`modal ${className}`}>
|
|
<ModalHeader title={title} onClose={onClose} description={description} />
|
|
<ModalContent>{children}</ModalContent>
|
|
<ModalFooter onCancel={onCancel} onOk={onOk} cancelLabel={cancelLabel} okLabel={okLabel} />
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return ReactDOM.createPortal(renderModal(), document.getElementById("main"));
|
|
};
|
|
|
|
interface FlexiModalProps {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
onClickBackdrop?: () => void;
|
|
}
|
|
|
|
const FlexiModal = ({ children, className, onClickBackdrop }: FlexiModalProps) => {
|
|
const renderBackdrop = (onClick) => <div className="modal-backdrop" onClick={onClick}></div>;
|
|
|
|
const renderModal = () => (
|
|
<div className="modal-wrapper">
|
|
{renderBackdrop(onClickBackdrop)}
|
|
<div className={`modal ${className}`}>{children}</div>
|
|
</div>
|
|
);
|
|
|
|
return ReactDOM.createPortal(renderModal(), document.getElementById("main"));
|
|
};
|
|
|
|
FlexiModal.Header = ModalHeader;
|
|
FlexiModal.Content = ModalContent;
|
|
FlexiModal.Footer = ModalFooter;
|
|
|
|
export { FlexiModal, Modal };
|