File size: 5,347 Bytes
daa8246 | 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 | /*
Copyright (C) 2025 QuantumNous
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
For commercial licensing, please contact support@quantumnous.com
*/
import React, { useState, useEffect, useMemo } from 'react';
import {
Modal,
RadioGroup,
Radio,
Select,
Input,
Toast,
Typography,
} from '@douyinfe/semi-ui';
import { useTranslation } from 'react-i18next';
import { selectFilter } from '../../../../helpers';
const APP_CONFIGS = {
claude: {
label: 'Claude',
defaultName: 'My Claude',
modelFields: [
{ key: 'model', label: '主模型' },
{ key: 'haikuModel', label: 'Haiku 模型' },
{ key: 'sonnetModel', label: 'Sonnet 模型' },
{ key: 'opusModel', label: 'Opus 模型' },
],
},
codex: {
label: 'Codex',
defaultName: 'My Codex',
modelFields: [{ key: 'model', label: '主模型' }],
},
gemini: {
label: 'Gemini',
defaultName: 'My Gemini',
modelFields: [{ key: 'model', label: '主模型' }],
},
};
function getServerAddress() {
try {
const raw = localStorage.getItem('status');
if (raw) {
const status = JSON.parse(raw);
if (status.server_address) return status.server_address;
}
} catch (_) {}
return window.location.origin;
}
function buildCCSwitchURL(app, name, models, apiKey) {
const serverAddress = getServerAddress();
const endpoint = app === 'codex' ? serverAddress + '/v1' : serverAddress;
const params = new URLSearchParams();
params.set('resource', 'provider');
params.set('app', app);
params.set('name', name);
params.set('endpoint', endpoint);
params.set('apiKey', apiKey);
for (const [k, v] of Object.entries(models)) {
if (v) params.set(k, v);
}
params.set('homepage', serverAddress);
params.set('enabled', 'true');
return `ccswitch://v1/import?${params.toString()}`;
}
export default function CCSwitchModal({
visible,
onClose,
tokenKey,
modelOptions,
}) {
const { t } = useTranslation();
const [app, setApp] = useState('claude');
const [name, setName] = useState(APP_CONFIGS.claude.defaultName);
const [models, setModels] = useState({});
const currentConfig = APP_CONFIGS[app];
useEffect(() => {
if (visible) {
setModels({});
setApp('claude');
setName(APP_CONFIGS.claude.defaultName);
}
}, [visible]);
const handleAppChange = (val) => {
setApp(val);
setName(APP_CONFIGS[val].defaultName);
setModels({});
};
const handleModelChange = (field, value) => {
setModels((prev) => ({ ...prev, [field]: value }));
};
const handleSubmit = () => {
if (!models.model) {
Toast.warning(t('请选择主模型'));
return;
}
const url = buildCCSwitchURL(app, name, models, 'sk-' + tokenKey);
window.open(url, '_blank');
onClose();
};
const fieldLabelStyle = useMemo(
() => ({
marginBottom: 4,
fontSize: 13,
color: 'var(--semi-color-text-1)',
}),
[],
);
return (
<Modal
title={t('填入 CC Switch')}
visible={visible}
onCancel={onClose}
onOk={handleSubmit}
okText={t('打开 CC Switch')}
cancelText={t('取消')}
maskClosable={false}
width={480}
>
<div style={{ display: 'flex', flexDirection: 'column', gap: 16 }}>
<div>
<div style={fieldLabelStyle}>{t('应用')}</div>
<RadioGroup
type='button'
value={app}
onChange={(e) => handleAppChange(e.target.value)}
style={{ width: '100%' }}
>
{Object.entries(APP_CONFIGS).map(([key, cfg]) => (
<Radio key={key} value={key}>
{cfg.label}
</Radio>
))}
</RadioGroup>
</div>
<div>
<div style={fieldLabelStyle}>{t('名称')}</div>
<Input
value={name}
onChange={setName}
placeholder={currentConfig.defaultName}
/>
</div>
{currentConfig.modelFields.map((field) => (
<div key={field.key}>
<div style={fieldLabelStyle}>
{t(field.label)}
{field.key === 'model' && (
<Typography.Text type='danger'> *</Typography.Text>
)}
</div>
<Select
placeholder={t('请选择模型')}
optionList={modelOptions}
value={models[field.key] || undefined}
onChange={(val) => handleModelChange(field.key, val)}
filter={selectFilter}
style={{ width: '100%' }}
showClear
searchable
emptyContent={t('暂无数据')}
/>
</div>
))}
</div>
</Modal>
);
}
|