Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
451afdb660 | ||
|
|
d298bda92c | ||
|
|
fd99ba6255 | ||
|
|
6ade0b2b1a | ||
|
|
9902003da9 | ||
|
|
0ff2fcac11 | ||
|
|
e80be8e7b6 | ||
|
|
fe0ad0f5cb | ||
|
|
cb8e162f4e | ||
|
|
ae8c30fe57 | ||
|
|
ab82db9e22 | ||
|
|
cb9d3098de | ||
|
|
c927419c99 | ||
|
|
c009026961 | ||
|
|
51cf442fa5 | ||
|
|
954e3553ee | ||
|
|
cde17385b4 | ||
|
|
5b9e078061 | ||
|
|
0290d9ddfc | ||
|
|
eab671d102 | ||
|
|
f9a96ff914 | ||
|
|
3ec2b46d28 | ||
|
|
aec30b89e0 | ||
|
|
309c33e190 | ||
|
|
9c0276f97b | ||
|
|
0a3402ff43 | ||
|
|
bd82308024 | ||
|
|
db3b634e62 | ||
|
|
40bcb22977 | ||
|
|
4bd94092f1 | ||
|
|
cac1ce6895 | ||
|
|
5c3696123a | ||
|
|
4140fc86ee | ||
|
|
2ad771e7fd | ||
|
|
5a38468144 | ||
|
|
0a9c81772f | ||
|
|
c9649ac501 | ||
|
|
6ea567742b | ||
|
|
f31349eaa0 | ||
|
|
9d44668d5f | ||
|
|
a12f58c1c7 | ||
|
|
b5283eaaed | ||
|
|
4b6189af5f | ||
|
|
5d0ffbe453 | ||
|
|
502706931e | ||
|
|
57c411288f | ||
|
|
b09b7b11a1 |
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -106,7 +106,7 @@ jobs:
|
|||||||
- name: Yarn install
|
- name: Yarn install
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
|
||||||
- name: Release update.json
|
- name: Release updater file
|
||||||
run: yarn run release
|
run: yarn run updater
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
32
.github/workflows/updater.yml
vendored
Normal file
32
.github/workflows/updater.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
name: Updater CI
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release-update:
|
||||||
|
runs-on: macos-latest
|
||||||
|
if: startsWith(github.repository, 'zzzgydi')
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Get yarn cache dir path
|
||||||
|
id: yarn-cache-dir-path
|
||||||
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||||
|
|
||||||
|
- name: Yarn Cache
|
||||||
|
uses: actions/cache@v2
|
||||||
|
id: yarn-cache
|
||||||
|
with:
|
||||||
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
||||||
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-yarn-
|
||||||
|
|
||||||
|
- name: Yarn install
|
||||||
|
run: yarn install
|
||||||
|
|
||||||
|
- name: Release updater file
|
||||||
|
run: yarn run updater
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
14
README.md
14
README.md
@@ -12,7 +12,8 @@ A <a href="https://github.com/Dreamacro/clash">Clash</a> GUI based on <a href="h
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Full `clash` config supported, Partial `clash premium` config supported.
|
- Full `clash` config supported, Partial `clash premium` config supported.
|
||||||
- Profiles management and enhancement (by yaml and Javascript).
|
- Profiles management and enhancement (by yaml and Javascript). [Doc](https://github.com/zzzgydi/clash-verge/issues/12)
|
||||||
|
- Simple UI and supports custom theme color.
|
||||||
- System proxy setting and guard.
|
- System proxy setting and guard.
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
@@ -64,6 +65,17 @@ yarn build
|
|||||||
<img src="./docs/demo6.png" alt="demo6" width="32%" />
|
<img src="./docs/demo6.png" alt="demo6" width="32%" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
### Custom Theme
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<img src="./docs/color1.png" alt="demo1" width="16%" />
|
||||||
|
<img src="./docs/color2.png" alt="demo2" width="16%" />
|
||||||
|
<img src="./docs/color3.png" alt="demo3" width="16%" />
|
||||||
|
<img src="./docs/color4.png" alt="demo4" width="16%" />
|
||||||
|
<img src="./docs/color5.png" alt="demo5" width="16%" />
|
||||||
|
<img src="./docs/color6.png" alt="demo6" width="16%" />
|
||||||
|
</div>
|
||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
This is a learning project for Rust practice.
|
This is a learning project for Rust practice.
|
||||||
|
|||||||
43
UPDATELOG.md
43
UPDATELOG.md
@@ -1,3 +1,46 @@
|
|||||||
|
## v0.0.28
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- enable to use clash config fields (UI)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- remove the character
|
||||||
|
- fix some icon color
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v0.0.27
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- supports custom theme color
|
||||||
|
- tun mode setting control the final config
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- fix transition flickers (macOS)
|
||||||
|
- reduce proxy page render
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v0.0.26
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- silent start
|
||||||
|
- profile editor
|
||||||
|
- profile enhance mode supports more fields
|
||||||
|
- optimize profile enhance mode strategy
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- fix csp restriction on macOS
|
||||||
|
- window controllers on Linux
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v0.0.25
|
## v0.0.25
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
BIN
docs/color1.png
Normal file
BIN
docs/color1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/color2.png
Normal file
BIN
docs/color2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
BIN
docs/color3.png
Normal file
BIN
docs/color3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/color4.png
Normal file
BIN
docs/color4.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
BIN
docs/color5.png
Normal file
BIN
docs/color5.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
BIN
docs/color6.png
Normal file
BIN
docs/color6.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
28
package.json
28
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "clash-verge",
|
"name": "clash-verge",
|
||||||
"version": "0.0.25",
|
"version": "0.0.28",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "tauri dev",
|
"dev": "tauri dev",
|
||||||
@@ -12,33 +12,35 @@
|
|||||||
"check": "node scripts/check.mjs",
|
"check": "node scripts/check.mjs",
|
||||||
"green": "node scripts/green.mjs",
|
"green": "node scripts/green.mjs",
|
||||||
"publish": "node scripts/publish.mjs",
|
"publish": "node scripts/publish.mjs",
|
||||||
"release": "node scripts/release.mjs",
|
"updater": "node scripts/updater.mjs",
|
||||||
"prepare": "husky install"
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.8.1",
|
"@emotion/react": "^11.8.2",
|
||||||
"@emotion/styled": "^11.8.1",
|
"@emotion/styled": "^11.8.1",
|
||||||
"@mui/icons-material": "^5.4.4",
|
"@mui/icons-material": "^5.5.1",
|
||||||
"@mui/material": "^5.4.4",
|
"@mui/material": "^5.5.3",
|
||||||
"@tauri-apps/api": "^1.0.0-rc.2",
|
"@tauri-apps/api": "^1.0.0-rc.3",
|
||||||
"ahooks": "^3.1.13",
|
"ahooks": "^3.2.0",
|
||||||
"axios": "^0.26.0",
|
"axios": "^0.26.0",
|
||||||
"dayjs": "^1.10.8",
|
"dayjs": "^1.11.0",
|
||||||
"i18next": "^21.6.14",
|
"i18next": "^21.6.14",
|
||||||
|
"monaco-editor": "^0.33.0",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
"react-i18next": "^11.15.6",
|
"react-i18next": "^11.15.6",
|
||||||
"react-router-dom": "^6.2.2",
|
"react-router-dom": "^6.2.2",
|
||||||
"react-virtuoso": "^2.7.0",
|
"react-virtuoso": "~2.7.2",
|
||||||
"recoil": "^0.6.1",
|
"recoil": "^0.6.1",
|
||||||
"snarkdown": "^2.0.0",
|
"snarkdown": "^2.0.0",
|
||||||
"swr": "^1.2.1"
|
"swr": "^1.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@actions/github": "^5.0.0",
|
"@actions/github": "^5.0.0",
|
||||||
"@tauri-apps/cli": "^1.0.0-rc.7",
|
"@tauri-apps/cli": "^1.0.0-rc.8",
|
||||||
"@types/fs-extra": "^9.0.13",
|
"@types/fs-extra": "^9.0.13",
|
||||||
"@types/js-cookie": "^3.0.1",
|
"@types/js-cookie": "^3.0.1",
|
||||||
|
"@types/lodash": "^4.14.180",
|
||||||
"@types/react": "^17.0.0",
|
"@types/react": "^17.0.0",
|
||||||
"@types/react-dom": "^17.0.0",
|
"@types/react-dom": "^17.0.0",
|
||||||
"@vitejs/plugin-react": "^1.2.0",
|
"@vitejs/plugin-react": "^1.2.0",
|
||||||
@@ -49,7 +51,9 @@
|
|||||||
"pretty-quick": "^3.1.3",
|
"pretty-quick": "^3.1.3",
|
||||||
"sass": "^1.49.7",
|
"sass": "^1.49.7",
|
||||||
"typescript": "^4.5.5",
|
"typescript": "^4.5.5",
|
||||||
"vite": "^2.8.6"
|
"vite": "^2.8.6",
|
||||||
|
"vite-plugin-monaco-editor": "^1.0.10",
|
||||||
|
"vite-plugin-svgr": "^1.1.0"
|
||||||
},
|
},
|
||||||
"prettier": {
|
"prettier": {
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ const UPDATE_JSON_PROXY = "update-proxy.json";
|
|||||||
|
|
||||||
/// generate update.json
|
/// generate update.json
|
||||||
/// upload to update tag's release asset
|
/// upload to update tag's release asset
|
||||||
async function resolveRelease() {
|
async function resolveUpdater() {
|
||||||
if (process.env.GITHUB_TOKEN === undefined) {
|
if (process.env.GITHUB_TOKEN === undefined) {
|
||||||
throw new Error("GITHUB_TOKEN is required");
|
throw new Error("GITHUB_TOKEN is required");
|
||||||
}
|
}
|
||||||
@@ -38,9 +38,14 @@ async function resolveRelease() {
|
|||||||
notes: await resolveUpdateLog(tag.name), // use updatelog.md
|
notes: await resolveUpdateLog(tag.name), // use updatelog.md
|
||||||
pub_date: new Date().toISOString(),
|
pub_date: new Date().toISOString(),
|
||||||
platforms: {
|
platforms: {
|
||||||
win64: { signature: "", url: "" },
|
win64: { signature: "", url: "" }, // compatible with older formats
|
||||||
linux: { signature: "", url: "" },
|
linux: { signature: "", url: "" }, // compatible with older formats
|
||||||
darwin: { signature: "", url: "" },
|
darwin: { signature: "", url: "" }, // compatible with older formats
|
||||||
|
"darwin-aarch64": { signature: "", url: "" },
|
||||||
|
"darwin-intel": { signature: "", url: "" },
|
||||||
|
"linux-x86_64": { signature: "", url: "" },
|
||||||
|
"windows-x86_64": { signature: "", url: "" },
|
||||||
|
"windows-i686": { signature: "", url: "" }, // no supported
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -48,36 +53,49 @@ async function resolveRelease() {
|
|||||||
const { name, browser_download_url } = asset;
|
const { name, browser_download_url } = asset;
|
||||||
|
|
||||||
// win64 url
|
// win64 url
|
||||||
if (/\.msi\.zip$/.test(name)) {
|
if (name.endsWith(".msi.zip")) {
|
||||||
updateData.platforms.win64.url = browser_download_url;
|
updateData.platforms.win64.url = browser_download_url;
|
||||||
|
updateData.platforms["windows-x86_64"].url = browser_download_url;
|
||||||
}
|
}
|
||||||
// win64 signature
|
// win64 signature
|
||||||
if (/\.msi\.zip\.sig$/.test(name)) {
|
if (name.endsWith(".msi.zip.sig")) {
|
||||||
updateData.platforms.win64.signature = await getSignature(
|
const sig = await getSignature(browser_download_url);
|
||||||
browser_download_url
|
updateData.platforms.win64.signature = sig;
|
||||||
);
|
updateData.platforms["windows-x86_64"].signature = sig;
|
||||||
}
|
}
|
||||||
|
|
||||||
// darwin url
|
// darwin url (intel)
|
||||||
if (/\.app\.tar\.gz$/.test(name)) {
|
if (name.endsWith(".app.tar.gz") && !name.includes("aarch")) {
|
||||||
updateData.platforms.darwin.url = browser_download_url;
|
updateData.platforms.darwin.url = browser_download_url;
|
||||||
|
updateData.platforms["darwin-intel"].url = browser_download_url;
|
||||||
}
|
}
|
||||||
// darwin signature
|
// darwin signature (intel)
|
||||||
if (/\.app\.tar\.gz\.sig$/.test(name)) {
|
if (name.endsWith(".app.tar.gz.sig") && !name.includes("aarch")) {
|
||||||
updateData.platforms.darwin.signature = await getSignature(
|
const sig = await getSignature(browser_download_url);
|
||||||
browser_download_url
|
updateData.platforms.darwin.signature = sig;
|
||||||
);
|
updateData.platforms["darwin-intel"].signature = sig;
|
||||||
|
}
|
||||||
|
|
||||||
|
// darwin url (aarch)
|
||||||
|
if (name.endsWith("aarch.app.tar.gz")) {
|
||||||
|
updateData.platforms["darwin-aarch64"].url = browser_download_url;
|
||||||
|
}
|
||||||
|
// darwin signature (aarch)
|
||||||
|
if (name.endsWith("aarch.app.tar.gz.sig")) {
|
||||||
|
const sig = await getSignature(browser_download_url);
|
||||||
|
updateData.platforms["darwin-aarch64"].signature = sig;
|
||||||
}
|
}
|
||||||
|
|
||||||
// linux url
|
// linux url
|
||||||
if (/\.AppImage\.tar\.gz$/.test(name)) {
|
if (name.endsWith(".AppImage.tar.gz")) {
|
||||||
updateData.platforms.linux.url = browser_download_url;
|
updateData.platforms.linux.url = browser_download_url;
|
||||||
|
updateData.platforms["linux-x86_64"].url = browser_download_url;
|
||||||
}
|
}
|
||||||
// linux signature
|
// linux signature
|
||||||
if (/\.AppImage\.tar\.gz\.sig$/.test(name)) {
|
if (name.endsWith(".AppImage.tar.gz.sig")) {
|
||||||
updateData.platforms.linux.signature = await getSignature(
|
const sig = await getSignature(browser_download_url);
|
||||||
browser_download_url
|
updateData.platforms.linux.signature = sig;
|
||||||
);
|
updateData.platforms["linux-x86_64"].signature = sig;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -85,29 +103,24 @@ async function resolveRelease() {
|
|||||||
console.log(updateData);
|
console.log(updateData);
|
||||||
|
|
||||||
// maybe should test the signature as well
|
// maybe should test the signature as well
|
||||||
const { darwin, win64, linux } = updateData.platforms;
|
// delete the null field
|
||||||
if (!darwin.url) {
|
Object.entries(updateData.platforms).forEach(([key, value]) => {
|
||||||
console.log(`[Error]: failed to parse release for darwin`);
|
if (!value.url) {
|
||||||
delete updateData.platforms.darwin;
|
console.log(`[Error]: failed to parse release for "${key}"`);
|
||||||
}
|
delete updateData.platforms[key];
|
||||||
if (!win64.url) {
|
}
|
||||||
console.log(`[Error]: failed to parse release for win64`);
|
});
|
||||||
delete updateData.platforms.win64;
|
|
||||||
}
|
|
||||||
if (!linux.url) {
|
|
||||||
console.log(`[Error]: failed to parse release for linux`);
|
|
||||||
delete updateData.platforms.linux;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 生成一个代理github的更新文件
|
// 生成一个代理github的更新文件
|
||||||
// 使用 https://hub.fastgit.xyz/ 做github资源的加速
|
// 使用 https://hub.fastgit.xyz/ 做github资源的加速
|
||||||
const updateDataNew = JSON.parse(JSON.stringify(updateData));
|
const updateDataNew = JSON.parse(JSON.stringify(updateData));
|
||||||
|
|
||||||
Object.keys(updateDataNew.platforms).forEach((key) => {
|
Object.entries(updateDataNew.platforms).forEach(([key, value]) => {
|
||||||
if (updateDataNew.platforms[key]) {
|
if (value.url) {
|
||||||
updateDataNew.platforms[key].url = updateDataNew.platforms[
|
updateDataNew.platforms[key].url = value.url.replace(
|
||||||
key
|
"https://github.com/",
|
||||||
].url.replace("https://github.com/", "https://hub.fastgit.xyz/");
|
"https://hub.fastgit.xyz/"
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
console.log(`[Error]: updateDataNew.platforms.${key} is null`);
|
console.log(`[Error]: updateDataNew.platforms.${key} is null`);
|
||||||
}
|
}
|
||||||
@@ -135,7 +148,7 @@ async function resolveRelease() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// upload assets
|
// upload new assets
|
||||||
await github.rest.repos.uploadReleaseAsset({
|
await github.rest.repos.uploadReleaseAsset({
|
||||||
...options,
|
...options,
|
||||||
release_id: updateRelease.id,
|
release_id: updateRelease.id,
|
||||||
@@ -161,4 +174,4 @@ async function getSignature(url) {
|
|||||||
return response.text();
|
return response.text();
|
||||||
}
|
}
|
||||||
|
|
||||||
resolveRelease().catch(console.error);
|
resolveUpdater().catch(console.error);
|
||||||
946
src-tauri/Cargo.lock
generated
946
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -10,18 +10,19 @@ edition = "2021"
|
|||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "1.0.0-rc.4", features = [] }
|
tauri-build = { version = "1.0.0-rc.5", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
|
open = "2.1.1"
|
||||||
dunce = "1.0.2"
|
dunce = "1.0.2"
|
||||||
nanoid = "0.4.0"
|
nanoid = "0.4.0"
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
serde_yaml = "0.8"
|
serde_yaml = "0.8"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tauri = { version = "1.0.0-rc.4", features = ["process-all", "shell-all", "system-tray", "updater", "window-all"] }
|
tauri = { version = "1.0.0-rc.6", features = ["process-all", "shell-all", "system-tray", "updater", "window-all"] }
|
||||||
window-shadows = { git = "https://github.com/tauri-apps/window-shadows" }
|
window-shadows = { git = "https://github.com/tauri-apps/window-shadows" }
|
||||||
window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" }
|
window-vibrancy = { git = "https://github.com/tauri-apps/window-vibrancy" }
|
||||||
|
|
||||||
@@ -41,3 +42,10 @@ winreg = { version = "0.10", features = ["transactions"] }
|
|||||||
default = [ "custom-protocol" ]
|
default = [ "custom-protocol" ]
|
||||||
custom-protocol = [ "tauri/custom-protocol" ]
|
custom-protocol = [ "tauri/custom-protocol" ]
|
||||||
verge-dev = []
|
verge-dev = []
|
||||||
|
debug-yml = []
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
panic = "abort"
|
||||||
|
codegen-units = 1
|
||||||
|
lto = true
|
||||||
|
opt-level = "s"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ use crate::{
|
|||||||
use crate::{ret_err, wrap_err};
|
use crate::{ret_err, wrap_err};
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use serde_yaml::Mapping;
|
use serde_yaml::Mapping;
|
||||||
use std::{path::PathBuf, process::Command};
|
use std::process::Command;
|
||||||
use tauri::{api, Manager, State};
|
use tauri::{api, Manager, State};
|
||||||
|
|
||||||
/// get all profiles from `profiles.yaml`
|
/// get all profiles from `profiles.yaml`
|
||||||
@@ -88,7 +88,7 @@ pub async fn update_profile(
|
|||||||
// reactivate the profile
|
// reactivate the profile
|
||||||
if Some(index) == profiles.get_current() {
|
if Some(index) == profiles.get_current() {
|
||||||
let clash = clash_state.0.lock().unwrap();
|
let clash = clash_state.0.lock().unwrap();
|
||||||
wrap_err!(clash.activate(&profiles, false))?;
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -105,7 +105,7 @@ pub fn select_profile(
|
|||||||
wrap_err!(profiles.put_current(index))?;
|
wrap_err!(profiles.put_current(index))?;
|
||||||
|
|
||||||
let clash = clash_state.0.lock().unwrap();
|
let clash = clash_state.0.lock().unwrap();
|
||||||
wrap_err!(clash.activate(&profiles, false))
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// change the profile chain
|
/// change the profile chain
|
||||||
@@ -122,7 +122,24 @@ pub fn change_profile_chain(
|
|||||||
profiles.put_chain(chain);
|
profiles.put_chain(chain);
|
||||||
clash.set_window(app_handle.get_window("main"));
|
clash.set_window(app_handle.get_window("main"));
|
||||||
|
|
||||||
wrap_err!(clash.activate_enhanced(&profiles, false))
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// change the profile valid fields
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn change_profile_valid(
|
||||||
|
valid: Option<Vec<String>>,
|
||||||
|
app_handle: tauri::AppHandle,
|
||||||
|
clash_state: State<'_, ClashState>,
|
||||||
|
profiles_state: State<'_, ProfilesState>,
|
||||||
|
) -> Result<(), String> {
|
||||||
|
let mut clash = clash_state.0.lock().unwrap();
|
||||||
|
let mut profiles = profiles_state.0.lock().unwrap();
|
||||||
|
|
||||||
|
profiles.put_valid(valid);
|
||||||
|
clash.set_window(app_handle.get_window("main"));
|
||||||
|
|
||||||
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// manually exec enhanced profile
|
/// manually exec enhanced profile
|
||||||
@@ -137,7 +154,7 @@ pub fn enhance_profiles(
|
|||||||
|
|
||||||
clash.set_window(app_handle.get_window("main"));
|
clash.set_window(app_handle.get_window("main"));
|
||||||
|
|
||||||
wrap_err!(clash.activate_enhanced(&profiles, false))
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// delete profile item
|
/// delete profile item
|
||||||
@@ -151,7 +168,7 @@ pub fn delete_profile(
|
|||||||
|
|
||||||
if wrap_err!(profiles.delete_item(index))? {
|
if wrap_err!(profiles.delete_item(index))? {
|
||||||
let clash = clash_state.0.lock().unwrap();
|
let clash = clash_state.0.lock().unwrap();
|
||||||
wrap_err!(clash.activate(&profiles, false))?;
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -195,21 +212,50 @@ pub fn view_profile(index: String, profiles_state: State<'_, ProfilesState>) ->
|
|||||||
.arg(path)
|
.arg(path)
|
||||||
.spawn()
|
.spawn()
|
||||||
{
|
{
|
||||||
log::error!("{err}");
|
log::error!("failed to open file by VScode for {err}");
|
||||||
return Err("failed to open file by VScode".into());
|
return Err("failed to open file by VScode".into());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(target_os = "windows"))]
|
#[cfg(not(target_os = "windows"))]
|
||||||
if let Err(err) = Command::new(code).arg(path).spawn() {
|
if let Err(err) = Command::new(code).arg(path).spawn() {
|
||||||
log::error!("{err}");
|
log::error!("failed to open file by VScode for {err}");
|
||||||
return Err("failed to open file by VScode".into());
|
return Err("failed to open file by VScode".into());
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
open_path_cmd(path, "failed to open file by `open`")
|
wrap_err!(open::that(path))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// read the profile item file data
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn read_profile_file(
|
||||||
|
index: String,
|
||||||
|
profiles_state: State<'_, ProfilesState>,
|
||||||
|
) -> Result<String, String> {
|
||||||
|
let profiles = profiles_state.0.lock().unwrap();
|
||||||
|
let item = wrap_err!(profiles.get_item(&index))?;
|
||||||
|
let data = wrap_err!(item.read_file())?;
|
||||||
|
|
||||||
|
Ok(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// save the profile item file data
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn save_profile_file(
|
||||||
|
index: String,
|
||||||
|
file_data: Option<String>,
|
||||||
|
profiles_state: State<'_, ProfilesState>,
|
||||||
|
) -> Result<(), String> {
|
||||||
|
if file_data.is_none() {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let profiles = profiles_state.0.lock().unwrap();
|
||||||
|
let item = wrap_err!(profiles.get_item(&index))?;
|
||||||
|
wrap_err!(item.save_file(file_data.unwrap()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// restart the sidecar
|
/// restart the sidecar
|
||||||
@@ -288,16 +334,6 @@ pub fn patch_verge_config(
|
|||||||
let tun_mode = payload.enable_tun_mode.clone();
|
let tun_mode = payload.enable_tun_mode.clone();
|
||||||
let system_proxy = payload.enable_system_proxy.clone();
|
let system_proxy = payload.enable_system_proxy.clone();
|
||||||
|
|
||||||
// change tun mode
|
|
||||||
if tun_mode.is_some() {
|
|
||||||
let mut clash = clash_state.0.lock().unwrap();
|
|
||||||
let profiles = profiles_state.0.lock().unwrap();
|
|
||||||
|
|
||||||
wrap_err!(clash.tun_mode(tun_mode.unwrap()))?;
|
|
||||||
clash.update_config();
|
|
||||||
wrap_err!(clash.activate(&profiles, false))?;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut verge = verge_state.0.lock().unwrap();
|
let mut verge = verge_state.0.lock().unwrap();
|
||||||
wrap_err!(verge.patch_config(payload))?;
|
wrap_err!(verge.patch_config(payload))?;
|
||||||
|
|
||||||
@@ -310,6 +346,23 @@ pub fn patch_verge_config(
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// change tun mode
|
||||||
|
if tun_mode.is_some() {
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
if *tun_mode.as_ref().unwrap() {
|
||||||
|
let wintun_dll = dirs::app_home_dir().join("wintun.dll");
|
||||||
|
if !wintun_dll.exists() {
|
||||||
|
log::error!("failed to enable TUN for missing `wintun.dll`");
|
||||||
|
return Err("failed to enable TUN for missing `wintun.dll`".into());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let clash = clash_state.0.lock().unwrap();
|
||||||
|
let profiles = profiles_state.0.lock().unwrap();
|
||||||
|
|
||||||
|
wrap_err!(clash.activate_enhanced(&profiles, false, false))?;
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -323,66 +376,12 @@ pub fn kill_sidecars() {
|
|||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn open_app_dir() -> Result<(), String> {
|
pub fn open_app_dir() -> Result<(), String> {
|
||||||
let app_dir = dirs::app_home_dir();
|
let app_dir = dirs::app_home_dir();
|
||||||
open_path_cmd(app_dir, "failed to open app dir")
|
wrap_err!(open::that(app_dir))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// open logs dir
|
/// open logs dir
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn open_logs_dir() -> Result<(), String> {
|
pub fn open_logs_dir() -> Result<(), String> {
|
||||||
let log_dir = dirs::app_logs_dir();
|
let log_dir = dirs::app_logs_dir();
|
||||||
open_path_cmd(log_dir, "failed to open logs dir")
|
wrap_err!(open::that(log_dir))
|
||||||
}
|
|
||||||
|
|
||||||
/// use the os default open command to open file or dir
|
|
||||||
fn open_path_cmd(path: PathBuf, err_str: &str) -> Result<(), String> {
|
|
||||||
let result;
|
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
{
|
|
||||||
use std::os::windows::process::CommandExt;
|
|
||||||
|
|
||||||
result = Command::new("explorer")
|
|
||||||
.creation_flags(0x08000000)
|
|
||||||
.arg(&path)
|
|
||||||
.spawn();
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
|
||||||
{
|
|
||||||
result = Command::new("open").arg(&path).spawn();
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
|
||||||
{
|
|
||||||
result = Command::new("xdg-open").arg(&path).spawn();
|
|
||||||
}
|
|
||||||
|
|
||||||
match result {
|
|
||||||
Ok(child) => match child.wait_with_output() {
|
|
||||||
Ok(out) => {
|
|
||||||
// 退出码不为0 不一定没有调用成功
|
|
||||||
// 因此仅做warn log且不返回错误
|
|
||||||
if let Some(code) = out.status.code() {
|
|
||||||
if code != 0 {
|
|
||||||
log::warn!("failed to open {:?} (code {})", &path, code);
|
|
||||||
log::warn!(
|
|
||||||
"open cmd stdout: {}, stderr: {}",
|
|
||||||
String::from_utf8_lossy(&out.stdout),
|
|
||||||
String::from_utf8_lossy(&out.stderr),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
log::error!("failed to open {:?} for {err}", &path);
|
|
||||||
return Err(err_str.into());
|
|
||||||
}
|
|
||||||
},
|
|
||||||
Err(err) => {
|
|
||||||
log::error!("failed to open {:?} for {err}", &path);
|
|
||||||
return Err(err_str.into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok(());
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
use super::{PrfEnhancedResult, Profiles, Verge};
|
use super::{PrfEnhancedResult, Profiles, Verge, VergeConfig};
|
||||||
|
use crate::log_if_err;
|
||||||
use crate::utils::{config, dirs, help};
|
use crate::utils::{config, dirs, help};
|
||||||
use anyhow::{bail, Result};
|
use anyhow::{bail, Result};
|
||||||
use reqwest::header::HeaderMap;
|
use reqwest::header::HeaderMap;
|
||||||
@@ -176,7 +177,8 @@ impl Clash {
|
|||||||
self.update_config();
|
self.update_config();
|
||||||
self.drop_sidecar()?;
|
self.drop_sidecar()?;
|
||||||
self.run_sidecar()?;
|
self.run_sidecar()?;
|
||||||
self.activate(profiles, false)
|
self.activate(profiles)?;
|
||||||
|
self.activate_enhanced(profiles, false, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// update the clash info
|
/// update the clash info
|
||||||
@@ -220,18 +222,8 @@ impl Clash {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// enable tun mode
|
/// revise the `tun` and `dns` config
|
||||||
/// only revise the config and restart the
|
fn _tun_mode(mut config: Mapping, enable: bool) -> Mapping {
|
||||||
pub fn tun_mode(&mut self, enable: bool) -> Result<()> {
|
|
||||||
// Windows 需要wintun.dll文件
|
|
||||||
#[cfg(target_os = "windows")]
|
|
||||||
if enable {
|
|
||||||
let wintun_dll = dirs::app_home_dir().join("wintun.dll");
|
|
||||||
if !wintun_dll.exists() {
|
|
||||||
bail!("failed to enable TUN for missing `wintun.dll`");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! revise {
|
macro_rules! revise {
|
||||||
($map: expr, $key: expr, $val: expr) => {
|
($map: expr, $key: expr, $val: expr) => {
|
||||||
let ret_key = Value::String($key.into());
|
let ret_key = Value::String($key.into());
|
||||||
@@ -250,7 +242,7 @@ impl Clash {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// tun config
|
// tun config
|
||||||
let tun_val = self.config.get(&Value::from("tun"));
|
let tun_val = config.get(&Value::from("tun"));
|
||||||
let mut new_tun = Mapping::new();
|
let mut new_tun = Mapping::new();
|
||||||
|
|
||||||
if tun_val.is_some() && tun_val.as_ref().unwrap().is_mapping() {
|
if tun_val.is_some() && tun_val.as_ref().unwrap().is_mapping() {
|
||||||
@@ -258,15 +250,18 @@ impl Clash {
|
|||||||
}
|
}
|
||||||
|
|
||||||
revise!(new_tun, "enable", enable);
|
revise!(new_tun, "enable", enable);
|
||||||
append!(new_tun, "stack", "gvisor");
|
|
||||||
append!(new_tun, "dns-hijack", vec!["198.18.0.2:53"]);
|
|
||||||
append!(new_tun, "auto-route", true);
|
|
||||||
append!(new_tun, "auto-detect-interface", true);
|
|
||||||
|
|
||||||
revise!(self.config, "tun", new_tun);
|
if enable {
|
||||||
|
append!(new_tun, "stack", "gvisor");
|
||||||
|
append!(new_tun, "dns-hijack", vec!["198.18.0.2:53"]);
|
||||||
|
append!(new_tun, "auto-route", true);
|
||||||
|
append!(new_tun, "auto-detect-interface", true);
|
||||||
|
}
|
||||||
|
|
||||||
|
revise!(config, "tun", new_tun);
|
||||||
|
|
||||||
// dns config
|
// dns config
|
||||||
let dns_val = self.config.get(&Value::from("dns"));
|
let dns_val = config.get(&Value::from("dns"));
|
||||||
let mut new_dns = Mapping::new();
|
let mut new_dns = Mapping::new();
|
||||||
|
|
||||||
if dns_val.is_some() && dns_val.as_ref().unwrap().is_mapping() {
|
if dns_val.is_some() && dns_val.as_ref().unwrap().is_mapping() {
|
||||||
@@ -275,34 +270,41 @@ impl Clash {
|
|||||||
|
|
||||||
// 借鉴cfw的默认配置
|
// 借鉴cfw的默认配置
|
||||||
revise!(new_dns, "enable", enable);
|
revise!(new_dns, "enable", enable);
|
||||||
append!(new_dns, "enhanced-mode", "fake-ip");
|
|
||||||
append!(
|
|
||||||
new_dns,
|
|
||||||
"nameserver",
|
|
||||||
vec!["114.114.114.114", "223.5.5.5", "8.8.8.8"]
|
|
||||||
);
|
|
||||||
append!(new_dns, "fallback", vec![] as Vec<&str>);
|
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
if enable {
|
||||||
append!(
|
append!(new_dns, "enhanced-mode", "fake-ip");
|
||||||
new_dns,
|
append!(
|
||||||
"fake-ip-filter",
|
new_dns,
|
||||||
vec![
|
"nameserver",
|
||||||
"dns.msftncsi.com",
|
vec!["114.114.114.114", "223.5.5.5", "8.8.8.8"]
|
||||||
"www.msftncsi.com",
|
);
|
||||||
"www.msftconnecttest.com"
|
append!(new_dns, "fallback", vec![] as Vec<&str>);
|
||||||
]
|
|
||||||
);
|
|
||||||
|
|
||||||
revise!(self.config, "dns", new_dns);
|
#[cfg(target_os = "windows")]
|
||||||
|
append!(
|
||||||
|
new_dns,
|
||||||
|
"fake-ip-filter",
|
||||||
|
vec![
|
||||||
|
"dns.msftncsi.com",
|
||||||
|
"www.msftncsi.com",
|
||||||
|
"www.msftconnecttest.com"
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
self.save_config()
|
revise!(config, "dns", new_dns);
|
||||||
|
config
|
||||||
}
|
}
|
||||||
|
|
||||||
/// activate the profile
|
/// activate the profile
|
||||||
/// generate a new profile to the temp_dir
|
/// generate a new profile to the temp_dir
|
||||||
/// then put the path to the clash core
|
/// then put the path to the clash core
|
||||||
fn _activate(info: ClashInfo, config: Mapping, window: Option<Window>) -> Result<()> {
|
fn _activate(info: ClashInfo, config: Mapping, window: Option<Window>) -> Result<()> {
|
||||||
|
let verge_config = VergeConfig::new();
|
||||||
|
let tun_enable = verge_config.enable_tun_mode.unwrap_or(false);
|
||||||
|
|
||||||
|
let config = Clash::_tun_mode(config, tun_enable);
|
||||||
|
|
||||||
let temp_path = dirs::profiles_temp_path();
|
let temp_path = dirs::profiles_temp_path();
|
||||||
config::save_yaml(temp_path.clone(), &config, Some("# Clash Verge Temp File"))?;
|
config::save_yaml(temp_path.clone(), &config, Some("# Clash Verge Temp File"))?;
|
||||||
|
|
||||||
@@ -354,62 +356,57 @@ impl Clash {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// enhanced profiles mode
|
/// enhanced profiles mode
|
||||||
/// only change the enhanced profiles
|
/// - (sync) refresh config if enhance chain is null
|
||||||
pub fn activate_enhanced(&self, profiles: &Profiles, delay: bool) -> Result<()> {
|
/// - (async) enhanced config
|
||||||
|
pub fn activate_enhanced(&self, profiles: &Profiles, delay: bool, skip: bool) -> Result<()> {
|
||||||
if self.window.is_none() {
|
if self.window.is_none() {
|
||||||
bail!("failed to get the main window");
|
bail!("failed to get the main window");
|
||||||
}
|
}
|
||||||
|
|
||||||
let win = self.window.clone().unwrap();
|
|
||||||
let event_name = help::get_uid("e");
|
let event_name = help::get_uid("e");
|
||||||
let event_name = format!("enhanced-cb-{event_name}");
|
let event_name = format!("enhanced-cb-{event_name}");
|
||||||
|
|
||||||
let info = self.info.clone();
|
|
||||||
let mut config = self.config.clone();
|
|
||||||
|
|
||||||
// generate the payload
|
// generate the payload
|
||||||
let payload = profiles.gen_enhanced(event_name.clone())?;
|
let payload = profiles.gen_enhanced(event_name.clone())?;
|
||||||
let window = self.window.clone();
|
|
||||||
|
|
||||||
win.once(&event_name, move |event| {
|
let info = self.info.clone();
|
||||||
|
|
||||||
|
// do not run enhanced
|
||||||
|
if payload.chain.len() == 0 {
|
||||||
|
if skip {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut config = self.config.clone();
|
||||||
|
let filter_data = Clash::strict_filter(payload.current);
|
||||||
|
|
||||||
|
for (key, value) in filter_data.into_iter() {
|
||||||
|
config.insert(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Clash::_activate(info, config, self.window.clone());
|
||||||
|
}
|
||||||
|
|
||||||
|
let window = self.window.clone().unwrap();
|
||||||
|
let window_move = self.window.clone();
|
||||||
|
|
||||||
|
window.once(&event_name, move |event| {
|
||||||
if let Some(result) = event.payload() {
|
if let Some(result) = event.payload() {
|
||||||
let result: PrfEnhancedResult = serde_json::from_str(result).unwrap();
|
let result: PrfEnhancedResult = serde_json::from_str(result).unwrap();
|
||||||
|
|
||||||
if let Some(data) = result.data {
|
if let Some(data) = result.data {
|
||||||
// all of these can not be revised by script
|
let mut config = Clash::read_config();
|
||||||
// http/https/socks port should be under control
|
let filter_data = Clash::loose_filter(data); // loose filter
|
||||||
let not_allow = vec![
|
|
||||||
"port",
|
|
||||||
"socks-port",
|
|
||||||
"mixed-port",
|
|
||||||
"allow-lan",
|
|
||||||
"mode",
|
|
||||||
"external-controller",
|
|
||||||
"secret",
|
|
||||||
"log-level",
|
|
||||||
];
|
|
||||||
|
|
||||||
for (key, value) in data.into_iter() {
|
for (key, value) in filter_data.into_iter() {
|
||||||
key.as_str().map(|key_str| {
|
config.insert(key, value);
|
||||||
// change to lowercase
|
|
||||||
let mut key_str = String::from(key_str);
|
|
||||||
key_str.make_ascii_lowercase();
|
|
||||||
|
|
||||||
// filter
|
|
||||||
if !not_allow.contains(&&*key_str) {
|
|
||||||
config.insert(Value::String(key_str), value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log_if_err!(Clash::_activate(info, config, window_move));
|
||||||
log::info!("profile enhanced status {}", result.status);
|
log::info!("profile enhanced status {}", result.status);
|
||||||
|
|
||||||
Self::_activate(info, config, window).unwrap();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(error) = result.error {
|
result.error.map(|err| log::error!("{err}"));
|
||||||
log::error!("{error}");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -418,7 +415,7 @@ impl Clash {
|
|||||||
if delay {
|
if delay {
|
||||||
sleep(Duration::from_secs(2)).await;
|
sleep(Duration::from_secs(2)).await;
|
||||||
}
|
}
|
||||||
win.emit("script-handler", payload).unwrap();
|
window.emit("script-handler", payload).unwrap();
|
||||||
});
|
});
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -426,17 +423,83 @@ impl Clash {
|
|||||||
|
|
||||||
/// activate the profile
|
/// activate the profile
|
||||||
/// auto activate enhanced profile
|
/// auto activate enhanced profile
|
||||||
pub fn activate(&self, profiles: &Profiles, delay: bool) -> Result<()> {
|
pub fn activate(&self, profiles: &Profiles) -> Result<()> {
|
||||||
let gen_map = profiles.gen_activate()?;
|
let data = profiles.gen_activate()?;
|
||||||
|
let data = Clash::strict_filter(data);
|
||||||
|
|
||||||
let info = self.info.clone();
|
let info = self.info.clone();
|
||||||
let mut config = self.config.clone();
|
let mut config = self.config.clone();
|
||||||
|
|
||||||
for (key, value) in gen_map.into_iter() {
|
for (key, value) in data.into_iter() {
|
||||||
config.insert(key, value);
|
config.insert(key, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
Self::_activate(info, config, self.window.clone())?;
|
Clash::_activate(info, config, self.window.clone())
|
||||||
self.activate_enhanced(profiles, delay)
|
}
|
||||||
|
|
||||||
|
/// only 5 default fields available (clash config fields)
|
||||||
|
/// convert to lowercase
|
||||||
|
fn strict_filter(config: Mapping) -> Mapping {
|
||||||
|
// Only the following fields are allowed:
|
||||||
|
// proxies/proxy-providers/proxy-groups/rule-providers/rules
|
||||||
|
let valid_keys = vec![
|
||||||
|
"proxies",
|
||||||
|
"proxy-providers",
|
||||||
|
"proxy-groups",
|
||||||
|
"rules",
|
||||||
|
"rule-providers",
|
||||||
|
];
|
||||||
|
|
||||||
|
let mut new_config = Mapping::new();
|
||||||
|
|
||||||
|
for (key, value) in config.into_iter() {
|
||||||
|
key.as_str().map(|key_str| {
|
||||||
|
// change to lowercase
|
||||||
|
let mut key_str = String::from(key_str);
|
||||||
|
key_str.make_ascii_lowercase();
|
||||||
|
|
||||||
|
// filter
|
||||||
|
if valid_keys.contains(&&*key_str) {
|
||||||
|
new_config.insert(Value::String(key_str), value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
new_config
|
||||||
|
}
|
||||||
|
|
||||||
|
/// more clash config fields available
|
||||||
|
/// convert to lowercase
|
||||||
|
fn loose_filter(config: Mapping) -> Mapping {
|
||||||
|
// all of these can not be revised by script or merge
|
||||||
|
// http/https/socks port should be under control
|
||||||
|
let not_allow = vec![
|
||||||
|
"port",
|
||||||
|
"socks-port",
|
||||||
|
"mixed-port",
|
||||||
|
"allow-lan",
|
||||||
|
"mode",
|
||||||
|
"external-controller",
|
||||||
|
"secret",
|
||||||
|
"log-level",
|
||||||
|
];
|
||||||
|
|
||||||
|
let mut new_config = Mapping::new();
|
||||||
|
|
||||||
|
for (key, value) in config.into_iter() {
|
||||||
|
key.as_str().map(|key_str| {
|
||||||
|
// change to lowercase
|
||||||
|
let mut key_str = String::from(key_str);
|
||||||
|
key_str.make_ascii_lowercase();
|
||||||
|
|
||||||
|
// filter
|
||||||
|
if !not_allow.contains(&&*key_str) {
|
||||||
|
new_config.insert(Value::String(key_str), value);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
new_config
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
use crate::utils::{config, dirs, help, tmpl};
|
use crate::utils::{config, dirs, help, tmpl};
|
||||||
use anyhow::{bail, Context, Result};
|
use anyhow::{bail, Context, Result};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_yaml::{Mapping, Value};
|
use serde_yaml::Mapping;
|
||||||
use std::{fs, io::Write};
|
use std::{fs, io::Write};
|
||||||
|
|
||||||
#[derive(Debug, Clone, Deserialize, Serialize)]
|
#[derive(Debug, Clone, Deserialize, Serialize)]
|
||||||
@@ -279,6 +279,28 @@ impl PrfItem {
|
|||||||
file_data: Some(tmpl::ITEM_SCRIPT.into()),
|
file_data: Some(tmpl::ITEM_SCRIPT.into()),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// get the file data
|
||||||
|
pub fn read_file(&self) -> Result<String> {
|
||||||
|
if self.file.is_none() {
|
||||||
|
bail!("could not find the file");
|
||||||
|
}
|
||||||
|
|
||||||
|
let file = self.file.clone().unwrap();
|
||||||
|
let path = dirs::app_profiles_dir().join(file);
|
||||||
|
fs::read_to_string(path).context("failed to read the file")
|
||||||
|
}
|
||||||
|
|
||||||
|
/// save the file data
|
||||||
|
pub fn save_file(&self, data: String) -> Result<()> {
|
||||||
|
if self.file.is_none() {
|
||||||
|
bail!("could not find the file");
|
||||||
|
}
|
||||||
|
|
||||||
|
let file = self.file.clone().unwrap();
|
||||||
|
let path = dirs::app_profiles_dir().join(file);
|
||||||
|
fs::write(path, data.as_bytes()).context("failed to save the file")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
@@ -294,6 +316,9 @@ pub struct Profiles {
|
|||||||
/// same as PrfConfig.chain
|
/// same as PrfConfig.chain
|
||||||
chain: Option<Vec<String>>,
|
chain: Option<Vec<String>>,
|
||||||
|
|
||||||
|
/// record valid fields for clash
|
||||||
|
valid: Option<Vec<String>>,
|
||||||
|
|
||||||
/// profile list
|
/// profile list
|
||||||
items: Option<Vec<PrfItem>>,
|
items: Option<Vec<PrfItem>>,
|
||||||
}
|
}
|
||||||
@@ -377,6 +402,11 @@ impl Profiles {
|
|||||||
self.chain = chain;
|
self.chain = chain;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// just change the `field`
|
||||||
|
pub fn put_valid(&mut self, valid: Option<Vec<String>>) {
|
||||||
|
self.valid = valid;
|
||||||
|
}
|
||||||
|
|
||||||
/// find the item by the uid
|
/// find the item by the uid
|
||||||
pub fn get_item(&self, uid: &String) -> Result<&PrfItem> {
|
pub fn get_item(&self, uid: &String) -> Result<&PrfItem> {
|
||||||
if self.items.is_some() {
|
if self.items.is_some() {
|
||||||
@@ -553,32 +583,7 @@ impl Profiles {
|
|||||||
bail!("failed to read the file \"{}\"", file_path.display());
|
bail!("failed to read the file \"{}\"", file_path.display());
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut new_config = Mapping::new();
|
return Ok(config::read_yaml::<Mapping>(file_path.clone()));
|
||||||
let def_config = config::read_yaml::<Mapping>(file_path.clone());
|
|
||||||
|
|
||||||
// Only the following fields are allowed:
|
|
||||||
// proxies/proxy-providers/proxy-groups/rule-providers/rules
|
|
||||||
let valid_keys = vec![
|
|
||||||
"proxies",
|
|
||||||
"proxy-providers",
|
|
||||||
"proxy-groups",
|
|
||||||
"rule-providers",
|
|
||||||
"rules",
|
|
||||||
];
|
|
||||||
|
|
||||||
for (key, value) in def_config.into_iter() {
|
|
||||||
key.as_str().map(|key_str| {
|
|
||||||
// change to lowercase
|
|
||||||
let mut key_str = String::from(key_str);
|
|
||||||
key_str.make_ascii_lowercase();
|
|
||||||
|
|
||||||
if valid_keys.contains(&&*key_str) {
|
|
||||||
new_config.insert(Value::String(key_str), value);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok(new_config);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -602,9 +607,12 @@ impl Profiles {
|
|||||||
None => vec![],
|
None => vec![],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let valid = self.valid.clone().unwrap_or(vec![]);
|
||||||
|
|
||||||
Ok(PrfEnhanced {
|
Ok(PrfEnhanced {
|
||||||
current,
|
current,
|
||||||
chain,
|
chain,
|
||||||
|
valid,
|
||||||
callback,
|
callback,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -612,11 +620,13 @@ impl Profiles {
|
|||||||
|
|
||||||
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
||||||
pub struct PrfEnhanced {
|
pub struct PrfEnhanced {
|
||||||
current: Mapping,
|
pub current: Mapping,
|
||||||
|
|
||||||
chain: Vec<PrfData>,
|
pub chain: Vec<PrfData>,
|
||||||
|
|
||||||
callback: String,
|
pub valid: Vec<String>,
|
||||||
|
|
||||||
|
pub callback: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
#[derive(Default, Debug, Clone, Serialize, Deserialize)]
|
||||||
|
|||||||
@@ -31,6 +31,9 @@ pub struct VergeConfig {
|
|||||||
/// can the app auto startup
|
/// can the app auto startup
|
||||||
pub enable_auto_launch: Option<bool>,
|
pub enable_auto_launch: Option<bool>,
|
||||||
|
|
||||||
|
/// not show the window on launch
|
||||||
|
pub enable_silent_start: Option<bool>,
|
||||||
|
|
||||||
/// set system proxy
|
/// set system proxy
|
||||||
pub enable_system_proxy: Option<bool>,
|
pub enable_system_proxy: Option<bool>,
|
||||||
|
|
||||||
@@ -42,6 +45,25 @@ pub struct VergeConfig {
|
|||||||
|
|
||||||
/// proxy guard duration
|
/// proxy guard duration
|
||||||
pub proxy_guard_duration: Option<u64>,
|
pub proxy_guard_duration: Option<u64>,
|
||||||
|
|
||||||
|
/// theme setting
|
||||||
|
pub theme_setting: Option<VergeTheme>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Default, Debug, Clone, Deserialize, Serialize)]
|
||||||
|
pub struct VergeTheme {
|
||||||
|
pub primary_color: Option<String>,
|
||||||
|
pub secondary_color: Option<String>,
|
||||||
|
pub primary_text: Option<String>,
|
||||||
|
pub secondary_text: Option<String>,
|
||||||
|
|
||||||
|
pub info_color: Option<String>,
|
||||||
|
pub error_color: Option<String>,
|
||||||
|
pub warning_color: Option<String>,
|
||||||
|
pub success_color: Option<String>,
|
||||||
|
|
||||||
|
pub font_family: Option<String>,
|
||||||
|
pub css_injection: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl VergeConfig {
|
impl VergeConfig {
|
||||||
@@ -197,6 +219,12 @@ impl Verge {
|
|||||||
if patch.traffic_graph.is_some() {
|
if patch.traffic_graph.is_some() {
|
||||||
self.config.traffic_graph = patch.traffic_graph;
|
self.config.traffic_graph = patch.traffic_graph;
|
||||||
}
|
}
|
||||||
|
if patch.enable_silent_start.is_some() {
|
||||||
|
self.config.enable_silent_start = patch.enable_silent_start;
|
||||||
|
}
|
||||||
|
if patch.theme_setting.is_some() {
|
||||||
|
self.config.theme_setting = patch.theme_setting;
|
||||||
|
}
|
||||||
|
|
||||||
// should update system startup
|
// should update system startup
|
||||||
if patch.enable_auto_launch.is_some() {
|
if patch.enable_auto_launch.is_some() {
|
||||||
|
|||||||
@@ -118,7 +118,10 @@ fn main() -> std::io::Result<()> {
|
|||||||
cmds::get_profiles,
|
cmds::get_profiles,
|
||||||
cmds::sync_profiles,
|
cmds::sync_profiles,
|
||||||
cmds::enhance_profiles,
|
cmds::enhance_profiles,
|
||||||
cmds::change_profile_chain
|
cmds::change_profile_chain,
|
||||||
|
cmds::change_profile_valid,
|
||||||
|
cmds::read_profile_file,
|
||||||
|
cmds::save_profile_file
|
||||||
]);
|
]);
|
||||||
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
@@ -142,11 +145,14 @@ fn main() -> std::io::Result<()> {
|
|||||||
.build(tauri::generate_context!())
|
.build(tauri::generate_context!())
|
||||||
.expect("error while running tauri application")
|
.expect("error while running tauri application")
|
||||||
.run(|app_handle, e| match e {
|
.run(|app_handle, e| match e {
|
||||||
tauri::RunEvent::CloseRequested { label, api, .. } => {
|
tauri::RunEvent::WindowEvent { label, event, .. } => match event {
|
||||||
let app_handle = app_handle.clone();
|
tauri::WindowEvent::CloseRequested { api, .. } => {
|
||||||
api.prevent_close();
|
let app_handle = app_handle.clone();
|
||||||
app_handle.get_window(&label).unwrap().hide().unwrap();
|
api.prevent_close();
|
||||||
}
|
app_handle.get_window(&label).unwrap().hide().unwrap();
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
},
|
||||||
tauri::RunEvent::ExitRequested { .. } => {
|
tauri::RunEvent::ExitRequested { .. } => {
|
||||||
resolve::resolve_reset(app_handle);
|
resolve::resolve_reset(app_handle);
|
||||||
api::process::kill_children();
|
api::process::kill_children();
|
||||||
|
|||||||
@@ -53,5 +53,9 @@ pub fn profiles_path() -> PathBuf {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn profiles_temp_path() -> PathBuf {
|
pub fn profiles_temp_path() -> PathBuf {
|
||||||
temp_dir().join(PROFILE_TEMP)
|
#[cfg(not(feature = "debug-yml"))]
|
||||||
|
return temp_dir().join(PROFILE_TEMP);
|
||||||
|
|
||||||
|
#[cfg(feature = "debug-yml")]
|
||||||
|
return app_home_dir().join(PROFILE_TEMP);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,6 @@ use tauri::{App, AppHandle, Manager};
|
|||||||
|
|
||||||
/// handle something when start app
|
/// handle something when start app
|
||||||
pub fn resolve_setup(app: &App) {
|
pub fn resolve_setup(app: &App) {
|
||||||
resolve_window(app);
|
|
||||||
|
|
||||||
// setup a simple http server for singleton
|
// setup a simple http server for singleton
|
||||||
server::embed_server(&app.handle());
|
server::embed_server(&app.handle());
|
||||||
|
|
||||||
@@ -26,17 +24,10 @@ pub fn resolve_setup(app: &App) {
|
|||||||
*profiles = Profiles::read_file();
|
*profiles = Profiles::read_file();
|
||||||
|
|
||||||
clash.set_window(app.get_window("main"));
|
clash.set_window(app.get_window("main"));
|
||||||
log_if_err!(clash.activate(&profiles, true));
|
log_if_err!(clash.activate(&profiles));
|
||||||
|
log_if_err!(clash.activate_enhanced(&profiles, true, true));
|
||||||
|
|
||||||
verge.init_sysproxy(clash.info.port.clone());
|
verge.init_sysproxy(clash.info.port.clone());
|
||||||
// enable tun mode
|
|
||||||
if verge.config.enable_tun_mode.clone().unwrap_or(false)
|
|
||||||
&& verge.cur_sysproxy.is_some()
|
|
||||||
&& verge.cur_sysproxy.as_ref().unwrap().enable
|
|
||||||
{
|
|
||||||
log::info!("enable tun mode");
|
|
||||||
clash.tun_mode(true).unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
log_if_err!(verge.init_launch());
|
log_if_err!(verge.init_launch());
|
||||||
|
|
||||||
@@ -46,6 +37,8 @@ pub fn resolve_setup(app: &App) {
|
|||||||
.get_item("system_proxy")
|
.get_item("system_proxy")
|
||||||
.set_selected(enable));
|
.set_selected(enable));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
resolve_window(app, verge.config.enable_silent_start.clone());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// reset system proxy
|
/// reset system proxy
|
||||||
@@ -57,9 +50,16 @@ pub fn resolve_reset(app_handle: &AppHandle) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// customize the window theme
|
/// customize the window theme
|
||||||
fn resolve_window(app: &App) {
|
fn resolve_window(app: &App, hide: Option<bool>) {
|
||||||
let window = app.get_window("main").unwrap();
|
let window = app.get_window("main").unwrap();
|
||||||
|
|
||||||
|
// silent start
|
||||||
|
hide.map(|hide| {
|
||||||
|
if hide {
|
||||||
|
window.hide().unwrap();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
{
|
{
|
||||||
use window_shadows::set_shadow;
|
use window_shadows::set_shadow;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "Clash Verge",
|
"productName": "Clash Verge",
|
||||||
"version": "0.0.25"
|
"version": "0.0.28"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"distDir": "../dist",
|
"distDir": "../dist",
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"security": {
|
"security": {
|
||||||
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
|
"csp": "script-src 'unsafe-eval' 'self'; default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'; img-src data: 'self';"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
.the-logo {
|
.the-logo {
|
||||||
position: relative;
|
position: relative;
|
||||||
flex: 0 1 180px;
|
flex: 0 1 168px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 168px;
|
max-width: 168px;
|
||||||
max-height: 168px;
|
max-height: 168px;
|
||||||
@@ -27,8 +27,11 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
img {
|
img,
|
||||||
|
svg {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.the-newbtn {
|
.the-newbtn {
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import { useLockFn } from "ahooks";
|
import { useLockFn } from "ahooks";
|
||||||
import { styled, Box, ListItem, IconButton, ListItemText } from "@mui/material";
|
import { styled, ListItem, IconButton, ListItemText } from "@mui/material";
|
||||||
import { CloseRounded } from "@mui/icons-material";
|
import { CloseRounded } from "@mui/icons-material";
|
||||||
import { ApiType } from "../../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
import { deleteConnection } from "../../services/api";
|
import { deleteConnection } from "../../services/api";
|
||||||
|
|
||||||
const Tag = styled(Box)(({ theme }) => ({
|
const Tag = styled("span")(({ theme }) => ({
|
||||||
display: "inline-block",
|
display: "inline-block",
|
||||||
fontSize: "12px",
|
fontSize: "12px",
|
||||||
padding: "0 4px",
|
padding: "0 4px",
|
||||||
@@ -37,16 +37,19 @@ const ConnectionItem = (props: Props) => {
|
|||||||
<ListItemText
|
<ListItemText
|
||||||
primary={value.metadata.host || value.metadata.destinationIP}
|
primary={value.metadata.host || value.metadata.destinationIP}
|
||||||
secondary={
|
secondary={
|
||||||
<Box>
|
<>
|
||||||
<Tag sx={{ textTransform: "uppercase", color: "success" }}>
|
<Tag sx={{ textTransform: "uppercase", color: "success" }}>
|
||||||
{value.metadata.network}
|
{value.metadata.network}
|
||||||
</Tag>
|
</Tag>
|
||||||
|
|
||||||
<Tag>{value.metadata.type}</Tag>
|
<Tag>{value.metadata.type}</Tag>
|
||||||
|
|
||||||
{value.chains.length > 0 && (
|
{value.chains.length > 0 && (
|
||||||
<Tag>{value.chains[value.chains.length - 1]}</Tag>
|
<Tag>{value.chains[value.chains.length - 1]}</Tag>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Tag>{dayjs(value.start).fromNow()}</Tag>
|
<Tag>{dayjs(value.start).fromNow()}</Tag>
|
||||||
</Box>
|
</>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
|||||||
79
src/components/layout/use-custom-theme.ts
Normal file
79
src/components/layout/use-custom-theme.ts
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useMemo } from "react";
|
||||||
|
import { createTheme } from "@mui/material";
|
||||||
|
import { getVergeConfig } from "../../services/cmds";
|
||||||
|
import { defaultTheme as dt } from "../../pages/_theme";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* custome theme
|
||||||
|
*/
|
||||||
|
export default function useCustomTheme() {
|
||||||
|
const { data } = useSWR("getVergeConfig", getVergeConfig);
|
||||||
|
const { theme_mode, theme_setting } = data ?? {};
|
||||||
|
|
||||||
|
const theme = useMemo(() => {
|
||||||
|
const mode = theme_mode ?? "light";
|
||||||
|
// const background = mode === "light" ? "#f5f5f5" : "#000";
|
||||||
|
const selectColor = mode === "light" ? "#f5f5f5" : "#d5d5d5";
|
||||||
|
|
||||||
|
const rootEle = document.documentElement;
|
||||||
|
rootEle.style.background = "transparent";
|
||||||
|
rootEle.style.setProperty("--selection-color", selectColor);
|
||||||
|
|
||||||
|
const setting = theme_setting || {};
|
||||||
|
|
||||||
|
const theme = createTheme({
|
||||||
|
breakpoints: {
|
||||||
|
values: { xs: 0, sm: 650, md: 900, lg: 1200, xl: 1536 },
|
||||||
|
},
|
||||||
|
palette: {
|
||||||
|
mode,
|
||||||
|
primary: { main: setting.primary_color || dt.primary_color },
|
||||||
|
secondary: { main: setting.secondary_color || dt.secondary_color },
|
||||||
|
info: { main: setting.info_color || dt.info_color },
|
||||||
|
error: { main: setting.error_color || dt.error_color },
|
||||||
|
warning: { main: setting.warning_color || dt.warning_color },
|
||||||
|
success: { main: setting.success_color || dt.success_color },
|
||||||
|
text: {
|
||||||
|
primary: setting.primary_text || dt.primary_text,
|
||||||
|
secondary: setting.secondary_text || dt.secondary_text,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
typography: {
|
||||||
|
// todo
|
||||||
|
fontFamily: setting.font_family
|
||||||
|
? `${setting.font_family}, ${dt.font_family}`
|
||||||
|
: dt.font_family,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// inject css
|
||||||
|
let style = document.querySelector("style#verge-theme");
|
||||||
|
if (!style) {
|
||||||
|
style = document.createElement("style");
|
||||||
|
style.id = "verge-theme";
|
||||||
|
document.head.appendChild(style!);
|
||||||
|
}
|
||||||
|
if (style) {
|
||||||
|
style.innerHTML = setting.css_injection || "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// update svg icon
|
||||||
|
const { palette } = theme;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
const dom = document.querySelector("#Gradient2");
|
||||||
|
if (dom) {
|
||||||
|
dom.innerHTML = `
|
||||||
|
<stop offset="0%" stop-color="${palette.primary.main}" />
|
||||||
|
<stop offset="80%" stop-color="${palette.primary.dark}" />
|
||||||
|
<stop offset="100%" stop-color="${palette.primary.dark}" />
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
}, 0);
|
||||||
|
|
||||||
|
return theme;
|
||||||
|
}, [theme_mode, theme_setting]);
|
||||||
|
|
||||||
|
return { theme };
|
||||||
|
}
|
||||||
@@ -1,19 +1,17 @@
|
|||||||
import { useRef } from "react";
|
import { useEffect, useRef } from "react";
|
||||||
|
import { useTheme } from "@mui/material";
|
||||||
|
|
||||||
const minPoint = 10;
|
const minPoint = 10;
|
||||||
const maxPoint = 36;
|
const maxPoint = 36;
|
||||||
|
|
||||||
const refLineAlpha = 0.5;
|
const refLineAlpha = 1;
|
||||||
const refLineWidth = 2;
|
const refLineWidth = 2;
|
||||||
const refLineColor = "#ccc";
|
|
||||||
|
|
||||||
const upLineAlpha = 0.6;
|
const upLineAlpha = 0.6;
|
||||||
const upLineWidth = 4;
|
const upLineWidth = 4;
|
||||||
const upLineColor = "#9c27b0";
|
|
||||||
|
|
||||||
const downLineAlpha = 1;
|
const downLineAlpha = 1;
|
||||||
const downLineWidth = 4;
|
const downLineWidth = 4;
|
||||||
const downLineColor = "#5b5c9d";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* draw the traffic graph
|
* draw the traffic graph
|
||||||
@@ -24,11 +22,23 @@ export default function useTrafficGraph() {
|
|||||||
const styleRef = useRef(true);
|
const styleRef = useRef(true);
|
||||||
const canvasRef = useRef<HTMLCanvasElement>(null!);
|
const canvasRef = useRef<HTMLCanvasElement>(null!);
|
||||||
|
|
||||||
|
const { palette } = useTheme();
|
||||||
|
const paletteRef = useRef(palette);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
paletteRef.current = palette;
|
||||||
|
}, [palette]);
|
||||||
|
|
||||||
const drawGraph = () => {
|
const drawGraph = () => {
|
||||||
const canvas = canvasRef.current!;
|
const canvas = canvasRef.current!;
|
||||||
|
|
||||||
if (!canvas) return;
|
if (!canvas) return;
|
||||||
|
|
||||||
|
const { primary, secondary, divider } = paletteRef.current;
|
||||||
|
const refLineColor = divider || "rgba(0, 0, 0, 0.12)";
|
||||||
|
const upLineColor = secondary.main || "#9c27b0";
|
||||||
|
const downLineColor = primary.main || "#5b5c9d";
|
||||||
|
|
||||||
const context = canvas.getContext("2d")!;
|
const context = canvas.getContext("2d")!;
|
||||||
const width = canvas.width;
|
const width = canvas.width;
|
||||||
const height = canvas.height;
|
const height = canvas.height;
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ const Item = styled(Box)(({ theme }) => ({
|
|||||||
margin: "0 12px",
|
margin: "0 12px",
|
||||||
lineHeight: 1.35,
|
lineHeight: 1.35,
|
||||||
borderBottom: `1px solid ${theme.palette.divider}`,
|
borderBottom: `1px solid ${theme.palette.divider}`,
|
||||||
|
fontSize: "0.875rem",
|
||||||
|
userSelect: "text",
|
||||||
"& .time": {},
|
"& .time": {},
|
||||||
"& .type": {
|
"& .type": {
|
||||||
display: "inline-block",
|
display: "inline-block",
|
||||||
|
|||||||
221
src/components/profile/enhanced.tsx
Normal file
221
src/components/profile/enhanced.tsx
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useState } from "react";
|
||||||
|
import { useLockFn } from "ahooks";
|
||||||
|
import {
|
||||||
|
Box,
|
||||||
|
Divider,
|
||||||
|
Grid,
|
||||||
|
IconButton,
|
||||||
|
ListItemIcon,
|
||||||
|
ListItemText,
|
||||||
|
Menu,
|
||||||
|
MenuItem,
|
||||||
|
Stack,
|
||||||
|
} from "@mui/material";
|
||||||
|
import {
|
||||||
|
AddchartRounded,
|
||||||
|
CheckRounded,
|
||||||
|
MenuRounded,
|
||||||
|
RestartAltRounded,
|
||||||
|
} from "@mui/icons-material";
|
||||||
|
import {
|
||||||
|
getProfiles,
|
||||||
|
deleteProfile,
|
||||||
|
enhanceProfiles,
|
||||||
|
changeProfileChain,
|
||||||
|
changeProfileValid,
|
||||||
|
} from "../../services/cmds";
|
||||||
|
import { CmdType } from "../../services/types";
|
||||||
|
import getSystem from "../../utils/get-system";
|
||||||
|
import ProfileMore from "./profile-more";
|
||||||
|
import Notice from "../base/base-notice";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
items: CmdType.ProfileItem[];
|
||||||
|
chain: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const OS = getSystem();
|
||||||
|
|
||||||
|
const EnhancedMode = (props: Props) => {
|
||||||
|
const { items, chain } = props;
|
||||||
|
|
||||||
|
const { data, mutate } = useSWR("getProfiles", getProfiles);
|
||||||
|
const valid = data?.valid || [];
|
||||||
|
|
||||||
|
const [anchorEl, setAnchorEl] = useState<any>(null);
|
||||||
|
|
||||||
|
// handler
|
||||||
|
const onEnhance = useLockFn(async () => {
|
||||||
|
try {
|
||||||
|
await enhanceProfiles();
|
||||||
|
Notice.success("Refresh clash config", 2000);
|
||||||
|
} catch (err: any) {
|
||||||
|
Notice.error(err.message || err.toString());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const onEnhanceEnable = useLockFn(async (uid: string) => {
|
||||||
|
if (chain.includes(uid)) return;
|
||||||
|
|
||||||
|
const newChain = [...chain, uid];
|
||||||
|
await changeProfileChain(newChain);
|
||||||
|
mutate((conf = {}) => ({ ...conf, chain: newChain }), true);
|
||||||
|
});
|
||||||
|
|
||||||
|
const onEnhanceDisable = useLockFn(async (uid: string) => {
|
||||||
|
if (!chain.includes(uid)) return;
|
||||||
|
|
||||||
|
const newChain = chain.filter((i) => i !== uid);
|
||||||
|
await changeProfileChain(newChain);
|
||||||
|
mutate((conf = {}) => ({ ...conf, chain: newChain }), true);
|
||||||
|
});
|
||||||
|
|
||||||
|
const onEnhanceDelete = useLockFn(async (uid: string) => {
|
||||||
|
try {
|
||||||
|
await onEnhanceDisable(uid);
|
||||||
|
await deleteProfile(uid);
|
||||||
|
mutate();
|
||||||
|
} catch (err: any) {
|
||||||
|
Notice.error(err?.message || err.toString());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const onMoveTop = useLockFn(async (uid: string) => {
|
||||||
|
if (!chain.includes(uid)) return;
|
||||||
|
|
||||||
|
const newChain = [uid].concat(chain.filter((i) => i !== uid));
|
||||||
|
await changeProfileChain(newChain);
|
||||||
|
mutate((conf = {}) => ({ ...conf, chain: newChain }), true);
|
||||||
|
});
|
||||||
|
|
||||||
|
const onMoveEnd = useLockFn(async (uid: string) => {
|
||||||
|
if (!chain.includes(uid)) return;
|
||||||
|
|
||||||
|
const newChain = chain.filter((i) => i !== uid).concat([uid]);
|
||||||
|
await changeProfileChain(newChain);
|
||||||
|
mutate((conf = {}) => ({ ...conf, chain: newChain }), true);
|
||||||
|
});
|
||||||
|
|
||||||
|
// update valid list
|
||||||
|
const onToggleValid = useLockFn(async (key: string) => {
|
||||||
|
try {
|
||||||
|
const newValid = valid.includes(key)
|
||||||
|
? valid.filter((i) => i !== key)
|
||||||
|
: valid.concat(key);
|
||||||
|
await changeProfileValid(newValid);
|
||||||
|
mutate();
|
||||||
|
} catch (err: any) {
|
||||||
|
Notice.error(err.message || err.toString());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box sx={{ mt: 4 }}>
|
||||||
|
<Stack
|
||||||
|
spacing={1}
|
||||||
|
direction="row"
|
||||||
|
alignItems="center"
|
||||||
|
justifyContent="flex-end"
|
||||||
|
sx={{ mb: 0.5 }}
|
||||||
|
>
|
||||||
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
color="inherit"
|
||||||
|
title="refresh enhanced profiles"
|
||||||
|
onClick={onEnhance}
|
||||||
|
>
|
||||||
|
<RestartAltRounded />
|
||||||
|
</IconButton>
|
||||||
|
|
||||||
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
color="inherit"
|
||||||
|
id="profile-use-button"
|
||||||
|
title="enable clash fields"
|
||||||
|
aria-controls={!!anchorEl ? "profile-use-menu" : undefined}
|
||||||
|
aria-haspopup="true"
|
||||||
|
aria-expanded={!!anchorEl ? "true" : undefined}
|
||||||
|
onClick={(e) => setAnchorEl(e.currentTarget)}
|
||||||
|
>
|
||||||
|
<MenuRounded />
|
||||||
|
</IconButton>
|
||||||
|
|
||||||
|
<Menu
|
||||||
|
id="profile-use-menu"
|
||||||
|
open={!!anchorEl}
|
||||||
|
anchorEl={anchorEl}
|
||||||
|
onClose={() => setAnchorEl(null)}
|
||||||
|
transitionDuration={225}
|
||||||
|
TransitionProps={
|
||||||
|
OS === "macos" ? { style: { transitionDuration: "225ms" } } : {}
|
||||||
|
}
|
||||||
|
MenuListProps={{
|
||||||
|
dense: true,
|
||||||
|
"aria-labelledby": "profile-use-button",
|
||||||
|
}}
|
||||||
|
onContextMenu={(e) => {
|
||||||
|
setAnchorEl(null);
|
||||||
|
e.preventDefault();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<MenuItem>
|
||||||
|
<ListItemIcon color="inherit">
|
||||||
|
<AddchartRounded />
|
||||||
|
</ListItemIcon>
|
||||||
|
Use Clash Fields
|
||||||
|
</MenuItem>
|
||||||
|
|
||||||
|
<Divider />
|
||||||
|
|
||||||
|
{[
|
||||||
|
"tun",
|
||||||
|
"dns",
|
||||||
|
"hosts",
|
||||||
|
"script",
|
||||||
|
"profile",
|
||||||
|
"payload",
|
||||||
|
"interface-name",
|
||||||
|
"routing-mark",
|
||||||
|
].map((key) => {
|
||||||
|
const has = valid.includes(key);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
key={key}
|
||||||
|
sx={{ width: 180 }}
|
||||||
|
onClick={() => onToggleValid(key)}
|
||||||
|
>
|
||||||
|
{has && (
|
||||||
|
<ListItemIcon color="inherit">
|
||||||
|
<CheckRounded />
|
||||||
|
</ListItemIcon>
|
||||||
|
)}
|
||||||
|
<ListItemText inset={!has}>{key}</ListItemText>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Menu>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
<Grid container spacing={2}>
|
||||||
|
{items.map((item) => (
|
||||||
|
<Grid item xs={12} sm={6} key={item.file}>
|
||||||
|
<ProfileMore
|
||||||
|
selected={!!chain.includes(item.uid)}
|
||||||
|
itemData={item}
|
||||||
|
enableNum={chain.length}
|
||||||
|
onEnable={() => onEnhanceEnable(item.uid)}
|
||||||
|
onDisable={() => onEnhanceDisable(item.uid)}
|
||||||
|
onDelete={() => onEnhanceDelete(item.uid)}
|
||||||
|
onMoveTop={() => onMoveTop(item.uid)}
|
||||||
|
onMoveEnd={() => onMoveEnd(item.uid)}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
))}
|
||||||
|
</Grid>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default EnhancedMode;
|
||||||
98
src/components/profile/file-editor.tsx
Normal file
98
src/components/profile/file-editor.tsx
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useEffect, useRef } from "react";
|
||||||
|
import { useLockFn } from "ahooks";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Dialog,
|
||||||
|
DialogActions,
|
||||||
|
DialogContent,
|
||||||
|
DialogTitle,
|
||||||
|
} from "@mui/material";
|
||||||
|
import {
|
||||||
|
getVergeConfig,
|
||||||
|
readProfileFile,
|
||||||
|
saveProfileFile,
|
||||||
|
} from "../../services/cmds";
|
||||||
|
import Notice from "../base/base-notice";
|
||||||
|
|
||||||
|
import "monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution.js";
|
||||||
|
import "monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.js";
|
||||||
|
import "monaco-editor/esm/vs/editor/contrib/folding/browser/folding.js";
|
||||||
|
import { editor } from "monaco-editor/esm/vs/editor/editor.api";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
uid: string;
|
||||||
|
open: boolean;
|
||||||
|
mode: "yaml" | "javascript";
|
||||||
|
onClose: () => void;
|
||||||
|
onChange?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const FileEditor = (props: Props) => {
|
||||||
|
const { uid, open, mode, onClose, onChange } = props;
|
||||||
|
|
||||||
|
const { t } = useTranslation();
|
||||||
|
const editorRef = useRef<any>();
|
||||||
|
const instanceRef = useRef<editor.IStandaloneCodeEditor | null>(null);
|
||||||
|
const { data: vergeConfig } = useSWR("getVergeConfig", getVergeConfig);
|
||||||
|
const { theme_mode } = vergeConfig ?? {};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!open) return;
|
||||||
|
|
||||||
|
readProfileFile(uid).then((data) => {
|
||||||
|
const dom = editorRef.current;
|
||||||
|
|
||||||
|
if (!dom) return;
|
||||||
|
if (instanceRef.current) instanceRef.current.dispose();
|
||||||
|
|
||||||
|
instanceRef.current = editor.create(editorRef.current, {
|
||||||
|
value: data,
|
||||||
|
language: mode,
|
||||||
|
theme: theme_mode === "light" ? "vs" : "vs-dark",
|
||||||
|
minimap: { enabled: false },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (instanceRef.current) {
|
||||||
|
instanceRef.current.dispose();
|
||||||
|
instanceRef.current = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, [open]);
|
||||||
|
|
||||||
|
const onSave = useLockFn(async () => {
|
||||||
|
const value = instanceRef.current?.getValue();
|
||||||
|
|
||||||
|
if (value == null) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await saveProfileFile(uid, value);
|
||||||
|
onChange?.();
|
||||||
|
onClose();
|
||||||
|
} catch (err: any) {
|
||||||
|
Notice.error(err.message || err.toString());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onClose={onClose}>
|
||||||
|
<DialogTitle>{t("Edit File")}</DialogTitle>
|
||||||
|
|
||||||
|
<DialogContent sx={{ width: 520, pb: 1 }}>
|
||||||
|
<div style={{ width: "100%", height: "420px" }} ref={editorRef} />
|
||||||
|
</DialogContent>
|
||||||
|
|
||||||
|
<DialogActions>
|
||||||
|
<Button onClick={onClose}>{t("Cancel")}</Button>
|
||||||
|
<Button onClick={onSave} variant="contained">
|
||||||
|
{t("Save")}
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default FileEditor;
|
||||||
@@ -20,7 +20,9 @@ import { CmdType } from "../../services/types";
|
|||||||
import { atomLoadingCache } from "../../services/states";
|
import { atomLoadingCache } from "../../services/states";
|
||||||
import { updateProfile, deleteProfile, viewProfile } from "../../services/cmds";
|
import { updateProfile, deleteProfile, viewProfile } from "../../services/cmds";
|
||||||
import parseTraffic from "../../utils/parse-traffic";
|
import parseTraffic from "../../utils/parse-traffic";
|
||||||
|
import getSystem from "../../utils/get-system";
|
||||||
import ProfileEdit from "./profile-edit";
|
import ProfileEdit from "./profile-edit";
|
||||||
|
import FileEditor from "./file-editor";
|
||||||
import Notice from "../base/base-notice";
|
import Notice from "../base/base-notice";
|
||||||
|
|
||||||
const Wrapper = styled(Box)(({ theme }) => ({
|
const Wrapper = styled(Box)(({ theme }) => ({
|
||||||
@@ -39,6 +41,8 @@ const round = keyframes`
|
|||||||
to { transform: rotate(360deg); }
|
to { transform: rotate(360deg); }
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const OS = getSystem();
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
selected: boolean;
|
selected: boolean;
|
||||||
itemData: CmdType.ProfileItem;
|
itemData: CmdType.ProfileItem;
|
||||||
@@ -54,7 +58,7 @@ const ProfileItem = (props: Props) => {
|
|||||||
const [position, setPosition] = useState({ left: 0, top: 0 });
|
const [position, setPosition] = useState({ left: 0, top: 0 });
|
||||||
const [loadingCache, setLoadingCache] = useRecoilState(atomLoadingCache);
|
const [loadingCache, setLoadingCache] = useRecoilState(atomLoadingCache);
|
||||||
|
|
||||||
const { name = "Profile", extra, updated = 0 } = itemData;
|
const { uid, name = "Profile", extra, updated = 0 } = itemData;
|
||||||
const { upload = 0, download = 0, total = 0 } = extra ?? {};
|
const { upload = 0, download = 0, total = 0 } = extra ?? {};
|
||||||
const from = parseUrl(itemData.url);
|
const from = parseUrl(itemData.url);
|
||||||
const expire = parseExpire(extra?.expire);
|
const expire = parseExpire(extra?.expire);
|
||||||
@@ -70,18 +74,16 @@ const ProfileItem = (props: Props) => {
|
|||||||
const loading = loadingCache[itemData.uid] ?? false;
|
const loading = loadingCache[itemData.uid] ?? false;
|
||||||
|
|
||||||
const [editOpen, setEditOpen] = useState(false);
|
const [editOpen, setEditOpen] = useState(false);
|
||||||
const onEdit = () => {
|
const [fileOpen, setFileOpen] = useState(false);
|
||||||
|
|
||||||
|
const onEditInfo = () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
setEditOpen(true);
|
setEditOpen(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onView = async () => {
|
const onEditFile = () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
try {
|
setFileOpen(true);
|
||||||
await viewProfile(itemData.uid);
|
|
||||||
} catch (err: any) {
|
|
||||||
Notice.error(err?.message || err.toString());
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onForceSelect = () => {
|
const onForceSelect = () => {
|
||||||
@@ -89,6 +91,15 @@ const ProfileItem = (props: Props) => {
|
|||||||
onSelect(true);
|
onSelect(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onOpenFile = useLockFn(async () => {
|
||||||
|
setAnchorEl(null);
|
||||||
|
try {
|
||||||
|
await viewProfile(itemData.uid);
|
||||||
|
} catch (err: any) {
|
||||||
|
Notice.error(err?.message || err.toString());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
const onUpdate = useLockFn(async (withProxy: boolean) => {
|
const onUpdate = useLockFn(async (withProxy: boolean) => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
setLoadingCache((cache) => ({ ...cache, [itemData.uid]: true }));
|
setLoadingCache((cache) => ({ ...cache, [itemData.uid]: true }));
|
||||||
@@ -122,16 +133,18 @@ const ProfileItem = (props: Props) => {
|
|||||||
|
|
||||||
const urlModeMenu = [
|
const urlModeMenu = [
|
||||||
{ label: "Select", handler: onForceSelect },
|
{ label: "Select", handler: onForceSelect },
|
||||||
{ label: "Edit", handler: onEdit },
|
{ label: "Edit Info", handler: onEditInfo },
|
||||||
{ label: "File", handler: onView },
|
{ label: "Edit File", handler: onEditFile },
|
||||||
|
{ label: "Open File", handler: onOpenFile },
|
||||||
{ label: "Update", handler: () => onUpdate(false) },
|
{ label: "Update", handler: () => onUpdate(false) },
|
||||||
{ label: "Update(Proxy)", handler: () => onUpdate(true) },
|
{ label: "Update(Proxy)", handler: () => onUpdate(true) },
|
||||||
{ label: "Delete", handler: onDelete },
|
{ label: "Delete", handler: onDelete },
|
||||||
];
|
];
|
||||||
const fileModeMenu = [
|
const fileModeMenu = [
|
||||||
{ label: "Select", handler: onForceSelect },
|
{ label: "Select", handler: onForceSelect },
|
||||||
{ label: "Edit", handler: onEdit },
|
{ label: "Edit Info", handler: onEditInfo },
|
||||||
{ label: "File", handler: onView },
|
{ label: "Edit File", handler: onEditFile },
|
||||||
|
{ label: "Open File", handler: onOpenFile },
|
||||||
{ label: "Delete", handler: onDelete },
|
{ label: "Delete", handler: onDelete },
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -256,6 +269,10 @@ const ProfileItem = (props: Props) => {
|
|||||||
onClose={() => setAnchorEl(null)}
|
onClose={() => setAnchorEl(null)}
|
||||||
anchorPosition={position}
|
anchorPosition={position}
|
||||||
anchorReference="anchorPosition"
|
anchorReference="anchorPosition"
|
||||||
|
transitionDuration={225}
|
||||||
|
TransitionProps={
|
||||||
|
OS === "macos" ? { style: { transitionDuration: "225ms" } } : {}
|
||||||
|
}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -279,6 +296,15 @@ const ProfileItem = (props: Props) => {
|
|||||||
onClose={() => setEditOpen(false)}
|
onClose={() => setEditOpen(false)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{fileOpen && (
|
||||||
|
<FileEditor
|
||||||
|
uid={uid}
|
||||||
|
open={fileOpen}
|
||||||
|
mode="yaml"
|
||||||
|
onClose={() => setFileOpen(false)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { useLockFn } from "ahooks";
|
||||||
import {
|
import {
|
||||||
alpha,
|
alpha,
|
||||||
Box,
|
Box,
|
||||||
@@ -12,9 +13,11 @@ import {
|
|||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { CmdType } from "../../services/types";
|
import { CmdType } from "../../services/types";
|
||||||
import { viewProfile } from "../../services/cmds";
|
import { viewProfile } from "../../services/cmds";
|
||||||
import ProfileEdit from "./profile-edit";
|
import getSystem from "../../utils/get-system";
|
||||||
import Notice from "../base/base-notice";
|
|
||||||
import enhance from "../../services/enhance";
|
import enhance from "../../services/enhance";
|
||||||
|
import ProfileEdit from "./profile-edit";
|
||||||
|
import FileEditor from "./file-editor";
|
||||||
|
import Notice from "../base/base-notice";
|
||||||
|
|
||||||
const Wrapper = styled(Box)(({ theme }) => ({
|
const Wrapper = styled(Box)(({ theme }) => ({
|
||||||
width: "100%",
|
width: "100%",
|
||||||
@@ -27,15 +30,17 @@ const Wrapper = styled(Box)(({ theme }) => ({
|
|||||||
boxSizing: "border-box",
|
boxSizing: "border-box",
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
const OS = getSystem();
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
selected: boolean;
|
selected: boolean;
|
||||||
itemData: CmdType.ProfileItem;
|
itemData: CmdType.ProfileItem;
|
||||||
|
enableNum: number;
|
||||||
onEnable: () => void;
|
onEnable: () => void;
|
||||||
onDisable: () => void;
|
onDisable: () => void;
|
||||||
onMoveTop: () => void;
|
onMoveTop: () => void;
|
||||||
onMoveEnd: () => void;
|
onMoveEnd: () => void;
|
||||||
onDelete: () => void;
|
onDelete: () => void;
|
||||||
onEnhance: () => void;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// profile enhanced item
|
// profile enhanced item
|
||||||
@@ -43,12 +48,12 @@ const ProfileMore = (props: Props) => {
|
|||||||
const {
|
const {
|
||||||
selected,
|
selected,
|
||||||
itemData,
|
itemData,
|
||||||
|
enableNum,
|
||||||
onEnable,
|
onEnable,
|
||||||
onDisable,
|
onDisable,
|
||||||
onMoveTop,
|
onMoveTop,
|
||||||
onMoveEnd,
|
onMoveEnd,
|
||||||
onDelete,
|
onDelete,
|
||||||
onEnhance,
|
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const { uid, type } = itemData;
|
const { uid, type } = itemData;
|
||||||
@@ -57,6 +62,7 @@ const ProfileMore = (props: Props) => {
|
|||||||
const [anchorEl, setAnchorEl] = useState<any>(null);
|
const [anchorEl, setAnchorEl] = useState<any>(null);
|
||||||
const [position, setPosition] = useState({ left: 0, top: 0 });
|
const [position, setPosition] = useState({ left: 0, top: 0 });
|
||||||
const [editOpen, setEditOpen] = useState(false);
|
const [editOpen, setEditOpen] = useState(false);
|
||||||
|
const [fileOpen, setFileOpen] = useState(false);
|
||||||
const [status, setStatus] = useState(enhance.status(uid));
|
const [status, setStatus] = useState(enhance.status(uid));
|
||||||
|
|
||||||
// unlisten when unmount
|
// unlisten when unmount
|
||||||
@@ -65,40 +71,48 @@ const ProfileMore = (props: Props) => {
|
|||||||
// error during enhanced mode
|
// error during enhanced mode
|
||||||
const hasError = selected && status?.status === "error";
|
const hasError = selected && status?.status === "error";
|
||||||
|
|
||||||
const onEdit = () => {
|
const onEditInfo = () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
setEditOpen(true);
|
setEditOpen(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onView = async () => {
|
const onEditFile = () => {
|
||||||
|
setAnchorEl(null);
|
||||||
|
setFileOpen(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onOpenFile = useLockFn(async () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
try {
|
try {
|
||||||
await viewProfile(itemData.uid);
|
await viewProfile(itemData.uid);
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
Notice.error(err?.message || err.toString());
|
Notice.error(err?.message || err.toString());
|
||||||
}
|
}
|
||||||
};
|
});
|
||||||
|
|
||||||
const closeWrapper = (fn: () => void) => () => {
|
const fnWrapper = (fn: () => void) => () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
return fn();
|
return fn();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const showMove = enableNum > 1 && !hasError;
|
||||||
|
|
||||||
const enableMenu = [
|
const enableMenu = [
|
||||||
{ label: "Disable", handler: closeWrapper(onDisable) },
|
{ label: "Disable", handler: fnWrapper(onDisable) },
|
||||||
{ label: "Refresh", handler: closeWrapper(onEnhance) },
|
{ label: "Edit Info", handler: onEditInfo },
|
||||||
{ label: "Edit", handler: onEdit },
|
{ label: "Edit File", handler: onEditFile },
|
||||||
{ label: "File", handler: onView },
|
{ label: "Open File", handler: onOpenFile },
|
||||||
{ label: "To Top", show: !hasError, handler: closeWrapper(onMoveTop) },
|
{ label: "To Top", show: showMove, handler: fnWrapper(onMoveTop) },
|
||||||
{ label: "To End", show: !hasError, handler: closeWrapper(onMoveEnd) },
|
{ label: "To End", show: showMove, handler: fnWrapper(onMoveEnd) },
|
||||||
{ label: "Delete", handler: closeWrapper(onDelete) },
|
{ label: "Delete", handler: fnWrapper(onDelete) },
|
||||||
];
|
];
|
||||||
|
|
||||||
const disableMenu = [
|
const disableMenu = [
|
||||||
{ label: "Enable", handler: closeWrapper(onEnable) },
|
{ label: "Enable", handler: fnWrapper(onEnable) },
|
||||||
{ label: "Edit", handler: onEdit },
|
{ label: "Edit Info", handler: onEditInfo },
|
||||||
{ label: "File", handler: onView },
|
{ label: "Edit File", handler: onEditFile },
|
||||||
{ label: "Delete", handler: closeWrapper(onDelete) },
|
{ label: "Open File", handler: onOpenFile },
|
||||||
|
{ label: "Delete", handler: fnWrapper(onDelete) },
|
||||||
];
|
];
|
||||||
|
|
||||||
const boxStyle = {
|
const boxStyle = {
|
||||||
@@ -208,6 +222,10 @@ const ProfileMore = (props: Props) => {
|
|||||||
onClose={() => setAnchorEl(null)}
|
onClose={() => setAnchorEl(null)}
|
||||||
anchorPosition={position}
|
anchorPosition={position}
|
||||||
anchorReference="anchorPosition"
|
anchorReference="anchorPosition"
|
||||||
|
transitionDuration={225}
|
||||||
|
TransitionProps={
|
||||||
|
OS === "macos" ? { style: { transitionDuration: "225ms" } } : {}
|
||||||
|
}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -233,6 +251,15 @@ const ProfileMore = (props: Props) => {
|
|||||||
onClose={() => setEditOpen(false)}
|
onClose={() => setEditOpen(false)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
{fileOpen && (
|
||||||
|
<FileEditor
|
||||||
|
uid={uid}
|
||||||
|
open={fileOpen}
|
||||||
|
mode={type === "merge" ? "yaml" : "javascript"}
|
||||||
|
onClose={() => setFileOpen(false)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
import useSWR, { useSWRConfig } from "swr";
|
||||||
import { useEffect, useRef, useState } from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import { useSWRConfig } from "swr";
|
|
||||||
import { useLockFn } from "ahooks";
|
import { useLockFn } from "ahooks";
|
||||||
import { Virtuoso } from "react-virtuoso";
|
import { Virtuoso } from "react-virtuoso";
|
||||||
import { Box, IconButton, TextField } from "@mui/material";
|
import { Box, IconButton, TextField } from "@mui/material";
|
||||||
@@ -13,6 +13,7 @@ import {
|
|||||||
} from "@mui/icons-material";
|
} from "@mui/icons-material";
|
||||||
import { ApiType } from "../../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
import { updateProxy } from "../../services/api";
|
import { updateProxy } from "../../services/api";
|
||||||
|
import { getProfiles, patchProfile } from "../../services/cmds";
|
||||||
import delayManager from "../../services/delay";
|
import delayManager from "../../services/delay";
|
||||||
import useFilterProxy from "./use-filter-proxy";
|
import useFilterProxy from "./use-filter-proxy";
|
||||||
import ProxyItem from "./proxy-item";
|
import ProxyItem from "./proxy-item";
|
||||||
@@ -23,6 +24,7 @@ interface Props {
|
|||||||
proxies: ApiType.ProxyItem[];
|
proxies: ApiType.ProxyItem[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this component will be used for DIRECT/GLOBAL
|
||||||
const ProxyGlobal = (props: Props) => {
|
const ProxyGlobal = (props: Props) => {
|
||||||
const { groupName, curProxy, proxies } = props;
|
const { groupName, curProxy, proxies } = props;
|
||||||
|
|
||||||
@@ -35,10 +37,27 @@ const ProxyGlobal = (props: Props) => {
|
|||||||
const virtuosoRef = useRef<any>();
|
const virtuosoRef = useRef<any>();
|
||||||
const filterProxies = useFilterProxy(proxies, groupName, filterText);
|
const filterProxies = useFilterProxy(proxies, groupName, filterText);
|
||||||
|
|
||||||
|
const { data: profiles } = useSWR("getProfiles", getProfiles);
|
||||||
|
|
||||||
const onChangeProxy = useLockFn(async (name: string) => {
|
const onChangeProxy = useLockFn(async (name: string) => {
|
||||||
await updateProxy("GLOBAL", name);
|
await updateProxy(groupName, name);
|
||||||
mutate("getProxies");
|
|
||||||
setNow(name);
|
setNow(name);
|
||||||
|
|
||||||
|
if (groupName === "DIRECT") return;
|
||||||
|
|
||||||
|
// update global selected
|
||||||
|
const profile = profiles?.items?.find((p) => p.uid === profiles.current);
|
||||||
|
if (!profile) return;
|
||||||
|
if (!profile.selected) profile.selected = [];
|
||||||
|
|
||||||
|
const index = profile.selected.findIndex((item) => item.name === groupName);
|
||||||
|
if (index < 0) {
|
||||||
|
profile.selected.unshift({ name: groupName, now: name });
|
||||||
|
} else {
|
||||||
|
profile.selected[index] = { name: groupName, now: name };
|
||||||
|
}
|
||||||
|
|
||||||
|
await patchProfile(profiles!.current!, { selected: profile.selected });
|
||||||
});
|
});
|
||||||
|
|
||||||
const onLocation = (smooth = true) => {
|
const onLocation = (smooth = true) => {
|
||||||
@@ -72,8 +91,24 @@ const ProxyGlobal = (props: Props) => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (groupName === "DIRECT") setNow("DIRECT");
|
if (groupName === "DIRECT") setNow("DIRECT");
|
||||||
if (groupName === "GLOBAL") setNow(curProxy || "DIRECT");
|
else if (groupName === "GLOBAL") {
|
||||||
}, [groupName, curProxy]);
|
if (profiles) {
|
||||||
|
const current = profiles.current;
|
||||||
|
const profile = profiles.items?.find((p) => p.uid === current);
|
||||||
|
|
||||||
|
profile?.selected?.forEach((item) => {
|
||||||
|
if (item.name === "GLOBAL") {
|
||||||
|
if (item.now && item.now !== curProxy) {
|
||||||
|
updateProxy("GLOBAL", item.now).then(() => setNow(item!.now!));
|
||||||
|
mutate("getProxies");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setNow(curProxy || "DIRECT");
|
||||||
|
}
|
||||||
|
}, [groupName, curProxy, profiles]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -89,18 +124,25 @@ const ProxyGlobal = (props: Props) => {
|
|||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="location"
|
title="location"
|
||||||
|
color="inherit"
|
||||||
onClick={() => onLocation(true)}
|
onClick={() => onLocation(true)}
|
||||||
>
|
>
|
||||||
<MyLocationRounded />
|
<MyLocationRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
|
||||||
<IconButton size="small" title="check" onClick={onCheckAll}>
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
title="delay check"
|
||||||
|
color="inherit"
|
||||||
|
onClick={onCheckAll}
|
||||||
|
>
|
||||||
<NetworkCheckRounded />
|
<NetworkCheckRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="check"
|
title="proxy detail"
|
||||||
|
color="inherit"
|
||||||
onClick={() => setShowType(!showType)}
|
onClick={() => setShowType(!showType)}
|
||||||
>
|
>
|
||||||
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
|
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
|
||||||
@@ -108,7 +150,8 @@ const ProxyGlobal = (props: Props) => {
|
|||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="check"
|
title="filter"
|
||||||
|
color="inherit"
|
||||||
onClick={() => setShowFilter(!showFilter)}
|
onClick={() => setShowFilter(!showFilter)}
|
||||||
>
|
>
|
||||||
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}
|
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}
|
||||||
|
|||||||
@@ -149,18 +149,25 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="location"
|
title="location"
|
||||||
|
color="inherit"
|
||||||
onClick={() => onLocation(true)}
|
onClick={() => onLocation(true)}
|
||||||
>
|
>
|
||||||
<MyLocationRounded />
|
<MyLocationRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
|
||||||
<IconButton size="small" title="check" onClick={onCheckAll}>
|
<IconButton
|
||||||
|
size="small"
|
||||||
|
title="delay check"
|
||||||
|
color="inherit"
|
||||||
|
onClick={onCheckAll}
|
||||||
|
>
|
||||||
<NetworkCheckRounded />
|
<NetworkCheckRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="check"
|
title="proxy detail"
|
||||||
|
color="inherit"
|
||||||
onClick={() => setShowType(!showType)}
|
onClick={() => setShowType(!showType)}
|
||||||
>
|
>
|
||||||
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
|
{showType ? <VisibilityRounded /> : <VisibilityOffRounded />}
|
||||||
@@ -168,7 +175,8 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
title="check"
|
title="filter"
|
||||||
|
color="inherit"
|
||||||
onClick={() => setShowFilter(!showFilter)}
|
onClick={() => setShowFilter(!showFilter)}
|
||||||
>
|
>
|
||||||
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}
|
{showFilter ? <FilterAltRounded /> : <FilterAltOffRounded />}
|
||||||
@@ -176,7 +184,6 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
|
|
||||||
{showFilter && (
|
{showFilter && (
|
||||||
<TextField
|
<TextField
|
||||||
autoFocus
|
|
||||||
hiddenLabel
|
hiddenLabel
|
||||||
value={filterText}
|
value={filterText}
|
||||||
size="small"
|
size="small"
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ const SettingSystem = ({ onError }: Props) => {
|
|||||||
const {
|
const {
|
||||||
enable_tun_mode,
|
enable_tun_mode,
|
||||||
enable_auto_launch,
|
enable_auto_launch,
|
||||||
|
enable_silent_start,
|
||||||
enable_system_proxy,
|
enable_system_proxy,
|
||||||
system_proxy_bypass,
|
system_proxy_bypass,
|
||||||
enable_proxy_guard,
|
enable_proxy_guard,
|
||||||
@@ -59,6 +60,20 @@ const SettingSystem = ({ onError }: Props) => {
|
|||||||
</GuardState>
|
</GuardState>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary={t("Silent Start")} />
|
||||||
|
<GuardState
|
||||||
|
value={enable_silent_start ?? false}
|
||||||
|
valueProps="checked"
|
||||||
|
onCatch={onError}
|
||||||
|
onFormat={onSwitchFormat}
|
||||||
|
onChange={(e) => onChangeData({ enable_silent_start: e })}
|
||||||
|
onGuard={(e) => patchVergeConfig({ enable_silent_start: e })}
|
||||||
|
>
|
||||||
|
<Switch edge="end" />
|
||||||
|
</GuardState>
|
||||||
|
</SettingItem>
|
||||||
|
|
||||||
<SettingItem>
|
<SettingItem>
|
||||||
<ListItemText
|
<ListItemText
|
||||||
primary={
|
primary={
|
||||||
|
|||||||
146
src/components/setting/setting-theme.tsx
Normal file
146
src/components/setting/setting-theme.tsx
Normal file
@@ -0,0 +1,146 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useLockFn } from "ahooks";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Dialog,
|
||||||
|
DialogActions,
|
||||||
|
DialogContent,
|
||||||
|
DialogTitle,
|
||||||
|
List,
|
||||||
|
ListItem,
|
||||||
|
ListItemText,
|
||||||
|
styled,
|
||||||
|
TextField,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { getVergeConfig, patchVergeConfig } from "../../services/cmds";
|
||||||
|
import { defaultTheme } from "../../pages/_theme";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
open: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
onError?: (err: Error) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Item = styled(ListItem)(() => ({
|
||||||
|
padding: "5px 2px",
|
||||||
|
}));
|
||||||
|
|
||||||
|
const Round = styled("div")(() => ({
|
||||||
|
width: "24px",
|
||||||
|
height: "24px",
|
||||||
|
borderRadius: "18px",
|
||||||
|
display: "inline-block",
|
||||||
|
marginRight: "8px",
|
||||||
|
}));
|
||||||
|
|
||||||
|
const SettingTheme = (props: Props) => {
|
||||||
|
const { open, onClose, onError } = props;
|
||||||
|
|
||||||
|
const { t } = useTranslation();
|
||||||
|
const { data: vergeConfig, mutate } = useSWR(
|
||||||
|
"getVergeConfig",
|
||||||
|
getVergeConfig
|
||||||
|
);
|
||||||
|
|
||||||
|
const { theme_setting } = vergeConfig ?? {};
|
||||||
|
const [theme, setTheme] = useState(theme_setting || {});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setTheme({ ...theme_setting } || {});
|
||||||
|
}, [theme_setting]);
|
||||||
|
|
||||||
|
const textProps = {
|
||||||
|
size: "small",
|
||||||
|
autoComplete: "off",
|
||||||
|
sx: { width: 135 },
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
const handleChange = (field: keyof typeof theme) => (e: any) => {
|
||||||
|
setTheme((t) => ({ ...t, [field]: e.target.value }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const onSave = useLockFn(async () => {
|
||||||
|
try {
|
||||||
|
await patchVergeConfig({ theme_setting: theme });
|
||||||
|
mutate();
|
||||||
|
onClose();
|
||||||
|
} catch (err: any) {
|
||||||
|
onError?.(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const renderItem = (label: string, key: keyof typeof defaultTheme) => {
|
||||||
|
return (
|
||||||
|
<Item>
|
||||||
|
<ListItemText primary={label} />
|
||||||
|
<Round sx={{ background: theme[key] || defaultTheme[key] }} />
|
||||||
|
<TextField
|
||||||
|
{...textProps}
|
||||||
|
value={theme[key] ?? ""}
|
||||||
|
placeholder={defaultTheme[key]}
|
||||||
|
onChange={handleChange(key)}
|
||||||
|
onKeyDown={(e) => e.key === "Enter" && onSave()}
|
||||||
|
/>
|
||||||
|
</Item>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onClose={onClose}>
|
||||||
|
<DialogTitle>{t("Theme Setting")}</DialogTitle>
|
||||||
|
|
||||||
|
<DialogContent
|
||||||
|
sx={{ width: 400, maxHeight: 300, overflow: "auto", pb: 0 }}
|
||||||
|
>
|
||||||
|
<List sx={{ pt: 0 }}>
|
||||||
|
{renderItem("Primary Color", "primary_color")}
|
||||||
|
|
||||||
|
{renderItem("Secondary Color", "secondary_color")}
|
||||||
|
|
||||||
|
{renderItem("Primary Text", "primary_text")}
|
||||||
|
|
||||||
|
{renderItem("Secondary Text", "secondary_text")}
|
||||||
|
|
||||||
|
{renderItem("Info Color", "info_color")}
|
||||||
|
|
||||||
|
{renderItem("Error Color", "error_color")}
|
||||||
|
|
||||||
|
{renderItem("Warning Color", "warning_color")}
|
||||||
|
|
||||||
|
{renderItem("Success Color", "success_color")}
|
||||||
|
|
||||||
|
<Item>
|
||||||
|
<ListItemText primary="Font Family" />
|
||||||
|
<TextField
|
||||||
|
{...textProps}
|
||||||
|
value={theme.font_family ?? ""}
|
||||||
|
onChange={handleChange("font_family")}
|
||||||
|
onKeyDown={(e) => e.key === "Enter" && onSave()}
|
||||||
|
/>
|
||||||
|
</Item>
|
||||||
|
|
||||||
|
<Item>
|
||||||
|
<ListItemText primary="CSS Injection" />
|
||||||
|
<TextField
|
||||||
|
{...textProps}
|
||||||
|
value={theme.css_injection ?? ""}
|
||||||
|
onChange={handleChange("css_injection")}
|
||||||
|
onKeyDown={(e) => e.key === "Enter" && onSave()}
|
||||||
|
/>
|
||||||
|
</Item>
|
||||||
|
</List>
|
||||||
|
</DialogContent>
|
||||||
|
|
||||||
|
<DialogActions>
|
||||||
|
<Button onClick={onClose}>{t("Cancel")}</Button>
|
||||||
|
<Button onClick={onSave} variant="contained">
|
||||||
|
{t("Save")}
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SettingTheme;
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
import useSWR, { useSWRConfig } from "swr";
|
import useSWR, { useSWRConfig } from "swr";
|
||||||
|
import { useState } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import {
|
import {
|
||||||
IconButton,
|
IconButton,
|
||||||
@@ -20,6 +21,7 @@ import { CmdType } from "../../services/types";
|
|||||||
import { version } from "../../../package.json";
|
import { version } from "../../../package.json";
|
||||||
import PaletteSwitch from "./palette-switch";
|
import PaletteSwitch from "./palette-switch";
|
||||||
import GuardState from "./guard-state";
|
import GuardState from "./guard-state";
|
||||||
|
import SettingTheme from "./setting-theme";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
onError?: (err: Error) => void;
|
onError?: (err: Error) => void;
|
||||||
@@ -32,6 +34,8 @@ const SettingVerge = ({ onError }: Props) => {
|
|||||||
|
|
||||||
const { theme_mode, theme_blur, traffic_graph, language } = vergeConfig ?? {};
|
const { theme_mode, theme_blur, traffic_graph, language } = vergeConfig ?? {};
|
||||||
|
|
||||||
|
const [themeOpen, setThemeOpen] = useState(false);
|
||||||
|
|
||||||
const onSwitchFormat = (_e: any, value: boolean) => value;
|
const onSwitchFormat = (_e: any, value: boolean) => value;
|
||||||
const onChangeData = (patch: Partial<CmdType.VergeConfig>) => {
|
const onChangeData = (patch: Partial<CmdType.VergeConfig>) => {
|
||||||
mutate("getVergeConfig", { ...vergeConfig, ...patch }, false);
|
mutate("getVergeConfig", { ...vergeConfig, ...patch }, false);
|
||||||
@@ -99,6 +103,17 @@ const SettingVerge = ({ onError }: Props) => {
|
|||||||
</GuardState>
|
</GuardState>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary={t("Theme Setting")} />
|
||||||
|
<IconButton
|
||||||
|
color="inherit"
|
||||||
|
size="small"
|
||||||
|
onClick={() => setThemeOpen(true)}
|
||||||
|
>
|
||||||
|
<ArrowForward />
|
||||||
|
</IconButton>
|
||||||
|
</SettingItem>
|
||||||
|
|
||||||
<SettingItem>
|
<SettingItem>
|
||||||
<ListItemText primary={t("Open App Dir")} />
|
<ListItemText primary={t("Open App Dir")} />
|
||||||
<IconButton color="inherit" size="small" onClick={openAppDir}>
|
<IconButton color="inherit" size="small" onClick={openAppDir}>
|
||||||
@@ -117,6 +132,8 @@ const SettingVerge = ({ onError }: Props) => {
|
|||||||
<ListItemText primary={t("Version")} />
|
<ListItemText primary={t("Version")} />
|
||||||
<Typography sx={{ py: "6px" }}>v{version}</Typography>
|
<Typography sx={{ py: "6px" }}>v{version}</Typography>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingTheme open={themeOpen} onClose={() => setThemeOpen(false)} />
|
||||||
</SettingList>
|
</SettingList>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,8 +19,9 @@
|
|||||||
"New": "New",
|
"New": "New",
|
||||||
"Close All": "Close All",
|
"Close All": "Close All",
|
||||||
"Select": "Select",
|
"Select": "Select",
|
||||||
"Edit": "Edit",
|
"Edit Info": "Edit Info",
|
||||||
"File": "File",
|
"Edit File": "Edit File",
|
||||||
|
"Open File": "Open File",
|
||||||
"Update": "Update",
|
"Update": "Update",
|
||||||
"Update(Proxy)": "Update(Proxy)",
|
"Update(Proxy)": "Update(Proxy)",
|
||||||
"Delete": "Delete",
|
"Delete": "Delete",
|
||||||
@@ -41,14 +42,19 @@
|
|||||||
"Clash core": "Clash core",
|
"Clash core": "Clash core",
|
||||||
"Tun Mode": "Tun Mode",
|
"Tun Mode": "Tun Mode",
|
||||||
"Auto Launch": "Auto Launch",
|
"Auto Launch": "Auto Launch",
|
||||||
|
"Silent Start": "Silent Start",
|
||||||
"System Proxy": "System Proxy",
|
"System Proxy": "System Proxy",
|
||||||
"Proxy Guard": "Proxy Guard",
|
"Proxy Guard": "Proxy Guard",
|
||||||
"Proxy Bypass": "Proxy Bypass",
|
"Proxy Bypass": "Proxy Bypass",
|
||||||
"Theme Mode": "Theme Mode",
|
"Theme Mode": "Theme Mode",
|
||||||
"Theme Blur": "Theme Blur",
|
"Theme Blur": "Theme Blur",
|
||||||
|
"Theme Setting": "Theme Setting",
|
||||||
"Traffic Graph": "Traffic Graph",
|
"Traffic Graph": "Traffic Graph",
|
||||||
"Language": "Language",
|
"Language": "Language",
|
||||||
"Open App Dir": "Open App Dir",
|
"Open App Dir": "Open App Dir",
|
||||||
"Open Logs Dir": "Open Logs Dir",
|
"Open Logs Dir": "Open Logs Dir",
|
||||||
"Version": "Version"
|
"Version": "Version",
|
||||||
|
|
||||||
|
"Save": "Save",
|
||||||
|
"Cancel": "Cancel"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,8 +19,9 @@
|
|||||||
"New": "新建",
|
"New": "新建",
|
||||||
"Close All": "关闭全部",
|
"Close All": "关闭全部",
|
||||||
"Select": "使用",
|
"Select": "使用",
|
||||||
"Edit": "编辑信息",
|
"Edit Info": "编辑信息",
|
||||||
"File": "打开文件",
|
"Edit File": "编辑文件",
|
||||||
|
"Open File": "打开文件",
|
||||||
"Update": "更新",
|
"Update": "更新",
|
||||||
"Update(Proxy)": "更新(代理)",
|
"Update(Proxy)": "更新(代理)",
|
||||||
"Delete": "删除",
|
"Delete": "删除",
|
||||||
@@ -41,14 +42,19 @@
|
|||||||
"Clash core": "Clash 内核",
|
"Clash core": "Clash 内核",
|
||||||
"Tun Mode": "Tun 模式",
|
"Tun Mode": "Tun 模式",
|
||||||
"Auto Launch": "开机自启",
|
"Auto Launch": "开机自启",
|
||||||
|
"Silent Start": "静默启动",
|
||||||
"System Proxy": "系统代理",
|
"System Proxy": "系统代理",
|
||||||
"Proxy Guard": "系统代理守卫",
|
"Proxy Guard": "系统代理守卫",
|
||||||
"Proxy Bypass": "Proxy Bypass",
|
"Proxy Bypass": "Proxy Bypass",
|
||||||
"Theme Mode": "暗夜模式",
|
"Theme Mode": "暗夜模式",
|
||||||
"Theme Blur": "背景模糊",
|
"Theme Blur": "背景模糊",
|
||||||
|
"Theme Setting": "主题设置",
|
||||||
"Traffic Graph": "流量图显",
|
"Traffic Graph": "流量图显",
|
||||||
"Language": "语言设置",
|
"Language": "语言设置",
|
||||||
"Open App Dir": "应用目录",
|
"Open App Dir": "应用目录",
|
||||||
"Open Logs Dir": "日志目录",
|
"Open Logs Dir": "日志目录",
|
||||||
"Version": "版本"
|
"Version": "版本",
|
||||||
|
|
||||||
|
"Save": "保存",
|
||||||
|
"Cancel": "取消"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
/// <reference types="vite/client" />
|
/// <reference types="vite/client" />
|
||||||
|
/// <reference types="vite-plugin-svgr/client" />
|
||||||
import "./assets/styles/index.scss";
|
import "./assets/styles/index.scss";
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|||||||
@@ -2,20 +2,21 @@ import dayjs from "dayjs";
|
|||||||
import i18next from "i18next";
|
import i18next from "i18next";
|
||||||
import relativeTime from "dayjs/plugin/relativeTime";
|
import relativeTime from "dayjs/plugin/relativeTime";
|
||||||
import useSWR, { SWRConfig, useSWRConfig } from "swr";
|
import useSWR, { SWRConfig, useSWRConfig } from "swr";
|
||||||
import { useEffect, useMemo } from "react";
|
import { useEffect } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { Route, Routes } from "react-router-dom";
|
import { Route, Routes } from "react-router-dom";
|
||||||
import { alpha, createTheme, List, Paper, ThemeProvider } from "@mui/material";
|
import { alpha, List, Paper, ThemeProvider } from "@mui/material";
|
||||||
import { listen } from "@tauri-apps/api/event";
|
import { listen } from "@tauri-apps/api/event";
|
||||||
import { appWindow } from "@tauri-apps/api/window";
|
import { appWindow } from "@tauri-apps/api/window";
|
||||||
import { routers } from "./_routers";
|
import { routers } from "./_routers";
|
||||||
import { getAxios } from "../services/api";
|
import { getAxios } from "../services/api";
|
||||||
import { getVergeConfig } from "../services/cmds";
|
import { getVergeConfig } from "../services/cmds";
|
||||||
import LogoSvg from "../assets/image/logo.svg";
|
import { ReactComponent as LogoSvg } from "../assets/image/logo.svg";
|
||||||
import LayoutItem from "../components/layout/layout-item";
|
import LayoutItem from "../components/layout/layout-item";
|
||||||
import LayoutControl from "../components/layout/layout-control";
|
import LayoutControl from "../components/layout/layout-control";
|
||||||
import LayoutTraffic from "../components/layout/layout-traffic";
|
import LayoutTraffic from "../components/layout/layout-traffic";
|
||||||
import UpdateButton from "../components/layout/update-button";
|
import UpdateButton from "../components/layout/update-button";
|
||||||
|
import useCustomTheme from "../components/layout/use-custom-theme";
|
||||||
import getSystem from "../utils/get-system";
|
import getSystem from "../utils/get-system";
|
||||||
import "dayjs/locale/zh-cn";
|
import "dayjs/locale/zh-cn";
|
||||||
|
|
||||||
@@ -26,10 +27,11 @@ const OS = getSystem();
|
|||||||
const Layout = () => {
|
const Layout = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const { mutate } = useSWRConfig();
|
const { mutate } = useSWRConfig();
|
||||||
const { data } = useSWR("getVergeConfig", getVergeConfig);
|
|
||||||
|
|
||||||
const blur = !!data?.theme_blur;
|
const { theme } = useCustomTheme();
|
||||||
const mode = data?.theme_mode ?? "light";
|
|
||||||
|
const { data: vergeConfig } = useSWR("getVergeConfig", getVergeConfig);
|
||||||
|
const { theme_blur, language } = vergeConfig || {};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
window.addEventListener("keydown", (e) => {
|
window.addEventListener("keydown", (e) => {
|
||||||
@@ -48,37 +50,11 @@ const Layout = () => {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (data?.language) {
|
if (language) {
|
||||||
dayjs.locale(data.language === "zh" ? "zh-cn" : data.language);
|
dayjs.locale(language === "zh" ? "zh-cn" : language);
|
||||||
i18next.changeLanguage(data.language);
|
i18next.changeLanguage(language);
|
||||||
}
|
}
|
||||||
}, [data?.language]);
|
}, [language]);
|
||||||
|
|
||||||
const theme = useMemo(() => {
|
|
||||||
// const background = mode === "light" ? "#f5f5f5" : "#000";
|
|
||||||
const selectColor = mode === "light" ? "#f5f5f5" : "#d5d5d5";
|
|
||||||
|
|
||||||
const rootEle = document.documentElement;
|
|
||||||
rootEle.style.background = "transparent";
|
|
||||||
rootEle.style.setProperty("--selection-color", selectColor);
|
|
||||||
|
|
||||||
return createTheme({
|
|
||||||
breakpoints: {
|
|
||||||
values: { xs: 0, sm: 650, md: 900, lg: 1200, xl: 1536 },
|
|
||||||
},
|
|
||||||
palette: {
|
|
||||||
mode,
|
|
||||||
primary: { main: "#5b5c9d" },
|
|
||||||
text: { primary: "#637381", secondary: "#909399" },
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}, [mode]);
|
|
||||||
|
|
||||||
const onDragging = (e: any) => {
|
|
||||||
if (e?.target?.dataset?.windrag) {
|
|
||||||
appWindow.startDragging();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SWRConfig value={{}}>
|
<SWRConfig value={{}}>
|
||||||
@@ -87,20 +63,22 @@ const Layout = () => {
|
|||||||
square
|
square
|
||||||
elevation={0}
|
elevation={0}
|
||||||
className={`${OS} layout`}
|
className={`${OS} layout`}
|
||||||
onPointerDown={onDragging}
|
onPointerDown={(e: any) => {
|
||||||
|
if (e.target?.dataset?.windrag) appWindow.startDragging();
|
||||||
|
}}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
// only prevent it on Windows
|
// only prevent it on Windows
|
||||||
if (OS === "windows") e.preventDefault();
|
if (OS === "windows") e.preventDefault();
|
||||||
}}
|
}}
|
||||||
sx={[
|
sx={[
|
||||||
(theme) => ({
|
({ palette }) => ({
|
||||||
bgcolor: alpha(theme.palette.background.paper, blur ? 0.85 : 1),
|
bgcolor: alpha(palette.background.paper, theme_blur ? 0.85 : 1),
|
||||||
}),
|
}),
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<div className="layout__left" data-windrag>
|
<div className="layout__left" data-windrag>
|
||||||
<div className="the-logo" data-windrag>
|
<div className="the-logo" data-windrag>
|
||||||
<img src={LogoSvg} alt="" data-windrag />
|
<LogoSvg />
|
||||||
|
|
||||||
<UpdateButton className="the-newbtn" />
|
<UpdateButton className="the-newbtn" />
|
||||||
</div>
|
</div>
|
||||||
@@ -119,7 +97,7 @@ const Layout = () => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="layout__right" data-windrag>
|
<div className="layout__right" data-windrag>
|
||||||
{OS === "windows" && (
|
{OS !== "macos" && (
|
||||||
<div className="the-bar">
|
<div className="the-bar">
|
||||||
<LayoutControl />
|
<LayoutControl />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
12
src/pages/_theme.tsx
Normal file
12
src/pages/_theme.tsx
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// default theme setting
|
||||||
|
export const defaultTheme = {
|
||||||
|
primary_color: "#5b5c9d",
|
||||||
|
secondary_color: "#9c27b0",
|
||||||
|
primary_text: "#637381",
|
||||||
|
secondary_text: "#909399",
|
||||||
|
info_color: "#0288d1",
|
||||||
|
error_color: "#d32f2f",
|
||||||
|
warning_color: "#ed6c02",
|
||||||
|
success_color: "#2e7d32",
|
||||||
|
font_family: `"Roboto", "Helvetica", "Arial", sans-serif`,
|
||||||
|
};
|
||||||
@@ -12,7 +12,7 @@ const ConnectionsPage = () => {
|
|||||||
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
||||||
|
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const [conn, setConn] = useState<ApiType.Connections>(initConn);
|
const [connData, setConnData] = useState<ApiType.Connections>(initConn);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
let ws: WebSocket | null = null;
|
let ws: WebSocket | null = null;
|
||||||
@@ -23,7 +23,35 @@ const ConnectionsPage = () => {
|
|||||||
|
|
||||||
ws.addEventListener("message", (event) => {
|
ws.addEventListener("message", (event) => {
|
||||||
const data = JSON.parse(event.data) as ApiType.Connections;
|
const data = JSON.parse(event.data) as ApiType.Connections;
|
||||||
setConn(data);
|
setConnData((old) => {
|
||||||
|
const oldConn = old.connections;
|
||||||
|
const oldList = oldConn.map((each) => each.id);
|
||||||
|
const maxLen = data.connections.length;
|
||||||
|
|
||||||
|
const connections: typeof oldConn = [];
|
||||||
|
|
||||||
|
// 与前一次连接的顺序尽量保持一致
|
||||||
|
data.connections
|
||||||
|
.filter((each) => {
|
||||||
|
const index = oldList.indexOf(each.id);
|
||||||
|
|
||||||
|
if (index >= 0 && index < maxLen) {
|
||||||
|
connections[index] = each;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.forEach((each) => {
|
||||||
|
for (let i = 0; i < maxLen; ++i) {
|
||||||
|
if (!connections[i]) {
|
||||||
|
connections[i] = each;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return { ...data, connections };
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -50,7 +78,7 @@ const ConnectionsPage = () => {
|
|||||||
<Paper sx={{ boxShadow: 2, height: "100%" }}>
|
<Paper sx={{ boxShadow: 2, height: "100%" }}>
|
||||||
<Virtuoso
|
<Virtuoso
|
||||||
initialTopMostItemIndex={999}
|
initialTopMostItemIndex={999}
|
||||||
data={conn.connections}
|
data={connData.connections}
|
||||||
itemContent={(index, item) => <ConnectionItem value={item} />}
|
itemContent={(index, item) => <ConnectionItem value={item} />}
|
||||||
/>
|
/>
|
||||||
</Paper>
|
</Paper>
|
||||||
|
|||||||
@@ -6,18 +6,15 @@ import { useTranslation } from "react-i18next";
|
|||||||
import {
|
import {
|
||||||
getProfiles,
|
getProfiles,
|
||||||
patchProfile,
|
patchProfile,
|
||||||
deleteProfile,
|
|
||||||
selectProfile,
|
selectProfile,
|
||||||
importProfile,
|
importProfile,
|
||||||
enhanceProfiles,
|
|
||||||
changeProfileChain,
|
|
||||||
} from "../services/cmds";
|
} from "../services/cmds";
|
||||||
import { getProxies, updateProxy } from "../services/api";
|
import { getProxies, updateProxy } from "../services/api";
|
||||||
import Notice from "../components/base/base-notice";
|
import Notice from "../components/base/base-notice";
|
||||||
import BasePage from "../components/base/base-page";
|
import BasePage from "../components/base/base-page";
|
||||||
import ProfileNew from "../components/profile/profile-new";
|
import ProfileNew from "../components/profile/profile-new";
|
||||||
import ProfileItem from "../components/profile/profile-item";
|
import ProfileItem from "../components/profile/profile-item";
|
||||||
import ProfileMore from "../components/profile/profile-more";
|
import EnhancedMode from "../components/profile/enhanced";
|
||||||
|
|
||||||
const ProfilePage = () => {
|
const ProfilePage = () => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@@ -29,6 +26,7 @@ const ProfilePage = () => {
|
|||||||
|
|
||||||
const { data: profiles = {} } = useSWR("getProfiles", getProfiles);
|
const { data: profiles = {} } = useSWR("getProfiles", getProfiles);
|
||||||
|
|
||||||
|
// distinguish type
|
||||||
const { regularItems, enhanceItems } = useMemo(() => {
|
const { regularItems, enhanceItems } = useMemo(() => {
|
||||||
const items = profiles.items || [];
|
const items = profiles.items || [];
|
||||||
const chain = profiles.chain || [];
|
const chain = profiles.chain || [];
|
||||||
@@ -48,6 +46,7 @@ const ProfilePage = () => {
|
|||||||
return { regularItems, enhanceItems };
|
return { regularItems, enhanceItems };
|
||||||
}, [profiles]);
|
}, [profiles]);
|
||||||
|
|
||||||
|
// sync selected proxy
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (profiles.current == null) return;
|
if (profiles.current == null) return;
|
||||||
|
|
||||||
@@ -65,9 +64,10 @@ const ProfilePage = () => {
|
|||||||
selected.map((each) => [each.name!, each.now!])
|
selected.map((each) => [each.name!, each.now!])
|
||||||
);
|
);
|
||||||
|
|
||||||
// todo: enhance error handle
|
|
||||||
let hasChange = false;
|
let hasChange = false;
|
||||||
proxiesData.groups.forEach((group) => {
|
|
||||||
|
const { global, groups } = proxiesData;
|
||||||
|
[global, ...groups].forEach((group) => {
|
||||||
const { name, now } = group;
|
const { name, now } = group;
|
||||||
|
|
||||||
if (!now || selectedMap[name] === now) return;
|
if (!now || selectedMap[name] === now) return;
|
||||||
@@ -78,15 +78,14 @@ const ProfilePage = () => {
|
|||||||
updateProxy(name, selectedMap[name]);
|
updateProxy(name, selectedMap[name]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// update profile selected list
|
// update profile selected list
|
||||||
profile.selected = Object.entries(selectedMap).map(([name, now]) => ({
|
profile.selected = Object.entries(selectedMap).map(([name, now]) => ({
|
||||||
name,
|
name,
|
||||||
now,
|
now,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
patchProfile(current!, { selected: profile.selected }).catch(
|
patchProfile(current!, { selected: profile.selected });
|
||||||
console.error
|
|
||||||
);
|
|
||||||
// update proxies cache
|
// update proxies cache
|
||||||
if (hasChange) mutate("getProxies", getProxies());
|
if (hasChange) mutate("getProxies", getProxies());
|
||||||
}, 100);
|
}, 100);
|
||||||
@@ -128,54 +127,6 @@ const ProfilePage = () => {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/** enhanced profile mode */
|
|
||||||
|
|
||||||
const chain = profiles.chain || [];
|
|
||||||
|
|
||||||
const onEnhance = useLockFn(enhanceProfiles);
|
|
||||||
|
|
||||||
const onEnhanceEnable = useLockFn(async (uid: string) => {
|
|
||||||
if (chain.includes(uid)) return;
|
|
||||||
|
|
||||||
const newChain = [...chain, uid];
|
|
||||||
await changeProfileChain(newChain);
|
|
||||||
mutate("getProfiles", { ...profiles, chain: newChain }, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
const onEnhanceDisable = useLockFn(async (uid: string) => {
|
|
||||||
if (!chain.includes(uid)) return;
|
|
||||||
|
|
||||||
const newChain = chain.filter((i) => i !== uid);
|
|
||||||
await changeProfileChain(newChain);
|
|
||||||
mutate("getProfiles", { ...profiles, chain: newChain }, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
const onEnhanceDelete = useLockFn(async (uid: string) => {
|
|
||||||
try {
|
|
||||||
await onEnhanceDisable(uid);
|
|
||||||
await deleteProfile(uid);
|
|
||||||
mutate("getProfiles");
|
|
||||||
} catch (err: any) {
|
|
||||||
Notice.error(err?.message || err.toString());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const onMoveTop = useLockFn(async (uid: string) => {
|
|
||||||
if (!chain.includes(uid)) return;
|
|
||||||
|
|
||||||
const newChain = [uid].concat(chain.filter((i) => i !== uid));
|
|
||||||
await changeProfileChain(newChain);
|
|
||||||
mutate("getProfiles", { ...profiles, chain: newChain }, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
const onMoveEnd = useLockFn(async (uid: string) => {
|
|
||||||
if (!chain.includes(uid)) return;
|
|
||||||
|
|
||||||
const newChain = chain.filter((i) => i !== uid).concat([uid]);
|
|
||||||
await changeProfileChain(newChain);
|
|
||||||
mutate("getProfiles", { ...profiles, chain: newChain }, true);
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BasePage title={t("Profiles")}>
|
<BasePage title={t("Profiles")}>
|
||||||
<Box sx={{ display: "flex", mb: 2.5 }}>
|
<Box sx={{ display: "flex", mb: 2.5 }}>
|
||||||
@@ -214,22 +165,9 @@ const ProfilePage = () => {
|
|||||||
))}
|
))}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid container spacing={2} sx={{ mt: 3 }}>
|
{enhanceItems.length > 0 && (
|
||||||
{enhanceItems.map((item) => (
|
<EnhancedMode items={enhanceItems} chain={profiles.chain || []} />
|
||||||
<Grid item xs={12} sm={6} key={item.file}>
|
)}
|
||||||
<ProfileMore
|
|
||||||
selected={!!profiles.chain?.includes(item.uid)}
|
|
||||||
itemData={item}
|
|
||||||
onEnable={() => onEnhanceEnable(item.uid)}
|
|
||||||
onDisable={() => onEnhanceDisable(item.uid)}
|
|
||||||
onDelete={() => onEnhanceDelete(item.uid)}
|
|
||||||
onMoveTop={() => onMoveTop(item.uid)}
|
|
||||||
onMoveEnd={() => onMoveEnd(item.uid)}
|
|
||||||
onEnhance={onEnhance}
|
|
||||||
/>
|
|
||||||
</Grid>
|
|
||||||
))}
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
<ProfileNew open={dialogOpen} onClose={() => setDialogOpen(false)} />
|
<ProfileNew open={dialogOpen} onClose={() => setDialogOpen(false)} />
|
||||||
</BasePage>
|
</BasePage>
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ const ProxyPage = () => {
|
|||||||
const { data: clashConfig } = useSWR("getClashConfig", getClashConfig);
|
const { data: clashConfig } = useSWR("getClashConfig", getClashConfig);
|
||||||
|
|
||||||
const modeList = ["rule", "global", "direct"];
|
const modeList = ["rule", "global", "direct"];
|
||||||
const curMode = clashConfig?.mode.toLowerCase() ?? "direct";
|
const curMode = clashConfig?.mode.toLowerCase();
|
||||||
const { groups = [], proxies = [] } = proxiesData ?? {};
|
const { groups = [], proxies = [] } = proxiesData ?? {};
|
||||||
|
|
||||||
// make sure that fetch the proxies successfully
|
// make sure that fetch the proxies successfully
|
||||||
|
|||||||
@@ -142,6 +142,14 @@ export async function getProviders() {
|
|||||||
return response.providers as any;
|
return response.providers as any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// todo: proxy providers health check
|
||||||
|
export async function getProviderHealthCheck(name: string) {
|
||||||
|
const instance = await getAxios();
|
||||||
|
return instance.get(
|
||||||
|
`/providers/proxies/${encodeURIComponent(name)}/healthcheck`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Close specific connection
|
// Close specific connection
|
||||||
export async function deleteConnection(id: string) {
|
export async function deleteConnection(id: string) {
|
||||||
const instance = await getAxios();
|
const instance = await getAxios();
|
||||||
|
|||||||
@@ -25,6 +25,14 @@ export async function viewProfile(index: string) {
|
|||||||
return invoke<void>("view_profile", { index });
|
return invoke<void>("view_profile", { index });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function readProfileFile(index: string) {
|
||||||
|
return invoke<string>("read_profile_file", { index });
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function saveProfileFile(index: string, fileData: string) {
|
||||||
|
return invoke<void>("save_profile_file", { index, fileData });
|
||||||
|
}
|
||||||
|
|
||||||
export async function importProfile(url: string) {
|
export async function importProfile(url: string) {
|
||||||
return invoke<void>("import_profile", {
|
return invoke<void>("import_profile", {
|
||||||
url,
|
url,
|
||||||
@@ -58,6 +66,10 @@ export async function changeProfileChain(chain?: string[]) {
|
|||||||
return invoke<void>("change_profile_chain", { chain });
|
return invoke<void>("change_profile_chain", { chain });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function changeProfileValid(valid?: string[]) {
|
||||||
|
return invoke<void>("change_profile_valid", { valid });
|
||||||
|
}
|
||||||
|
|
||||||
export async function getClashInfo() {
|
export async function getClashInfo() {
|
||||||
return invoke<CmdType.ClashInfo | null>("get_clash_info");
|
return invoke<CmdType.ClashInfo | null>("get_clash_info");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,48 +1,80 @@
|
|||||||
import { emit, listen } from "@tauri-apps/api/event";
|
import { emit, listen } from "@tauri-apps/api/event";
|
||||||
import { CmdType } from "./types";
|
import { CmdType } from "./types";
|
||||||
|
import ignoreCase from "../utils/ignore-case";
|
||||||
|
|
||||||
|
const DEFAULT_FIELDS = [
|
||||||
|
"rules",
|
||||||
|
"proxies",
|
||||||
|
"proxy-groups",
|
||||||
|
"proxy-providers",
|
||||||
|
"rule-providers",
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
const USE_FLAG_FIELDS = [
|
||||||
|
"tun",
|
||||||
|
"dns",
|
||||||
|
"hosts",
|
||||||
|
"script",
|
||||||
|
"profile",
|
||||||
|
"payload",
|
||||||
|
"interface-name",
|
||||||
|
"routing-mark",
|
||||||
|
] as const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* process the merge mode
|
* process the merge mode
|
||||||
*/
|
*/
|
||||||
function toMerge(
|
function toMerge(merge: CmdType.ProfileMerge, data: CmdType.ProfileData) {
|
||||||
merge: CmdType.ProfileMerge,
|
if (!merge) return { data, use: [] };
|
||||||
data: CmdType.ProfileData
|
|
||||||
): CmdType.ProfileData {
|
|
||||||
if (!merge) return data;
|
|
||||||
|
|
||||||
const newData = { ...data };
|
const {
|
||||||
|
use,
|
||||||
|
"prepend-rules": preRules,
|
||||||
|
"append-rules": postRules,
|
||||||
|
"prepend-proxies": preProxies,
|
||||||
|
"append-proxies": postProxies,
|
||||||
|
"prepend-proxy-groups": preProxyGroups,
|
||||||
|
"append-proxy-groups": postProxyGroups,
|
||||||
|
...mergeConfig
|
||||||
|
} = merge;
|
||||||
|
|
||||||
|
[...DEFAULT_FIELDS, ...USE_FLAG_FIELDS].forEach((key) => {
|
||||||
|
// the value should not be null
|
||||||
|
if (mergeConfig[key] != null) {
|
||||||
|
data[key] = mergeConfig[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// init
|
||||||
|
if (!data.rules) data.rules = [];
|
||||||
|
if (!data.proxies) data.proxies = [];
|
||||||
|
if (!data["proxy-groups"]) data["proxy-groups"] = [];
|
||||||
|
|
||||||
// rules
|
// rules
|
||||||
if (Array.isArray(merge["prepend-rules"])) {
|
if (Array.isArray(preRules)) {
|
||||||
if (!newData.rules) newData.rules = [];
|
data.rules.unshift(...preRules);
|
||||||
newData.rules.unshift(...merge["prepend-rules"]);
|
|
||||||
}
|
}
|
||||||
if (Array.isArray(merge["append-rules"])) {
|
if (Array.isArray(postRules)) {
|
||||||
if (!newData.rules) newData.rules = [];
|
data.rules.push(...postRules);
|
||||||
newData.rules.push(...merge["append-rules"]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// proxies
|
// proxies
|
||||||
if (Array.isArray(merge["prepend-proxies"])) {
|
if (Array.isArray(preProxies)) {
|
||||||
if (!newData.proxies) newData.proxies = [];
|
data.proxies.unshift(...preProxies);
|
||||||
newData.proxies.unshift(...merge["prepend-proxies"]);
|
|
||||||
}
|
}
|
||||||
if (Array.isArray(merge["append-proxies"])) {
|
if (Array.isArray(postProxies)) {
|
||||||
if (!newData.proxies) newData.proxies = [];
|
data.proxies.push(...postProxies);
|
||||||
newData.proxies.push(...merge["append-proxies"]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// proxy-groups
|
// proxy-groups
|
||||||
if (Array.isArray(merge["prepend-proxy-groups"])) {
|
if (Array.isArray(preProxyGroups)) {
|
||||||
if (!newData["proxy-groups"]) newData["proxy-groups"] = [];
|
data["proxy-groups"].unshift(...preProxyGroups);
|
||||||
newData["proxy-groups"].unshift(...merge["prepend-proxy-groups"]);
|
|
||||||
}
|
}
|
||||||
if (Array.isArray(merge["append-proxy-groups"])) {
|
if (Array.isArray(postProxyGroups)) {
|
||||||
if (!newData["proxy-groups"]) newData["proxy-groups"] = [];
|
data["proxy-groups"].push(...postProxyGroups);
|
||||||
newData["proxy-groups"].push(...merge["append-proxy-groups"]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return newData;
|
return { data, use: Array.isArray(use) ? use : [] };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -99,70 +131,76 @@ class Enhance {
|
|||||||
|
|
||||||
listen("script-handler", async (event) => {
|
listen("script-handler", async (event) => {
|
||||||
const payload = event.payload as CmdType.EnhancedPayload;
|
const payload = event.payload as CmdType.EnhancedPayload;
|
||||||
let pdata = payload.current || {};
|
|
||||||
|
|
||||||
let hasScript = false;
|
const result = await this.runner(payload).catch((err: any) => ({
|
||||||
|
data: null,
|
||||||
|
status: "error",
|
||||||
|
error: err.message,
|
||||||
|
}));
|
||||||
|
|
||||||
for (const each of payload.chain) {
|
|
||||||
const { uid, type = "" } = each.item;
|
|
||||||
|
|
||||||
try {
|
|
||||||
// process script
|
|
||||||
if (type === "script") {
|
|
||||||
// support async main function
|
|
||||||
pdata = await toScript(each.script!, { ...pdata });
|
|
||||||
hasScript = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// process merge
|
|
||||||
else if (type === "merge") {
|
|
||||||
pdata = toMerge(each.merge!, { ...pdata });
|
|
||||||
}
|
|
||||||
|
|
||||||
// invalid type
|
|
||||||
else {
|
|
||||||
throw new Error(`invalid enhanced profile type "${type}"`);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.exec(uid, { status: "ok" });
|
|
||||||
} catch (err: any) {
|
|
||||||
this.exec(uid, {
|
|
||||||
status: "error",
|
|
||||||
message: err.message || err.toString(),
|
|
||||||
});
|
|
||||||
|
|
||||||
console.error(err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// If script is never used
|
|
||||||
// filter other fields
|
|
||||||
if (!hasScript) {
|
|
||||||
const validKeys = [
|
|
||||||
"proxies",
|
|
||||||
"proxy-providers",
|
|
||||||
"proxy-groups",
|
|
||||||
"rule-providers",
|
|
||||||
"rules",
|
|
||||||
];
|
|
||||||
|
|
||||||
// to lowercase
|
|
||||||
const newData: any = {};
|
|
||||||
Object.keys(pdata).forEach((key) => {
|
|
||||||
const newKey = key.toLowerCase();
|
|
||||||
if (validKeys.includes(newKey)) {
|
|
||||||
newData[newKey] = (pdata as any)[key];
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
pdata = newData;
|
|
||||||
}
|
|
||||||
|
|
||||||
const result = { data: pdata, status: "ok" };
|
|
||||||
emit(payload.callback, JSON.stringify(result)).catch(console.error);
|
emit(payload.callback, JSON.stringify(result)).catch(console.error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// enhanced mode runner
|
||||||
|
private async runner(payload: CmdType.EnhancedPayload) {
|
||||||
|
const chain = payload.chain || [];
|
||||||
|
const valid = payload.valid || [];
|
||||||
|
|
||||||
|
if (!Array.isArray(chain)) throw new Error("unhandle error");
|
||||||
|
|
||||||
|
let pdata = payload.current || {};
|
||||||
|
let useList = valid;
|
||||||
|
|
||||||
|
for (const each of chain) {
|
||||||
|
const { uid, type = "" } = each.item;
|
||||||
|
|
||||||
|
try {
|
||||||
|
// process script
|
||||||
|
if (type === "script") {
|
||||||
|
// support async main function
|
||||||
|
pdata = await toScript(each.script!, ignoreCase(pdata));
|
||||||
|
}
|
||||||
|
|
||||||
|
// process merge
|
||||||
|
else if (type === "merge") {
|
||||||
|
const temp = toMerge(each.merge!, ignoreCase(pdata));
|
||||||
|
pdata = temp.data;
|
||||||
|
useList = useList.concat(temp.use || []);
|
||||||
|
}
|
||||||
|
|
||||||
|
// invalid type
|
||||||
|
else {
|
||||||
|
throw new Error(`invalid enhanced profile type "${type}"`);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.exec(uid, { status: "ok" });
|
||||||
|
} catch (err: any) {
|
||||||
|
console.error(err);
|
||||||
|
|
||||||
|
this.exec(uid, {
|
||||||
|
status: "error",
|
||||||
|
message: err.message || err.toString(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pdata = ignoreCase(pdata);
|
||||||
|
|
||||||
|
// filter the data
|
||||||
|
const filterData: typeof pdata = {};
|
||||||
|
Object.keys(pdata).forEach((key: any) => {
|
||||||
|
if (
|
||||||
|
DEFAULT_FIELDS.includes(key) ||
|
||||||
|
(USE_FLAG_FIELDS.includes(key) && useList.includes(key))
|
||||||
|
) {
|
||||||
|
filterData[key] = pdata[key];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return { data: filterData, status: "ok" };
|
||||||
|
}
|
||||||
|
|
||||||
// exec the listener
|
// exec the listener
|
||||||
private exec(uid: string, status: EStatus) {
|
private exec(uid: string, status: EStatus) {
|
||||||
this.resultMap.set(uid, status);
|
this.resultMap.set(uid, status);
|
||||||
|
|||||||
@@ -116,6 +116,7 @@ export namespace CmdType {
|
|||||||
export interface ProfilesConfig {
|
export interface ProfilesConfig {
|
||||||
current?: string;
|
current?: string;
|
||||||
chain?: string[];
|
chain?: string[];
|
||||||
|
valid?: string[];
|
||||||
items?: ProfileItem[];
|
items?: ProfileItem[];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -126,12 +127,51 @@ export namespace CmdType {
|
|||||||
traffic_graph?: boolean;
|
traffic_graph?: boolean;
|
||||||
enable_tun_mode?: boolean;
|
enable_tun_mode?: boolean;
|
||||||
enable_auto_launch?: boolean;
|
enable_auto_launch?: boolean;
|
||||||
|
enable_silent_start?: boolean;
|
||||||
enable_system_proxy?: boolean;
|
enable_system_proxy?: boolean;
|
||||||
enable_proxy_guard?: boolean;
|
enable_proxy_guard?: boolean;
|
||||||
system_proxy_bypass?: string;
|
system_proxy_bypass?: string;
|
||||||
|
theme_setting?: {
|
||||||
|
primary_color?: string;
|
||||||
|
secondary_color?: string;
|
||||||
|
primary_text?: string;
|
||||||
|
secondary_text?: string;
|
||||||
|
info_color?: string;
|
||||||
|
error_color?: string;
|
||||||
|
warning_color?: string;
|
||||||
|
success_color?: string;
|
||||||
|
font_family?: string;
|
||||||
|
css_injection?: string;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ProfileMerge = Record<string, any>;
|
type ClashConfigValue = any;
|
||||||
|
|
||||||
|
export interface ProfileMerge {
|
||||||
|
// clash config fields (default supports)
|
||||||
|
rules?: ClashConfigValue;
|
||||||
|
proxies?: ClashConfigValue;
|
||||||
|
"proxy-groups"?: ClashConfigValue;
|
||||||
|
"proxy-providers"?: ClashConfigValue;
|
||||||
|
"rule-providers"?: ClashConfigValue;
|
||||||
|
// clash config fields (use flag)
|
||||||
|
tun?: ClashConfigValue;
|
||||||
|
dns?: ClashConfigValue;
|
||||||
|
hosts?: ClashConfigValue;
|
||||||
|
script?: ClashConfigValue;
|
||||||
|
profile?: ClashConfigValue;
|
||||||
|
payload?: ClashConfigValue;
|
||||||
|
"interface-name"?: ClashConfigValue;
|
||||||
|
"routing-mark"?: ClashConfigValue;
|
||||||
|
// functional fields
|
||||||
|
use?: string[];
|
||||||
|
"prepend-rules"?: any[];
|
||||||
|
"append-rules"?: any[];
|
||||||
|
"prepend-proxies"?: any[];
|
||||||
|
"append-proxies"?: any[];
|
||||||
|
"prepend-proxy-groups"?: any[];
|
||||||
|
"append-proxy-groups"?: any[];
|
||||||
|
}
|
||||||
|
|
||||||
// partial of the clash config
|
// partial of the clash config
|
||||||
export type ProfileData = Partial<{
|
export type ProfileData = Partial<{
|
||||||
@@ -140,6 +180,8 @@ export namespace CmdType {
|
|||||||
"proxy-groups": any[];
|
"proxy-groups": any[];
|
||||||
"proxy-providers": any[];
|
"proxy-providers": any[];
|
||||||
"rule-providers": any[];
|
"rule-providers": any[];
|
||||||
|
|
||||||
|
[k: string]: any;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export interface ChainItem {
|
export interface ChainItem {
|
||||||
@@ -150,6 +192,7 @@ export namespace CmdType {
|
|||||||
|
|
||||||
export interface EnhancedPayload {
|
export interface EnhancedPayload {
|
||||||
chain: ChainItem[];
|
chain: ChainItem[];
|
||||||
|
valid: string[];
|
||||||
current: ProfileData;
|
current: ProfileData;
|
||||||
callback: string;
|
callback: string;
|
||||||
}
|
}
|
||||||
|
|||||||
14
src/utils/ignore-case.ts
Normal file
14
src/utils/ignore-case.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
// Deep copy and change all keys to lowercase
|
||||||
|
type TData = Record<string, any>;
|
||||||
|
|
||||||
|
export default function ignoreCase(data: TData): TData {
|
||||||
|
if (!data) return data;
|
||||||
|
|
||||||
|
const newData = {} as TData;
|
||||||
|
|
||||||
|
Object.entries(data).forEach(([key, value]) => {
|
||||||
|
newData[key.toLowerCase()] = JSON.parse(JSON.stringify(value));
|
||||||
|
});
|
||||||
|
|
||||||
|
return newData;
|
||||||
|
}
|
||||||
@@ -1,10 +1,12 @@
|
|||||||
import { defineConfig } from "vite";
|
import { defineConfig } from "vite";
|
||||||
|
import svgr from "vite-plugin-svgr";
|
||||||
import react from "@vitejs/plugin-react";
|
import react from "@vitejs/plugin-react";
|
||||||
|
import monaco from "vite-plugin-monaco-editor";
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
root: "src",
|
root: "src",
|
||||||
plugins: [react()],
|
plugins: [svgr(), react(), monaco()],
|
||||||
build: {
|
build: {
|
||||||
outDir: "../dist",
|
outDir: "../dist",
|
||||||
emptyOutDir: true,
|
emptyOutDir: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user