♻️ refactor(ai-mcp): 拆分 MCP 服务卡片并收敛表单逻辑

This commit is contained in:
Syngnat
2026-06-09 08:49:00 +08:00
parent 86095b5bf1
commit 8529fbd9e2
4 changed files with 476 additions and 349 deletions

View File

@@ -0,0 +1,91 @@
import React from 'react';
import type { OverlayWorkbenchTheme } from '../../utils/overlayWorkbenchTheme';
import type { MCPFieldState } from '../../utils/mcpServerGuidance';
export const mcpLabelStyle: React.CSSProperties = {
fontSize: 12,
fontWeight: 700,
};
export const buildMCPHintStyle = (mutedText: string): React.CSSProperties => ({
fontSize: 12,
color: mutedText,
lineHeight: 1.6,
});
export const buildMCPFieldTone = (kind: MCPFieldState, darkMode: boolean) => {
switch (kind) {
case 'required':
return {
label: '必填',
color: '#b45309',
bg: darkMode ? 'rgba(245,158,11,0.18)' : 'rgba(245,158,11,0.12)',
};
case 'fixed':
return {
label: '固定',
color: '#2563eb',
bg: darkMode ? 'rgba(59,130,246,0.18)' : 'rgba(59,130,246,0.12)',
};
default:
return {
label: '可选',
color: '#475569',
bg: darkMode ? 'rgba(148,163,184,0.18)' : 'rgba(148,163,184,0.12)',
};
}
};
interface AIMCPHelpBlockProps {
title: string;
description: string;
overlayTheme: OverlayWorkbenchTheme;
darkMode: boolean;
fieldState: MCPFieldState;
example?: string;
children: React.ReactNode;
}
const AIMCPHelpBlock: React.FC<AIMCPHelpBlockProps> = ({
title,
description,
overlayTheme,
darkMode,
fieldState,
example,
children,
}) => {
const tone = buildMCPFieldTone(fieldState, darkMode);
return (
<div style={{ display: 'flex', flexDirection: 'column', gap: 6 }}>
<div style={{ display: 'flex', alignItems: 'center', gap: 8, flexWrap: 'wrap' }}>
<div style={mcpLabelStyle}>{title}</div>
<span
style={{
padding: '2px 8px',
borderRadius: 999,
fontSize: 11,
fontWeight: 700,
color: tone.color,
background: tone.bg,
}}
>
{tone.label}
</span>
</div>
<div style={buildMCPHintStyle(overlayTheme.mutedText)}>
{description}
{example ? (
<>
{' '}<code style={{ fontFamily: 'var(--gn-font-mono)' }}>{example}</code>
</>
) : null}
</div>
{children}
</div>
);
};
export default AIMCPHelpBlock;