File size: 16,628 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | import { useState, useCallback } from 'react';
import { useTranslation } from 'react-i18next';
import { RefreshCw, X, CodeXml } from 'lucide-react';
import {
DndContext, closestCenter, KeyboardSensor, PointerSensor,
useSensor, useSensors, type DragEndEvent,
} from '@dnd-kit/core';
import {
arrayMove, SortableContext, sortableKeyboardCoordinates, verticalListSortingStrategy,
} from '@dnd-kit/sortable';
import { cn } from '../../utils/cn';
import { request as invoke } from '../../utils/request';
import { showToast } from '../common/ToastContainer';
import { useProxyModels } from '../../hooks/useProxyModels';
import { SortableModelItem, type PreviewModelEntry } from './SortableModelItem';
interface OpenCodeSyncModalProps {
proxyUrl: string;
apiKey: string;
getFormattedProxyUrl: (app: 'Claude' | 'Codex' | 'Gemini' | 'OpenCode' | 'Droid') => string;
onClose: () => void;
onSyncDone: () => void;
}
export function OpenCodeSyncModal({ proxyUrl, apiKey, onClose, onSyncDone }: OpenCodeSyncModalProps) {
const { t } = useTranslation();
const { models: antigravityModels } = useProxyModels();
const [selectedModels, setSelectedModels] = useState<Set<string>>(new Set());
const [previewModels, setPreviewModels] = useState<PreviewModelEntry[]>([]);
const [syncing, setSyncing] = useState(false);
const [configLoaded, setConfigLoaded] = useState(false);
const [hasAuthPlugin, setHasAuthPlugin] = useState(false);
const [customBaseUrl, setCustomBaseUrl] = useState(proxyUrl);
const sensors = useSensors(
useSensor(PointerSensor, { activationConstraint: { distance: 3 } }),
useSensor(KeyboardSensor, { coordinateGetter: sortableKeyboardCoordinates }),
);
const rebuildPreview = useCallback((selectedIds: Set<string>) => {
const selected = antigravityModels.filter(m => selectedIds.has(m.id));
const newEntries: PreviewModelEntry[] = selected.map((m, i) => ({
_uid: `new-${i}`,
model: m.id,
id: m.id,
index: i,
baseUrl: '', // OpenCode uses provider-level base URL
apiKey: apiKey,
displayName: m.name,
noImageSupport: false,
provider: m.id.includes('claude') ? 'anthropic' : 'google',
isAg: true,
}));
setPreviewModels(newEntries);
}, [antigravityModels, apiKey]);
// 初始加载 opencode.json
if (!configLoaded) {
setConfigLoaded(true);
invoke<string>('get_opencode_config_content', { request: { fileName: 'opencode.json' } })
.then(content => {
const parsed = JSON.parse(content);
const existingModelIds = new Set<string>();
// Priority 1: Read from antigravity-manager provider
if (parsed.provider?.['antigravity-manager']?.models) {
Object.keys(parsed.provider['antigravity-manager'].models).forEach(k => existingModelIds.add(k));
}
// Fallback: legacy anthropic/google providers
if (existingModelIds.size === 0) {
if (parsed.provider?.anthropic?.models) {
Object.keys(parsed.provider.anthropic.models).forEach(k => existingModelIds.add(k));
}
if (parsed.provider?.google?.models) {
Object.keys(parsed.provider.google.models).forEach(k => existingModelIds.add(k));
}
}
// Detect auth plugin conflict
const plugins = parsed.plugin || [];
const hasAuth = plugins.some((p: string) => p.includes('opencode-antigravity-auth'));
setHasAuthPlugin(hasAuth);
// Try to extract existing baseURL from antigravity-manager provider
if (parsed.provider?.['antigravity-manager']?.options?.baseURL) {
setCustomBaseUrl(parsed.provider['antigravity-manager'].options.baseURL);
}
setSelectedModels(existingModelIds);
rebuildPreview(existingModelIds);
})
.catch(() => rebuildPreview(new Set()));
}
const allSelected = antigravityModels.length > 0 && antigravityModels.every(m => selectedModels.has(m.id));
const toggleAll = () => {
const next = allSelected ? new Set<string>() : new Set(antigravityModels.map(m => m.id));
setSelectedModels(next);
rebuildPreview(next);
};
const toggleModel = (modelId: string) => {
const next = new Set(selectedModels);
if (next.has(modelId)) next.delete(modelId); else next.add(modelId);
setSelectedModels(next);
rebuildPreview(next);
};
const handleDragEnd = (event: DragEndEvent) => {
const { active, over } = event;
if (!over || active.id === over.id) return;
const oldIdx = previewModels.findIndex(m => m._uid === active.id);
const newIdx = previewModels.findIndex(m => m._uid === over.id);
if (oldIdx < 0 || newIdx < 0) return;
setPreviewModels(arrayMove([...previewModels], oldIdx, newIdx).map((m, i) => ({
...m, index: i,
})));
};
const handleRemoveModel = (uid: string) => {
const nextPreviews = previewModels.filter(m => m._uid !== uid);
setPreviewModels(nextPreviews);
const nextSelected = new Set(nextPreviews.map(p => p.model));
setSelectedModels(nextSelected);
};
const executeOpenCodeSync = async () => {
setSyncing(true);
try {
const models = previewModels.map(m => m.model);
await invoke('execute_opencode_sync', {
proxyUrl: customBaseUrl || proxyUrl,
apiKey,
syncAccounts: true,
models
});
showToast(t('proxy.opencode_sync.toast.sync_success', { defaultValue: 'OpenCode 同步成功' }), 'success');
onSyncDone();
onClose();
} catch (error: any) {
showToast(error.toString(), 'error');
} finally {
setSyncing(false);
}
};
const groups = [...new Set(antigravityModels.map(m => m.group))];
return (
<div className="fixed inset-0 z-[300] flex items-center justify-center p-4 bg-black/50 backdrop-blur-sm animate-in fade-in duration-200">
<div className="bg-white dark:bg-base-100 rounded-2xl shadow-2xl border border-gray-200 dark:border-base-300 w-full max-w-2xl max-h-[85vh] overflow-hidden animate-in zoom-in-95 duration-200 flex flex-col">
{/* Header */}
<div className="px-5 pt-4 pb-3 shrink-0">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2.5">
<div className="p-2 bg-blue-50 dark:bg-blue-900/20 rounded-lg">
<CodeXml size={18} className="text-blue-500" />
</div>
<div>
<h3 className="text-sm font-bold text-gray-900 dark:text-base-content">
{t('proxy.config.opencode_sync.modal_title', { defaultValue: '选择 OpenCode 模型' })}
</h3>
<p className="text-[10px] text-gray-400 mt-0.5">~/.config/opencode/opencode.json</p>
</div>
</div>
<button onClick={onClose} className="p-1.5 rounded-lg hover:bg-gray-100 dark:hover:bg-base-300 transition-colors">
<X size={16} className="text-gray-400" />
</button>
</div>
</div>
{/* Custom BaseURL Input */}
<div className="px-5 py-2 shrink-0 border-b border-gray-100 dark:border-base-200 bg-gray-50/50 dark:bg-base-200/30">
<div className="flex flex-col gap-1.5">
<div className="flex items-center justify-between">
<label className="text-[10px] font-bold text-gray-400 uppercase tracking-wider">
{t('proxy.config.opencode_sync.custom_base_url_label', { defaultValue: 'Custom Manager BaseURL' })}
</label>
<span className="text-[9px] text-gray-400 italic font-medium">
{t('proxy.config.opencode_sync.custom_base_url_desc', { defaultValue: 'For Docker Compose networking' })}
</span>
</div>
<div className="relative group">
<input
type="text"
value={customBaseUrl}
onChange={(e) => setCustomBaseUrl(e.target.value)}
placeholder="e.g. http://antigravity-manager:8045/v1"
className="w-full px-3 py-1.5 text-xs bg-white dark:bg-base-100 border border-gray-200 dark:border-base-300 rounded-lg focus:ring-1 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all"
/>
{customBaseUrl !== proxyUrl && (
<button
onClick={() => setCustomBaseUrl(proxyUrl)}
className="absolute right-2 top-1/2 -translate-y-1/2 text-[9px] text-blue-500 hover:text-blue-600 font-medium"
>
{t('proxy.config.opencode_sync.custom_base_url_reset', { defaultValue: 'Reset' })}
</button>
)}
</div>
</div>
</div>
{/* 模型选择区 */}
<div className="px-5 pb-3 shrink-0 border-b border-gray-100 dark:border-base-200">
<div className="flex items-center justify-between mb-2">
<span className="text-[10px] font-bold text-gray-400 uppercase tracking-wider">
{t('proxy.config.opencode_sync.select_models', { defaultValue: '选择要同步的模型' })}
<span className="ml-2 text-gray-300">{selectedModels.size}/{antigravityModels.length}</span>
</span>
<button onClick={toggleAll} className="text-[10px] text-blue-500 hover:text-blue-600 font-medium transition-colors">
{allSelected ? t('common.deselect_all', { defaultValue: '取消全选' }) : t('common.select_all', { defaultValue: '全选' })}
</button>
</div>
<div className="space-y-2 max-h-[25vh] overflow-auto">
{groups.map(group => {
const groupModels = antigravityModels.filter(m => m.group === group);
return (
<div key={group}>
<div className="text-[9px] font-bold text-gray-400 uppercase tracking-widest mb-1">{group}</div>
<div className="flex flex-wrap gap-1.5">
{groupModels.map(m => {
const selected = selectedModels.has(m.id);
return (
<button
key={m.id}
onClick={() => toggleModel(m.id)}
className={cn(
"px-2.5 py-1 rounded-md text-[11px] font-medium transition-all duration-150 border",
selected
? "bg-blue-500 text-white border-blue-500"
: "bg-gray-50 dark:bg-base-200 text-gray-500 dark:text-gray-400 border-gray-200 dark:border-base-300 hover:border-blue-300"
)}
>
{m.name}
</button>
);
})}
</div>
</div>
);
})}
</div>
</div>
{/* Auth Plugin Warning */}
{hasAuthPlugin && (
<div className="px-5 py-2 shrink-0 bg-amber-50 dark:bg-amber-900/20 border-y border-amber-100 dark:border-amber-900/30">
<p className="text-[10px] text-amber-700 dark:text-amber-400 leading-relaxed">
{t('proxy.config.opencode_sync.auth_plugin_warning', {
defaultValue: 'Sync chỉ tạo provider antigravity-manager và không ghi đè google provider/plugin.'
})}
</p>
</div>
)}
{/* Preview 主体区 */}
<div className="flex-1 min-h-0 flex flex-col">
<div className="px-5 py-2 flex items-center justify-between shrink-0">
<span className="text-[10px] font-bold text-gray-400 uppercase tracking-wider">
Sync Queue Preview
</span>
<span className="text-[9px] font-mono text-gray-300">{previewModels.length} models</span>
</div>
<div className="px-4 pb-3 overflow-auto flex-1">
<DndContext sensors={sensors} collisionDetection={closestCenter} onDragEnd={handleDragEnd}>
<SortableContext items={previewModels.map(m => m._uid)} strategy={verticalListSortingStrategy}>
<div className="space-y-1.5">
{previewModels.map(entry => (
<SortableModelItem
key={entry._uid}
entry={entry}
collapsed={true}
onToggle={() => { }}
onRemove={() => handleRemoveModel(entry._uid)}
/>
))}
</div>
</SortableContext>
</DndContext>
</div>
</div>
{/* Footer */}
<div className="px-5 py-3 border-t border-gray-100 dark:border-base-200 flex items-center justify-end gap-2 shrink-0">
<button className="px-3 py-1.5 text-xs text-gray-500 hover:text-gray-700 dark:hover:text-gray-300 rounded-lg hover:bg-gray-100 dark:hover:bg-base-300 transition-colors" onClick={onClose}>
{t('common.cancel', { defaultValue: '取消' })}
</button>
<button
className={cn(
"px-4 py-1.5 text-xs font-bold rounded-lg transition-all flex items-center gap-1.5",
previewModels.length > 0
? "bg-blue-500 hover:bg-blue-600 active:bg-blue-700 text-white shadow-sm"
: "bg-gray-200 dark:bg-gray-700 text-gray-400 cursor-not-allowed"
)}
disabled={previewModels.length === 0 || syncing}
onClick={executeOpenCodeSync}
>
<RefreshCw size={12} className={syncing ? 'animate-spin' : ''} />
{t('proxy.config.opencode_sync.btn_confirm_sync', { defaultValue: '确认同步' })}
</button>
</div>
</div>
</div>
);
}
|