mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-26 06:24:32 +08:00
425 lines
15 KiB
TypeScript
425 lines
15 KiB
TypeScript
import { useState, useEffect } from "react";
|
||
import { useTranslation } from "react-i18next";
|
||
import { Button } from "@/components/ui/button";
|
||
import { Input } from "@/components/ui/input";
|
||
import { Label } from "@/components/ui/label";
|
||
import { Alert, AlertDescription } from "@/components/ui/alert";
|
||
import { Save, Loader2, Info } from "lucide-react";
|
||
import { toast } from "sonner";
|
||
import { useAppProxyConfig, useUpdateAppProxyConfig } from "@/lib/query/proxy";
|
||
|
||
export interface AutoFailoverConfigPanelProps {
|
||
appType: string;
|
||
disabled?: boolean;
|
||
}
|
||
|
||
export function AutoFailoverConfigPanel({
|
||
appType,
|
||
disabled = false,
|
||
}: AutoFailoverConfigPanelProps) {
|
||
const { t } = useTranslation();
|
||
const { data: config, isLoading, error } = useAppProxyConfig(appType);
|
||
const updateConfig = useUpdateAppProxyConfig();
|
||
|
||
const [formData, setFormData] = useState({
|
||
autoFailoverEnabled: false,
|
||
maxRetries: 3,
|
||
streamingFirstByteTimeout: 30,
|
||
streamingIdleTimeout: 60,
|
||
nonStreamingTimeout: 300,
|
||
circuitFailureThreshold: 5,
|
||
circuitSuccessThreshold: 2,
|
||
circuitTimeoutSeconds: 60,
|
||
circuitErrorRateThreshold: 0.5,
|
||
circuitMinRequests: 10,
|
||
});
|
||
|
||
useEffect(() => {
|
||
if (config) {
|
||
setFormData({
|
||
autoFailoverEnabled: config.autoFailoverEnabled,
|
||
maxRetries: config.maxRetries,
|
||
streamingFirstByteTimeout: config.streamingFirstByteTimeout,
|
||
streamingIdleTimeout: config.streamingIdleTimeout,
|
||
nonStreamingTimeout: config.nonStreamingTimeout,
|
||
circuitFailureThreshold: config.circuitFailureThreshold,
|
||
circuitSuccessThreshold: config.circuitSuccessThreshold,
|
||
circuitTimeoutSeconds: config.circuitTimeoutSeconds,
|
||
circuitErrorRateThreshold: config.circuitErrorRateThreshold,
|
||
circuitMinRequests: config.circuitMinRequests,
|
||
});
|
||
}
|
||
}, [config]);
|
||
|
||
const handleSave = async () => {
|
||
if (!config) return;
|
||
try {
|
||
await updateConfig.mutateAsync({
|
||
appType,
|
||
enabled: config.enabled,
|
||
autoFailoverEnabled: formData.autoFailoverEnabled,
|
||
maxRetries: formData.maxRetries,
|
||
streamingFirstByteTimeout: formData.streamingFirstByteTimeout,
|
||
streamingIdleTimeout: formData.streamingIdleTimeout,
|
||
nonStreamingTimeout: formData.nonStreamingTimeout,
|
||
circuitFailureThreshold: formData.circuitFailureThreshold,
|
||
circuitSuccessThreshold: formData.circuitSuccessThreshold,
|
||
circuitTimeoutSeconds: formData.circuitTimeoutSeconds,
|
||
circuitErrorRateThreshold: formData.circuitErrorRateThreshold,
|
||
circuitMinRequests: formData.circuitMinRequests,
|
||
});
|
||
toast.success(
|
||
t("proxy.autoFailover.configSaved", "自动故障转移配置已保存"),
|
||
{ closeButton: true },
|
||
);
|
||
} catch (e) {
|
||
toast.error(
|
||
t("proxy.autoFailover.configSaveFailed", "保存失败") + ": " + String(e),
|
||
);
|
||
}
|
||
};
|
||
|
||
const handleReset = () => {
|
||
if (config) {
|
||
setFormData({
|
||
autoFailoverEnabled: config.autoFailoverEnabled,
|
||
maxRetries: config.maxRetries,
|
||
streamingFirstByteTimeout: config.streamingFirstByteTimeout,
|
||
streamingIdleTimeout: config.streamingIdleTimeout,
|
||
nonStreamingTimeout: config.nonStreamingTimeout,
|
||
circuitFailureThreshold: config.circuitFailureThreshold,
|
||
circuitSuccessThreshold: config.circuitSuccessThreshold,
|
||
circuitTimeoutSeconds: config.circuitTimeoutSeconds,
|
||
circuitErrorRateThreshold: config.circuitErrorRateThreshold,
|
||
circuitMinRequests: config.circuitMinRequests,
|
||
});
|
||
}
|
||
};
|
||
|
||
if (isLoading) {
|
||
return (
|
||
<div className="flex items-center justify-center p-4">
|
||
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
||
</div>
|
||
);
|
||
}
|
||
|
||
const isDisabled = disabled || updateConfig.isPending;
|
||
|
||
return (
|
||
<div className="border-0 rounded-none shadow-none bg-transparent">
|
||
<div className="space-y-4">
|
||
{error && (
|
||
<Alert variant="destructive">
|
||
<AlertDescription>{String(error)}</AlertDescription>
|
||
</Alert>
|
||
)}
|
||
|
||
<Alert className="border-blue-500/40 bg-blue-500/10">
|
||
<Info className="h-4 w-4" />
|
||
<AlertDescription className="text-sm">
|
||
{t(
|
||
"proxy.autoFailover.info",
|
||
"当故障转移队列中配置了多个供应商时,系统会在请求失败时按优先级顺序依次尝试。当某个供应商连续失败达到阈值时,熔断器会打开并在一段时间内跳过该供应商。",
|
||
)}
|
||
</AlertDescription>
|
||
</Alert>
|
||
|
||
{/* 重试与超时配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.retrySettings", "重试与超时设置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`maxRetries-${appType}`}>
|
||
{t("proxy.autoFailover.maxRetries", "最大重试次数")}
|
||
</Label>
|
||
<Input
|
||
id={`maxRetries-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="10"
|
||
value={formData.maxRetries}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
maxRetries: isNaN(val) ? 0 : val,
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.maxRetriesHint",
|
||
"请求失败时的重试次数(0-10)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`failureThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.failureThreshold", "失败阈值")}
|
||
</Label>
|
||
<Input
|
||
id={`failureThreshold-${appType}`}
|
||
type="number"
|
||
min="1"
|
||
max="20"
|
||
value={formData.circuitFailureThreshold}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
circuitFailureThreshold: isNaN(val) ? 1 : Math.max(1, val),
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.failureThresholdHint",
|
||
"连续失败多少次后打开熔断器(建议: 3-10)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 超时配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.timeoutSettings", "超时配置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`streamingFirstByte-${appType}`}>
|
||
{t(
|
||
"proxy.autoFailover.streamingFirstByte",
|
||
"流式首字节超时(秒)",
|
||
)}
|
||
</Label>
|
||
<Input
|
||
id={`streamingFirstByte-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="180"
|
||
value={formData.streamingFirstByteTimeout}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
streamingFirstByteTimeout: isNaN(val) ? 0 : val,
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.streamingFirstByteHint",
|
||
"等待首个数据块的最大时间",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`streamingIdle-${appType}`}>
|
||
{t("proxy.autoFailover.streamingIdle", "流式静默超时(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`streamingIdle-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="600"
|
||
value={formData.streamingIdleTimeout}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
streamingIdleTimeout: isNaN(val) ? 0 : val,
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.streamingIdleHint",
|
||
"数据块之间的最大间隔",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`nonStreaming-${appType}`}>
|
||
{t("proxy.autoFailover.nonStreaming", "非流式超时(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`nonStreaming-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="1800"
|
||
value={formData.nonStreamingTimeout}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
nonStreamingTimeout: isNaN(val) ? 0 : val,
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.nonStreamingHint",
|
||
"非流式请求的总超时时间",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 熔断器配置 */}
|
||
<div className="space-y-4 rounded-lg border border-white/10 bg-muted/30 p-4">
|
||
<h4 className="text-sm font-semibold">
|
||
{t("proxy.autoFailover.circuitBreakerSettings", "熔断器配置")}
|
||
</h4>
|
||
|
||
<div className="grid grid-cols-2 md:grid-cols-4 gap-4">
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`successThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.successThreshold", "恢复成功阈值")}
|
||
</Label>
|
||
<Input
|
||
id={`successThreshold-${appType}`}
|
||
type="number"
|
||
min="1"
|
||
max="10"
|
||
value={formData.circuitSuccessThreshold}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
circuitSuccessThreshold: isNaN(val) ? 1 : Math.max(1, val),
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.successThresholdHint",
|
||
"半开状态下成功多少次后关闭熔断器",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`timeoutSeconds-${appType}`}>
|
||
{t("proxy.autoFailover.timeout", "恢复等待时间(秒)")}
|
||
</Label>
|
||
<Input
|
||
id={`timeoutSeconds-${appType}`}
|
||
type="number"
|
||
min="10"
|
||
max="300"
|
||
value={formData.circuitTimeoutSeconds}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
circuitTimeoutSeconds: isNaN(val) ? 10 : Math.max(10, val),
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.timeoutHint",
|
||
"熔断器打开后,等待多久后尝试恢复(建议: 30-120)",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`errorRateThreshold-${appType}`}>
|
||
{t("proxy.autoFailover.errorRate", "错误率阈值 (%)")}
|
||
</Label>
|
||
<Input
|
||
id={`errorRateThreshold-${appType}`}
|
||
type="number"
|
||
min="0"
|
||
max="100"
|
||
step="5"
|
||
value={Math.round(formData.circuitErrorRateThreshold * 100)}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
circuitErrorRateThreshold: isNaN(val) ? 0.5 : val / 100,
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.errorRateHint",
|
||
"错误率超过此值时打开熔断器",
|
||
)}
|
||
</p>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label htmlFor={`minRequests-${appType}`}>
|
||
{t("proxy.autoFailover.minRequests", "最小请求数")}
|
||
</Label>
|
||
<Input
|
||
id={`minRequests-${appType}`}
|
||
type="number"
|
||
min="5"
|
||
max="100"
|
||
value={formData.circuitMinRequests}
|
||
onChange={(e) => {
|
||
const val = parseInt(e.target.value);
|
||
setFormData({
|
||
...formData,
|
||
circuitMinRequests: isNaN(val) ? 5 : Math.max(5, val),
|
||
});
|
||
}}
|
||
disabled={isDisabled}
|
||
/>
|
||
<p className="text-xs text-muted-foreground">
|
||
{t(
|
||
"proxy.autoFailover.minRequestsHint",
|
||
"计算错误率前的最小请求数",
|
||
)}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 操作按钮 */}
|
||
<div className="flex justify-end gap-3 pt-2">
|
||
<Button variant="outline" onClick={handleReset} disabled={isDisabled}>
|
||
{t("common.reset", "重置")}
|
||
</Button>
|
||
<Button onClick={handleSave} disabled={isDisabled}>
|
||
{updateConfig.isPending ? (
|
||
<>
|
||
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
||
{t("common.saving", "保存中...")}
|
||
</>
|
||
) : (
|
||
<>
|
||
<Save className="mr-2 h-4 w-4" />
|
||
{t("common.save", "保存")}
|
||
</>
|
||
)}
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
);
|
||
}
|