import intl from 'react-intl-universal'; import React, { useEffect, useState } from 'react'; import { Modal, message, Input, Form, Statistic, Button } from 'antd'; import { request } from '@/utils/http'; import config from '@/utils/config'; import { Loading3QuartersOutlined, CheckCircleOutlined, } from '@ant-design/icons'; import { PageLoading } from '@ant-design/pro-layout'; import { logEnded } from '@/utils'; const SubscriptionLogModal = ({ subscription, handleCancel, visible, data, logUrl, }: { subscription?: any; visible: boolean; handleCancel: () => void; data?: string; logUrl?: string; }) => { const [value, setValue] = useState(intl.get('启动中...')); const [loading, setLoading] = useState(true); const [executing, setExecuting] = useState(true); const [isPhone, setIsPhone] = useState(false); const getCronLog = (isFirst?: boolean) => { if (isFirst) { setLoading(true); } request .get( logUrl ? logUrl : `${config.apiPrefix}subscriptions/${subscription.id}/log`, ) .then(({ code, data }) => { if ( code === 200 && localStorage.getItem('logSubscription') === String(subscription.id) ) { const log = data as string; setValue(log || intl.get('暂无日志')); setExecuting(log && !logEnded(log)); if (log && !logEnded(log)) { setTimeout(() => { getCronLog(); }, 2000); } } }) .finally(() => { if (isFirst) { setLoading(false); } }); }; const cancel = () => { localStorage.removeItem('logSubscription'); handleCancel(); }; const titleElement = () => { return ( <> {(executing || loading) && } {!executing && !loading && } {subscription && subscription.name} ); }; useEffect(() => { if (subscription && subscription.id && visible) { getCronLog(true); } }, [subscription, visible]); useEffect(() => { if (data) { setValue(data); } }, [data]); useEffect(() => { setIsPhone(document.body.clientWidth < 768); }, []); return ( cancel()} onCancel={() => cancel()} footer={[ , ]} > {loading ? ( ) : (
          {value}
        
)}
); }; export default SubscriptionLogModal;