mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import { useTranslation } from 'react-i18next';
|
|
|
|
import { ActiveState } from '../models/misc';
|
|
import WrapperModal from './WrapperModal';
|
|
|
|
export default function ConfirmationModal({
|
|
message,
|
|
modalState,
|
|
setModalState,
|
|
submitLabel,
|
|
handleSubmit,
|
|
cancelLabel,
|
|
handleCancel,
|
|
variant = 'default',
|
|
}: {
|
|
message: string;
|
|
modalState: ActiveState;
|
|
setModalState: (state: ActiveState) => void;
|
|
submitLabel: string;
|
|
handleSubmit: () => void;
|
|
cancelLabel?: string;
|
|
handleCancel?: () => void;
|
|
variant?: 'default' | 'danger';
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
const submitButtonClasses =
|
|
variant === 'danger'
|
|
? 'rounded-3xl bg-rosso-corsa px-5 py-2 text-sm text-lotion transition-all hover:bg-red-2000 hover:font-bold tracking-[0.019em] hover:tracking-normal'
|
|
: 'rounded-3xl bg-purple-30 px-5 py-2 text-sm text-lotion transition-all hover:bg-violets-are-blue';
|
|
|
|
const handleSubmitClick = (e: React.MouseEvent) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
handleSubmit();
|
|
setModalState('INACTIVE');
|
|
};
|
|
|
|
const handleCancelClick = (e: React.MouseEvent) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setModalState('INACTIVE');
|
|
handleCancel?.();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{modalState === 'ACTIVE' && (
|
|
<WrapperModal close={() => setModalState('INACTIVE')}>
|
|
<div className="relative">
|
|
<div>
|
|
<p className="font-base text-jet dark:text-bright-gray mb-1 w-[90%] text-lg break-words">
|
|
{message}
|
|
</p>
|
|
<div>
|
|
<div className="mt-6 flex flex-row-reverse gap-1">
|
|
<button
|
|
onClick={handleSubmitClick}
|
|
className={submitButtonClasses}
|
|
>
|
|
{submitLabel}
|
|
</button>
|
|
<button
|
|
onClick={handleCancelClick}
|
|
className="dark:text-light-gray cursor-pointer rounded-3xl px-5 py-2 text-sm font-medium hover:bg-gray-100 dark:bg-transparent dark:hover:bg-[#767183]/50"
|
|
>
|
|
{cancelLabel ? cancelLabel : t('cancel')}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</WrapperModal>
|
|
)}
|
|
</>
|
|
);
|
|
}
|