2025-10-16 21:40:42 +08:00
|
|
|
|
import { useTranslation } from "react-i18next";
|
2025-10-17 14:31:34 +08:00
|
|
|
|
import EndpointSpeedTest from "./EndpointSpeedTest";
|
|
|
|
|
|
import { ApiKeySection, EndpointField } from "./shared";
|
2025-10-16 21:40:42 +08:00
|
|
|
|
import type { ProviderCategory } from "@/types";
|
|
|
|
|
|
|
2025-10-16 22:41:36 +08:00
|
|
|
|
interface EndpointCandidate {
|
|
|
|
|
|
url: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-16 21:40:42 +08:00
|
|
|
|
interface CodexFormFieldsProps {
|
2025-11-04 15:30:54 +08:00
|
|
|
|
providerId?: string;
|
2025-10-16 21:40:42 +08:00
|
|
|
|
// API Key
|
|
|
|
|
|
codexApiKey: string;
|
|
|
|
|
|
onApiKeyChange: (key: string) => void;
|
|
|
|
|
|
category?: ProviderCategory;
|
|
|
|
|
|
shouldShowApiKeyLink: boolean;
|
|
|
|
|
|
websiteUrl: string;
|
2025-11-06 15:22:38 +08:00
|
|
|
|
isPartner?: boolean;
|
|
|
|
|
|
partnerPromotionKey?: string;
|
2025-10-16 21:40:42 +08:00
|
|
|
|
|
|
|
|
|
|
// Base URL
|
|
|
|
|
|
shouldShowSpeedTest: boolean;
|
|
|
|
|
|
codexBaseUrl: string;
|
|
|
|
|
|
onBaseUrlChange: (url: string) => void;
|
|
|
|
|
|
isEndpointModalOpen: boolean;
|
|
|
|
|
|
onEndpointModalToggle: (open: boolean) => void;
|
2025-11-12 11:02:43 +08:00
|
|
|
|
onCustomEndpointsChange?: (endpoints: string[]) => void;
|
2025-10-16 22:41:36 +08:00
|
|
|
|
|
feat: add model configuration support and fix Gemini deeplink bug (#251)
* feat(providers): add notes field for provider management
- Add notes field to Provider model (backend and frontend)
- Display notes with higher priority than URL in provider card
- Style notes as non-clickable text to differentiate from URLs
- Add notes input field in provider form
- Add i18n support (zh/en) for notes field
* chore: format code and clean up unused props
- Run cargo fmt on Rust backend code
- Format TypeScript imports and code style
- Remove unused appId prop from ProviderPresetSelector
- Clean up unused variables in tests
- Integrate notes field handling in provider dialogs
* feat(deeplink): implement ccswitch:// protocol for provider import
Add deep link support to enable one-click provider configuration import via ccswitch:// URLs.
Backend:
- Implement URL parsing and validation (src-tauri/src/deeplink.rs)
- Add Tauri commands for parse and import (src-tauri/src/commands/deeplink.rs)
- Register ccswitch:// protocol in macOS Info.plist
- Add comprehensive unit tests (src-tauri/tests/deeplink_import.rs)
Frontend:
- Create confirmation dialog with security review UI (src/components/DeepLinkImportDialog.tsx)
- Add API wrapper (src/lib/api/deeplink.ts)
- Integrate event listeners in App.tsx
Configuration:
- Update Tauri config for deep link handling
- Add i18n support for Chinese and English
- Include test page for deep link validation (deeplink-test.html)
Files: 15 changed, 1312 insertions(+)
* chore(deeplink): integrate deep link handling into app lifecycle
Wire up deep link infrastructure with app initialization and event handling.
Backend Integration:
- Register deep link module and commands in mod.rs
- Add URL handling in app setup (src-tauri/src/lib.rs:handle_deeplink_url)
- Handle deep links from single instance callback (Windows/Linux CLI)
- Handle deep links from macOS system events
- Add tauri-plugin-deep-link dependency (Cargo.toml)
Frontend Integration:
- Listen for deeplink-import/deeplink-error events in App.tsx
- Update DeepLinkImportDialog component imports
Configuration:
- Enable deep link plugin in tauri.conf.json
- Update Cargo.lock for new dependencies
Localization:
- Add Chinese translations for deep link UI (zh.json)
- Add English translations for deep link UI (en.json)
Files: 9 changed, 359 insertions(+), 18 deletions(-)
* refactor(deeplink): enhance Codex provider template generation
Align deep link import with UI preset generation logic by:
- Adding complete config.toml template matching frontend defaults
- Generating safe provider name from sanitized input
- Including model_provider, reasoning_effort, and wire_api settings
- Removing minimal template that only contained base_url
- Cleaning up deprecated test file deeplink-test.html
* style: fix clippy uninlined_format_args warnings
Apply clippy --fix to use inline format arguments in:
- src/mcp.rs (8 fixes)
- src/services/env_manager.rs (10 fixes)
* style: apply code formatting and cleanup
- Format TypeScript files with Prettier (App.tsx, EnvWarningBanner.tsx, formatters.ts)
- Organize Rust imports and module order alphabetically
- Add newline at end of JSON files (en.json, zh.json)
- Update Cargo.lock for dependency changes
* feat: add model name configuration support for Codex and fix Gemini model handling
- Add visual model name input field for Codex providers
- Add model name extraction and update utilities in providerConfigUtils
- Implement model name state management in useCodexConfigState hook
- Add conditional model field rendering in CodexFormFields (non-official only)
- Integrate model name sync with TOML config in ProviderForm
- Fix Gemini deeplink model injection bug
- Correct environment variable name from GOOGLE_GEMINI_MODEL to GEMINI_MODEL
- Add test cases for Gemini model injection (with/without model)
- All tests passing (9/9)
- Fix Gemini model field binding in edit mode
- Add geminiModel state to useGeminiConfigState hook
- Extract model value during initialization and reset
- Sync model field with geminiEnv state to prevent data loss on submit
- Fix missing model value display when editing Gemini providers
Changes:
- 6 files changed, 245 insertions(+), 13 deletions(-)
2025-11-19 09:03:18 +08:00
|
|
|
|
// Model Name
|
|
|
|
|
|
shouldShowModelField?: boolean;
|
|
|
|
|
|
modelName?: string;
|
|
|
|
|
|
onModelNameChange?: (model: string) => void;
|
|
|
|
|
|
|
2025-10-16 22:41:36 +08:00
|
|
|
|
// Speed Test Endpoints
|
|
|
|
|
|
speedTestEndpoints: EndpointCandidate[];
|
2025-10-16 21:40:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function CodexFormFields({
|
2025-11-04 15:30:54 +08:00
|
|
|
|
providerId,
|
2025-10-16 21:40:42 +08:00
|
|
|
|
codexApiKey,
|
|
|
|
|
|
onApiKeyChange,
|
|
|
|
|
|
category,
|
|
|
|
|
|
shouldShowApiKeyLink,
|
|
|
|
|
|
websiteUrl,
|
2025-11-06 15:22:38 +08:00
|
|
|
|
isPartner,
|
|
|
|
|
|
partnerPromotionKey,
|
2025-10-16 21:40:42 +08:00
|
|
|
|
shouldShowSpeedTest,
|
|
|
|
|
|
codexBaseUrl,
|
|
|
|
|
|
onBaseUrlChange,
|
|
|
|
|
|
isEndpointModalOpen,
|
|
|
|
|
|
onEndpointModalToggle,
|
|
|
|
|
|
onCustomEndpointsChange,
|
feat: add model configuration support and fix Gemini deeplink bug (#251)
* feat(providers): add notes field for provider management
- Add notes field to Provider model (backend and frontend)
- Display notes with higher priority than URL in provider card
- Style notes as non-clickable text to differentiate from URLs
- Add notes input field in provider form
- Add i18n support (zh/en) for notes field
* chore: format code and clean up unused props
- Run cargo fmt on Rust backend code
- Format TypeScript imports and code style
- Remove unused appId prop from ProviderPresetSelector
- Clean up unused variables in tests
- Integrate notes field handling in provider dialogs
* feat(deeplink): implement ccswitch:// protocol for provider import
Add deep link support to enable one-click provider configuration import via ccswitch:// URLs.
Backend:
- Implement URL parsing and validation (src-tauri/src/deeplink.rs)
- Add Tauri commands for parse and import (src-tauri/src/commands/deeplink.rs)
- Register ccswitch:// protocol in macOS Info.plist
- Add comprehensive unit tests (src-tauri/tests/deeplink_import.rs)
Frontend:
- Create confirmation dialog with security review UI (src/components/DeepLinkImportDialog.tsx)
- Add API wrapper (src/lib/api/deeplink.ts)
- Integrate event listeners in App.tsx
Configuration:
- Update Tauri config for deep link handling
- Add i18n support for Chinese and English
- Include test page for deep link validation (deeplink-test.html)
Files: 15 changed, 1312 insertions(+)
* chore(deeplink): integrate deep link handling into app lifecycle
Wire up deep link infrastructure with app initialization and event handling.
Backend Integration:
- Register deep link module and commands in mod.rs
- Add URL handling in app setup (src-tauri/src/lib.rs:handle_deeplink_url)
- Handle deep links from single instance callback (Windows/Linux CLI)
- Handle deep links from macOS system events
- Add tauri-plugin-deep-link dependency (Cargo.toml)
Frontend Integration:
- Listen for deeplink-import/deeplink-error events in App.tsx
- Update DeepLinkImportDialog component imports
Configuration:
- Enable deep link plugin in tauri.conf.json
- Update Cargo.lock for new dependencies
Localization:
- Add Chinese translations for deep link UI (zh.json)
- Add English translations for deep link UI (en.json)
Files: 9 changed, 359 insertions(+), 18 deletions(-)
* refactor(deeplink): enhance Codex provider template generation
Align deep link import with UI preset generation logic by:
- Adding complete config.toml template matching frontend defaults
- Generating safe provider name from sanitized input
- Including model_provider, reasoning_effort, and wire_api settings
- Removing minimal template that only contained base_url
- Cleaning up deprecated test file deeplink-test.html
* style: fix clippy uninlined_format_args warnings
Apply clippy --fix to use inline format arguments in:
- src/mcp.rs (8 fixes)
- src/services/env_manager.rs (10 fixes)
* style: apply code formatting and cleanup
- Format TypeScript files with Prettier (App.tsx, EnvWarningBanner.tsx, formatters.ts)
- Organize Rust imports and module order alphabetically
- Add newline at end of JSON files (en.json, zh.json)
- Update Cargo.lock for dependency changes
* feat: add model name configuration support for Codex and fix Gemini model handling
- Add visual model name input field for Codex providers
- Add model name extraction and update utilities in providerConfigUtils
- Implement model name state management in useCodexConfigState hook
- Add conditional model field rendering in CodexFormFields (non-official only)
- Integrate model name sync with TOML config in ProviderForm
- Fix Gemini deeplink model injection bug
- Correct environment variable name from GOOGLE_GEMINI_MODEL to GEMINI_MODEL
- Add test cases for Gemini model injection (with/without model)
- All tests passing (9/9)
- Fix Gemini model field binding in edit mode
- Add geminiModel state to useGeminiConfigState hook
- Extract model value during initialization and reset
- Sync model field with geminiEnv state to prevent data loss on submit
- Fix missing model value display when editing Gemini providers
Changes:
- 6 files changed, 245 insertions(+), 13 deletions(-)
2025-11-19 09:03:18 +08:00
|
|
|
|
shouldShowModelField = true,
|
|
|
|
|
|
modelName = "",
|
|
|
|
|
|
onModelNameChange,
|
2025-10-16 22:41:36 +08:00
|
|
|
|
speedTestEndpoints,
|
2025-10-16 21:40:42 +08:00
|
|
|
|
}: CodexFormFieldsProps) {
|
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
{/* Codex API Key 输入框 */}
|
2025-10-17 14:31:34 +08:00
|
|
|
|
<ApiKeySection
|
|
|
|
|
|
id="codexApiKey"
|
|
|
|
|
|
label="API Key"
|
|
|
|
|
|
value={codexApiKey}
|
|
|
|
|
|
onChange={onApiKeyChange}
|
|
|
|
|
|
category={category}
|
|
|
|
|
|
shouldShowLink={shouldShowApiKeyLink}
|
|
|
|
|
|
websiteUrl={websiteUrl}
|
2025-11-06 15:22:38 +08:00
|
|
|
|
isPartner={isPartner}
|
|
|
|
|
|
partnerPromotionKey={partnerPromotionKey}
|
2025-10-17 14:31:34 +08:00
|
|
|
|
placeholder={{
|
|
|
|
|
|
official: t("providerForm.codexOfficialNoApiKey", {
|
|
|
|
|
|
defaultValue: "官方供应商无需 API Key",
|
|
|
|
|
|
}),
|
|
|
|
|
|
thirdParty: t("providerForm.codexApiKeyAutoFill", {
|
|
|
|
|
|
defaultValue: "输入 API Key,将自动填充到配置",
|
|
|
|
|
|
}),
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
2025-10-16 21:40:42 +08:00
|
|
|
|
|
|
|
|
|
|
{/* Codex Base URL 输入框 */}
|
|
|
|
|
|
{shouldShowSpeedTest && (
|
2025-10-17 14:31:34 +08:00
|
|
|
|
<EndpointField
|
|
|
|
|
|
id="codexBaseUrl"
|
2025-10-19 11:55:46 +08:00
|
|
|
|
label={t("codexConfig.apiUrlLabel")}
|
2025-10-17 14:31:34 +08:00
|
|
|
|
value={codexBaseUrl}
|
|
|
|
|
|
onChange={onBaseUrlChange}
|
2025-10-19 11:55:46 +08:00
|
|
|
|
placeholder={t("providerForm.codexApiEndpointPlaceholder")}
|
|
|
|
|
|
hint={t("providerForm.codexApiHint")}
|
2025-10-17 14:31:34 +08:00
|
|
|
|
onManageClick={() => onEndpointModalToggle(true)}
|
|
|
|
|
|
/>
|
2025-10-16 21:40:42 +08:00
|
|
|
|
)}
|
|
|
|
|
|
|
feat: add model configuration support and fix Gemini deeplink bug (#251)
* feat(providers): add notes field for provider management
- Add notes field to Provider model (backend and frontend)
- Display notes with higher priority than URL in provider card
- Style notes as non-clickable text to differentiate from URLs
- Add notes input field in provider form
- Add i18n support (zh/en) for notes field
* chore: format code and clean up unused props
- Run cargo fmt on Rust backend code
- Format TypeScript imports and code style
- Remove unused appId prop from ProviderPresetSelector
- Clean up unused variables in tests
- Integrate notes field handling in provider dialogs
* feat(deeplink): implement ccswitch:// protocol for provider import
Add deep link support to enable one-click provider configuration import via ccswitch:// URLs.
Backend:
- Implement URL parsing and validation (src-tauri/src/deeplink.rs)
- Add Tauri commands for parse and import (src-tauri/src/commands/deeplink.rs)
- Register ccswitch:// protocol in macOS Info.plist
- Add comprehensive unit tests (src-tauri/tests/deeplink_import.rs)
Frontend:
- Create confirmation dialog with security review UI (src/components/DeepLinkImportDialog.tsx)
- Add API wrapper (src/lib/api/deeplink.ts)
- Integrate event listeners in App.tsx
Configuration:
- Update Tauri config for deep link handling
- Add i18n support for Chinese and English
- Include test page for deep link validation (deeplink-test.html)
Files: 15 changed, 1312 insertions(+)
* chore(deeplink): integrate deep link handling into app lifecycle
Wire up deep link infrastructure with app initialization and event handling.
Backend Integration:
- Register deep link module and commands in mod.rs
- Add URL handling in app setup (src-tauri/src/lib.rs:handle_deeplink_url)
- Handle deep links from single instance callback (Windows/Linux CLI)
- Handle deep links from macOS system events
- Add tauri-plugin-deep-link dependency (Cargo.toml)
Frontend Integration:
- Listen for deeplink-import/deeplink-error events in App.tsx
- Update DeepLinkImportDialog component imports
Configuration:
- Enable deep link plugin in tauri.conf.json
- Update Cargo.lock for new dependencies
Localization:
- Add Chinese translations for deep link UI (zh.json)
- Add English translations for deep link UI (en.json)
Files: 9 changed, 359 insertions(+), 18 deletions(-)
* refactor(deeplink): enhance Codex provider template generation
Align deep link import with UI preset generation logic by:
- Adding complete config.toml template matching frontend defaults
- Generating safe provider name from sanitized input
- Including model_provider, reasoning_effort, and wire_api settings
- Removing minimal template that only contained base_url
- Cleaning up deprecated test file deeplink-test.html
* style: fix clippy uninlined_format_args warnings
Apply clippy --fix to use inline format arguments in:
- src/mcp.rs (8 fixes)
- src/services/env_manager.rs (10 fixes)
* style: apply code formatting and cleanup
- Format TypeScript files with Prettier (App.tsx, EnvWarningBanner.tsx, formatters.ts)
- Organize Rust imports and module order alphabetically
- Add newline at end of JSON files (en.json, zh.json)
- Update Cargo.lock for dependency changes
* feat: add model name configuration support for Codex and fix Gemini model handling
- Add visual model name input field for Codex providers
- Add model name extraction and update utilities in providerConfigUtils
- Implement model name state management in useCodexConfigState hook
- Add conditional model field rendering in CodexFormFields (non-official only)
- Integrate model name sync with TOML config in ProviderForm
- Fix Gemini deeplink model injection bug
- Correct environment variable name from GOOGLE_GEMINI_MODEL to GEMINI_MODEL
- Add test cases for Gemini model injection (with/without model)
- All tests passing (9/9)
- Fix Gemini model field binding in edit mode
- Add geminiModel state to useGeminiConfigState hook
- Extract model value during initialization and reset
- Sync model field with geminiEnv state to prevent data loss on submit
- Fix missing model value display when editing Gemini providers
Changes:
- 6 files changed, 245 insertions(+), 13 deletions(-)
2025-11-19 09:03:18 +08:00
|
|
|
|
{/* Codex Model Name 输入框 */}
|
|
|
|
|
|
{shouldShowModelField && onModelNameChange && (
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
|
<label
|
|
|
|
|
|
htmlFor="codexModelName"
|
|
|
|
|
|
className="block text-sm font-medium text-gray-900 dark:text-gray-100"
|
|
|
|
|
|
>
|
|
|
|
|
|
{t("codexConfig.modelName", { defaultValue: "模型名称" })}
|
|
|
|
|
|
</label>
|
|
|
|
|
|
<input
|
|
|
|
|
|
id="codexModelName"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
value={modelName}
|
|
|
|
|
|
onChange={(e) => onModelNameChange(e.target.value)}
|
|
|
|
|
|
placeholder={t("codexConfig.modelNamePlaceholder", {
|
|
|
|
|
|
defaultValue: "例如: gpt-5-codex",
|
|
|
|
|
|
})}
|
|
|
|
|
|
className="w-full px-3 py-2 border border-border-default dark:bg-gray-800 dark:text-gray-100 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500/20 dark:focus:ring-blue-400/20 transition-colors"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<p className="text-xs text-gray-500 dark:text-gray-400">
|
|
|
|
|
|
{t("codexConfig.modelNameHint", {
|
|
|
|
|
|
defaultValue: "指定使用的模型,将自动更新到 config.toml 中",
|
|
|
|
|
|
})}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2025-10-16 21:40:42 +08:00
|
|
|
|
{/* 端点测速弹窗 - Codex */}
|
|
|
|
|
|
{shouldShowSpeedTest && isEndpointModalOpen && (
|
|
|
|
|
|
<EndpointSpeedTest
|
2025-10-30 14:59:15 +08:00
|
|
|
|
appId="codex"
|
2025-11-04 15:30:54 +08:00
|
|
|
|
providerId={providerId}
|
2025-10-16 21:40:42 +08:00
|
|
|
|
value={codexBaseUrl}
|
|
|
|
|
|
onChange={onBaseUrlChange}
|
2025-10-16 22:41:36 +08:00
|
|
|
|
initialEndpoints={speedTestEndpoints}
|
2025-10-16 21:40:42 +08:00
|
|
|
|
visible={isEndpointModalOpen}
|
|
|
|
|
|
onClose={() => onEndpointModalToggle(false)}
|
|
|
|
|
|
onCustomEndpointsChange={onCustomEndpointsChange}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|