mirror of
https://github.com/zadam/trilium.git
synced 2026-01-10 17:32:15 +01:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { useEffect, useRef } from "preact/hooks";
|
|
import { t } from "../../services/i18n";
|
|
import { ComponentChildren } from "preact";
|
|
|
|
interface ModalProps {
|
|
className: string;
|
|
title: string;
|
|
size: "lg" | "sm";
|
|
children: ComponentChildren;
|
|
onShown?: () => void;
|
|
}
|
|
|
|
export default function Modal({ children, className, size, title, onShown }: ModalProps) {
|
|
const modalRef = useRef<HTMLDivElement>(null);
|
|
|
|
if (onShown) {
|
|
useEffect(() => {
|
|
const modalElement = modalRef.current;
|
|
if (modalElement) {
|
|
modalElement.addEventListener("shown.bs.modal", onShown);
|
|
}
|
|
});
|
|
}
|
|
|
|
return (
|
|
<div className={`modal fade mx-auto ${className}`} tabIndex={-1} role="dialog" ref={modalRef}>
|
|
<div className={`modal-dialog modal-${size}`} role="document">
|
|
<div className="modal-content">
|
|
<div className="modal-header">
|
|
<h5 className="modal-title">{title}</h5>
|
|
<button type="button" className="btn-close" data-bs-dismiss="modal" aria-label={t("modal.close")}></button>
|
|
</div>
|
|
|
|
<div className="modal-body">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |