waveterm/frontend/app/element/modal.tsx
Evan Simkowitz 2e91ee843c
Switch from Less to Scss (#1335)
Less hasn't received an update in over a year and the parser is missing
some modern syntax like relative colors so this switches us to scss
2024-11-21 16:05:04 -08:00

84 lines
2.2 KiB
TypeScript

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
import { Button } from "@/element/button";
import React from "react";
import "./modal.scss";
interface ModalProps {
id?: string;
children: React.ReactNode;
onClickOut: () => void;
}
function Modal({ children, onClickOut, id = "modal", ...otherProps }: ModalProps) {
const handleOutsideClick = (e: React.SyntheticEvent<HTMLDivElement>) => {
if (typeof onClickOut === "function" && (e.target as Element).className === "modal-container") {
onClickOut();
}
};
return (
<div className="modal-container" onClick={handleOutsideClick}>
<dialog {...otherProps} id={id} className="modal">
{children}
</dialog>
</div>
);
}
interface ModalContentProps {
children: React.ReactNode;
}
function ModalContent({ children }: ModalContentProps) {
return <div className="modal-content">{children}</div>;
}
interface ModalHeaderProps {
title: React.ReactNode;
description?: string;
}
function ModalHeader({ title, description }: ModalHeaderProps) {
return (
<header className="modal-header">
{typeof title === "string" ? <h3 className="modal-title">{title}</h3> : title}
{description && <p>{description}</p>}
</header>
);
}
interface ModalFooterProps {
children: React.ReactNode;
}
function ModalFooter({ children }: ModalFooterProps) {
return <footer className="modal-footer">{children}</footer>;
}
interface WaveModalProps {
title: string;
description?: string;
id?: string;
onSubmit: () => void;
onCancel: () => void;
buttonLabel?: string;
children: React.ReactNode;
}
function WaveModal({ title, description, onSubmit, onCancel, buttonLabel = "Ok", children }: WaveModalProps) {
return (
<Modal onClickOut={onCancel}>
<ModalHeader title={title} description={description} />
<ModalContent>{children}</ModalContent>
<ModalFooter>
<Button onClick={onSubmit}>{buttonLabel}</Button>
</ModalFooter>
</Modal>
);
}
export { WaveModal };