import React, { useEffect, useMemo, useRef, useState } from 'react' import { createPortal } from 'react-dom' import { useTranslation } from 'react-i18next' import { RiExternalLinkLine, } from '@remixicon/react' import Button from '@/app/components/base/button' import { getLocaleOnClient } from '@/i18n' export type IConfirm = { className?: string isShow: boolean title: string content?: React.ReactNode onConfirm: () => void onCancel: () => void maskClosable?: boolean email?: string showLink?: boolean } function Confirm({ isShow, title, content, onConfirm, onCancel, maskClosable = true, showLink, email, }: IConfirm) { const { t } = useTranslation() const locale = getLocaleOnClient() const dialogRef = useRef(null) const [isVisible, setIsVisible] = useState(isShow) const docLink = useMemo(() => { if (locale === 'zh-Hans') return 'https://docs.dify.ai/zh-hans/getting-started/dify-for-education' if (locale === 'ja-JP') return 'https://docs.dify.ai/ja-jp/getting-started/dify-for-education' return 'https://docs.dify.ai/getting-started/dify-for-education' }, [locale]) const handleClick = () => { window.open(docLink, '_blank', 'noopener,noreferrer') } useEffect(() => { const handleKeyDown = (event: KeyboardEvent) => { if (event.key === 'Escape') onCancel() } document.addEventListener('keydown', handleKeyDown) return () => { document.removeEventListener('keydown', handleKeyDown) } }, [onCancel]) const handleClickOutside = (event: MouseEvent) => { if (maskClosable && dialogRef.current && !dialogRef.current.contains(event.target as Node)) onCancel() } useEffect(() => { document.addEventListener('mousedown', handleClickOutside) return () => { document.removeEventListener('mousedown', handleClickOutside) } }, [maskClosable]) useEffect(() => { if (isShow) { setIsVisible(true) } else { const timer = setTimeout(() => setIsVisible(false), 200) return () => clearTimeout(timer) } }, [isShow]) if (!isVisible) return null return createPortal(
{ e.preventDefault() e.stopPropagation() }} >
{title}
{content}
{email && (
{t('education.emailLabel')}
{email}
)}
{showLink && ( <> {t('education.learn')} )}
, document.body, ) } export default React.memo(Confirm)