[PR #46] [CLOSED] feat: Implement a visual configuration page for proxy API management … #78

Closed
opened 2026-02-27 16:42:28 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/router-for-me/Cli-Proxy-API-Management-Center/pull/46
Author: @AoaoMH
Created: 1/4/2026
Status: Closed

Base: mainHead: feature/Visual-configuration-editing


📝 Commits (6)

  • 69ddc2d feat: Implement a visual configuration page for proxy API management settings.
  • ec16a33 feat: introduce OAuth model mappings UI, add yaml dependency and yamlPatch utility.
  • 5491496 feat: Add visual configuration UI for various settings with new components and utilities.
  • b1d6d71 feat: Introduce ConfigPage with YAML editor, visual configuration, and a new ContentTransition component.
  • 3b848ec Merge branch 'router-for-me:main' into feature/Visual-configuration-editing
  • c70572c feat: 支持payload

📊 Changes

21 files changed (+3126 additions, -120 deletions)

View changed files

📝 package-lock.json (+16 -0)
📝 package.json (+1 -0)
src/components/common/ContentTransition.scss (+30 -0)
src/components/common/ContentTransition.tsx (+151 -0)
📝 src/components/ui/ToggleSwitch.tsx (+8 -2)
📝 src/i18n/locales/en.json (+133 -1)
📝 src/i18n/locales/zh-CN.json (+133 -1)
📝 src/pages/ConfigPage.module.scss (+338 -1)
📝 src/pages/ConfigPage.tsx (+240 -115)
src/pages/ConfigPage/visual/components/AmpIntegrationSection.tsx (+167 -0)
src/pages/ConfigPage/visual/components/AuthSection.tsx (+33 -0)
src/pages/ConfigPage/visual/components/ManagementSection.tsx (+60 -0)
src/pages/ConfigPage/visual/components/OauthModelMappingsSection.tsx (+208 -0)
src/pages/ConfigPage/visual/components/PayloadSection.tsx (+329 -0)
src/pages/ConfigPage/visual/components/ServerSection.tsx (+29 -0)
src/pages/ConfigPage/visual/components/TlsSection.tsx (+44 -0)
src/pages/ConfigPage/visual/components/sectionTypes.ts (+11 -0)
src/pages/ConfigPage/visual/types.ts (+107 -0)
src/pages/ConfigPage/visual/useVisualConfig.ts (+791 -0)
📝 src/styles/components.scss (+25 -0)

...and 1 more files

📄 Description

支持可视化配置。


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/router-for-me/Cli-Proxy-API-Management-Center/pull/46 **Author:** [@AoaoMH](https://github.com/AoaoMH) **Created:** 1/4/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/Visual-configuration-editing` --- ### 📝 Commits (6) - [`69ddc2d`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/69ddc2dab4d96528fbfb45167a7f094511f283ea) feat: Implement a visual configuration page for proxy API management settings. - [`ec16a33`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/ec16a336c36ee9bec08203f16fde1980bc847b08) feat: introduce OAuth model mappings UI, add `yaml` dependency and `yamlPatch` utility. - [`5491496`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/5491496f0badfb7418a88d6152e093cc998e2bc0) feat: Add visual configuration UI for various settings with new components and utilities. - [`b1d6d71`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/b1d6d71b88e46c01ba771ac91d0584c7bf51e755) feat: Introduce `ConfigPage` with YAML editor, visual configuration, and a new `ContentTransition` component. - [`3b848ec`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/3b848ec6cc472689045ab1db56e5231c7277819f) Merge branch 'router-for-me:main' into feature/Visual-configuration-editing - [`c70572c`](https://github.com/router-for-me/Cli-Proxy-API-Management-Center/commit/c70572c159d1ece1f6aae100c0c449ebcf39c13b) feat: 支持payload ### 📊 Changes **21 files changed** (+3126 additions, -120 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+16 -0) 📝 `package.json` (+1 -0) ➕ `src/components/common/ContentTransition.scss` (+30 -0) ➕ `src/components/common/ContentTransition.tsx` (+151 -0) 📝 `src/components/ui/ToggleSwitch.tsx` (+8 -2) 📝 `src/i18n/locales/en.json` (+133 -1) 📝 `src/i18n/locales/zh-CN.json` (+133 -1) 📝 `src/pages/ConfigPage.module.scss` (+338 -1) 📝 `src/pages/ConfigPage.tsx` (+240 -115) ➕ `src/pages/ConfigPage/visual/components/AmpIntegrationSection.tsx` (+167 -0) ➕ `src/pages/ConfigPage/visual/components/AuthSection.tsx` (+33 -0) ➕ `src/pages/ConfigPage/visual/components/ManagementSection.tsx` (+60 -0) ➕ `src/pages/ConfigPage/visual/components/OauthModelMappingsSection.tsx` (+208 -0) ➕ `src/pages/ConfigPage/visual/components/PayloadSection.tsx` (+329 -0) ➕ `src/pages/ConfigPage/visual/components/ServerSection.tsx` (+29 -0) ➕ `src/pages/ConfigPage/visual/components/TlsSection.tsx` (+44 -0) ➕ `src/pages/ConfigPage/visual/components/sectionTypes.ts` (+11 -0) ➕ `src/pages/ConfigPage/visual/types.ts` (+107 -0) ➕ `src/pages/ConfigPage/visual/useVisualConfig.ts` (+791 -0) 📝 `src/styles/components.scss` (+25 -0) _...and 1 more files_ </details> ### 📄 Description 支持可视化配置。 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 16:42:28 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Cli-Proxy-API-Management-Center#78
No description provided.