import React, { useState, useCallback, useMemo } from 'react'; import { Button, Table, Tag, Empty, Checkbox, Form, } from '@douyinfe/semi-ui'; import { RefreshCcw, CheckSquare, } from 'lucide-react'; import { API, showError, showSuccess, showWarning } from '../../../helpers'; import { DEFAULT_ENDPOINT } from '../../../constants'; import { useTranslation } from 'react-i18next'; import { IllustrationNoResult, IllustrationNoResultDark } from '@douyinfe/semi-illustrations'; import ChannelSelectorModal from '../../../components/settings/ChannelSelectorModal'; export default function UpstreamRatioSync(props) { const { t } = useTranslation(); const [modalVisible, setModalVisible] = useState(false); const [loading, setLoading] = useState(false); const [syncLoading, setSyncLoading] = useState(false); // 渠道选择相关 const [allChannels, setAllChannels] = useState([]); const [selectedChannelIds, setSelectedChannelIds] = useState([]); // 渠道端点配置 const [channelEndpoints, setChannelEndpoints] = useState({}); // { channelId: endpoint } // 差异数据和测试结果 const [differences, setDifferences] = useState({}); const [testResults, setTestResults] = useState([]); const [resolutions, setResolutions] = useState({}); // 分页相关状态 const [currentPage, setCurrentPage] = useState(1); const [pageSize, setPageSize] = useState(10); // 当前倍率快照 const currentRatiosSnapshot = useMemo(() => ({ model_ratio: JSON.parse(props.options.ModelRatio || '{}'), completion_ratio: JSON.parse(props.options.CompletionRatio || '{}'), cache_ratio: JSON.parse(props.options.CacheRatio || '{}'), model_price: JSON.parse(props.options.ModelPrice || '{}'), }), [props.options]); // 获取所有渠道 const fetchAllChannels = async () => { setLoading(true); try { const res = await API.get('/api/ratio_sync/channels'); if (res.data.success) { const channels = res.data.data || []; // 转换为Transfer组件所需格式 const transferData = channels.map(channel => ({ key: channel.id, label: channel.name, value: channel.id, disabled: false, // 所有渠道都可以选择 _originalData: channel, })); setAllChannels(transferData); // 初始化端点配置 const initialEndpoints = {}; transferData.forEach(channel => { initialEndpoints[channel.key] = DEFAULT_ENDPOINT; }); setChannelEndpoints(initialEndpoints); } else { showError(res.data.message); } } catch (error) { showError(t('获取渠道失败:') + error.message); } finally { setLoading(false); } }; // 确认选择渠道 const confirmChannelSelection = () => { const selected = allChannels .filter(ch => selectedChannelIds.includes(ch.value)) .map(ch => ch._originalData); if (selected.length === 0) { showWarning(t('请至少选择一个渠道')); return; } setModalVisible(false); fetchRatiosFromChannels(selected); }; // 从选定渠道获取倍率 const fetchRatiosFromChannels = async (channelList) => { setSyncLoading(true); const payload = { channel_ids: channelList.map(ch => parseInt(ch.id)), timeout: 10, }; try { const res = await API.post('/api/ratio_sync/fetch', payload); if (!res.data.success) { showError(res.data.message || t('后端请求失败')); setSyncLoading(false); return; } const { differences = {}, test_results = [] } = res.data.data; // 显示测试结果 const errorResults = test_results.filter(r => r.status === 'error'); if (errorResults.length > 0) { showWarning(t('部分渠道测试失败:') + errorResults.map(r => `${r.name}: ${r.error}`).join(', ')); } setDifferences(differences); setTestResults(test_results); setResolutions({}); // 判断是否有差异 if (Object.keys(differences).length === 0) { showSuccess(t('已与上游倍率完全一致,无需同步')); } } catch (e) { showError(t('请求后端接口失败:') + e.message); } finally { setSyncLoading(false); } }; // 解决冲突/选择值 const selectValue = (model, ratioType, value) => { setResolutions(prev => ({ ...prev, [model]: { ...prev[model], [ratioType]: value, }, })); }; // 应用同步 const applySync = async () => { const currentRatios = { ModelRatio: JSON.parse(props.options.ModelRatio || '{}'), CompletionRatio: JSON.parse(props.options.CompletionRatio || '{}'), CacheRatio: JSON.parse(props.options.CacheRatio || '{}'), ModelPrice: JSON.parse(props.options.ModelPrice || '{}'), }; // 应用已选择的值 Object.entries(resolutions).forEach(([model, ratios]) => { Object.entries(ratios).forEach(([ratioType, value]) => { const optionKey = ratioType .split('_') .map(word => word.charAt(0).toUpperCase() + word.slice(1)) .join(''); currentRatios[optionKey][model] = parseFloat(value); }); }); // 保存到后端 setLoading(true); try { const updates = Object.entries(currentRatios).map(([key, value]) => API.put('/api/option/', { key, value: JSON.stringify(value, null, 2), }) ); const results = await Promise.all(updates); if (results.every(res => res.data.success)) { showSuccess(t('同步成功')); props.refresh(); // 清空状态 setDifferences({}); setTestResults([]); setResolutions({}); setSelectedChannelIds([]); } else { showError(t('部分保存失败')); } } catch (error) { showError(t('保存失败')); } finally { setLoading(false); } }; // 计算当前页显示的数据 const getCurrentPageData = (dataSource) => { const startIndex = (currentPage - 1) * pageSize; const endIndex = startIndex + pageSize; return dataSource.slice(startIndex, endIndex); }; // 渲染表格头部 const renderHeader = () => (