Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
74bbd3c3a2 | ||
|
|
2e82eaf59a | ||
|
|
7f1df1f1bd | ||
|
|
3c79238a44 | ||
|
|
0aa2565df3 | ||
|
|
22b11db16e | ||
|
|
d0e678b5e9 | ||
|
|
e7bba968b3 | ||
|
|
4934a24293 | ||
|
|
ccb68bcda9 | ||
|
|
66bf4ba3ad | ||
|
|
78a0cfd052 | ||
|
|
8548373742 | ||
|
|
2dfd725ee0 | ||
|
|
5b779b4f14 | ||
|
|
fc48aa7155 | ||
|
|
6193a842f4 | ||
|
|
eb86b471fe | ||
|
|
2b52584547 | ||
|
|
6e3cc57f48 | ||
|
|
f2c04621a5 | ||
|
|
3ed6938d4a | ||
|
|
99fec25ed5 | ||
|
|
73758ad1fd | ||
|
|
c53fe0ed1f | ||
|
|
6082c2bcac | ||
|
|
069abed784 | ||
|
|
7d8fa4d78a | ||
|
|
76081f8d89 | ||
|
|
5ef4285558 | ||
|
|
aa7df4282e | ||
|
|
0ef1d5d0de |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -58,6 +58,8 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
|
||||||
|
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
|
||||||
with:
|
with:
|
||||||
tagName: v__VERSION__
|
tagName: v__VERSION__
|
||||||
releaseName: "Clash Verge v__VERSION__"
|
releaseName: "Clash Verge v__VERSION__"
|
||||||
|
|||||||
36
package.json
36
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "clash-verge",
|
"name": "clash-verge",
|
||||||
"version": "0.0.13",
|
"version": "0.0.15",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "cargo tauri dev",
|
"dev": "cargo tauri dev",
|
||||||
@@ -17,35 +17,35 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emotion/react": "^11.7.0",
|
"@emotion/react": "^11.7.0",
|
||||||
"@emotion/styled": "^11.6.0",
|
"@emotion/styled": "^11.6.0",
|
||||||
"@mui/icons-material": "^5.2.1",
|
"@mui/icons-material": "^5.4.1",
|
||||||
"@mui/material": "^5.2.3",
|
"@mui/material": "^5.4.1",
|
||||||
"@tauri-apps/api": "^1.0.0-beta.8",
|
"@tauri-apps/api": "^1.0.0-rc.1",
|
||||||
"ahooks": "^3.1.7",
|
"ahooks": "^3.1.9",
|
||||||
"axios": "^0.24.0",
|
"axios": "^0.26.0",
|
||||||
"dayjs": "^1.10.7",
|
"dayjs": "^1.10.7",
|
||||||
"react": "^17.0.0",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.0",
|
"react-dom": "^17.0.2",
|
||||||
"react-router-dom": "^6.0.2",
|
"react-router-dom": "^6.2.1",
|
||||||
"react-virtuoso": "^2.3.1",
|
"react-virtuoso": "^2.7.0",
|
||||||
"recoil": "^0.5.2",
|
"recoil": "^0.6.1",
|
||||||
"swr": "^1.1.2-beta.0"
|
"swr": "^1.2.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@actions/github": "^5.0.0",
|
"@actions/github": "^5.0.0",
|
||||||
"@tauri-apps/cli": "^1.0.0-beta.10",
|
"@tauri-apps/cli": "^1.0.0-rc.4",
|
||||||
"@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/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.1.1",
|
"@vitejs/plugin-react": "^1.2.0",
|
||||||
"adm-zip": "^0.5.9",
|
"adm-zip": "^0.5.9",
|
||||||
"fs-extra": "^10.0.0",
|
"fs-extra": "^10.0.0",
|
||||||
"husky": "^7.0.0",
|
"husky": "^7.0.0",
|
||||||
"node-fetch": "^3.1.0",
|
"node-fetch": "^3.2.0",
|
||||||
"pretty-quick": "^3.1.3",
|
"pretty-quick": "^3.1.3",
|
||||||
"sass": "^1.44.0",
|
"sass": "^1.49.7",
|
||||||
"typescript": "^4.5.2",
|
"typescript": "^4.5.5",
|
||||||
"vite": "^2.7.1"
|
"vite": "^2.8.0"
|
||||||
},
|
},
|
||||||
"prettier": {
|
"prettier": {
|
||||||
"tabWidth": 2,
|
"tabWidth": 2,
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ const cwd = process.cwd();
|
|||||||
|
|
||||||
const CLASH_URL_PREFIX =
|
const CLASH_URL_PREFIX =
|
||||||
"https://github.com/Dreamacro/clash/releases/download/premium/";
|
"https://github.com/Dreamacro/clash/releases/download/premium/";
|
||||||
const CLASH_LATEST_DATE = "2022.01.03";
|
const CLASH_LATEST_DATE = "2022.01.27";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get the correct clash release infomation
|
* get the correct clash release infomation
|
||||||
|
|||||||
1390
src-tauri/Cargo.lock
generated
1390
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,16 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "clash-verge"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "clash verge"
|
description = "clash verge"
|
||||||
authors = ["zzzgydi"]
|
authors = ["zzzgydi"]
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
repository = "https://github.com/zzzgydi/clash-verge.git"
|
repository = "https://github.com/zzzgydi/clash-verge.git"
|
||||||
default-run = "app"
|
default-run = "clash-verge"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "1.0.0-beta.4" }
|
tauri-build = { version = "1.0.0-rc.1", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dirs = "4.0.0"
|
dirs = "4.0.0"
|
||||||
@@ -18,9 +18,7 @@ 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-beta.8", features = ["api-all", "system-tray"] }
|
tauri = { version = "1.0.0-rc.2", features = ["shell-all", "system-tray", "updater", "window-all"] }
|
||||||
# tauri = { git = "https://github.com/tauri-apps/tauri", rev = "5e0d59ec", features = ["api-all", "system-tray"] }
|
|
||||||
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "next", features = ["api-all", "system-tray", "updater"] }
|
|
||||||
tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
|
tauri-plugin-shadows = { git = "https://github.com/tauri-apps/tauri-plugin-shadows", features = ["tauri-impl"] }
|
||||||
tauri-plugin-vibrancy = { git = "https://github.com/tauri-apps/tauri-plugin-vibrancy", features = ["tauri-impl"] }
|
tauri-plugin-vibrancy = { git = "https://github.com/tauri-apps/tauri-plugin-vibrancy", features = ["tauri-impl"] }
|
||||||
|
|
||||||
|
|||||||
16
src-tauri/resources/item_tmp.yaml
Normal file
16
src-tauri/resources/item_tmp.yaml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# Profile Template for clash verge
|
||||||
|
|
||||||
|
# the profile's name
|
||||||
|
name: New Profile
|
||||||
|
|
||||||
|
# the description of this profile(optional)
|
||||||
|
description:
|
||||||
|
|
||||||
|
# proxies defination (optional, the same as clash)
|
||||||
|
proxies:
|
||||||
|
|
||||||
|
# proxy-groups (optional, the same as clash)
|
||||||
|
proxy-groups:
|
||||||
|
|
||||||
|
# rules (optional, the same as clash)
|
||||||
|
rules:
|
||||||
@@ -43,6 +43,20 @@ pub async fn import_profile(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// new a profile
|
||||||
|
/// append a temp profile item file to the `profiles` dir
|
||||||
|
/// view the temp profile file by using vscode or other editor
|
||||||
|
#[tauri::command]
|
||||||
|
pub async fn new_profile(
|
||||||
|
name: String,
|
||||||
|
desc: String,
|
||||||
|
profiles_state: State<'_, ProfilesState>,
|
||||||
|
) -> Result<(), String> {
|
||||||
|
let mut profiles = profiles_state.0.lock().unwrap();
|
||||||
|
profiles.append_item(name, desc)?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
/// Update the profile
|
/// Update the profile
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn update_profile(
|
pub async fn update_profile(
|
||||||
@@ -155,15 +169,20 @@ pub fn view_profile(index: usize, profiles_state: State<'_, ProfilesState>) -> R
|
|||||||
|
|
||||||
let path = app_home_dir().join("profiles").join(file);
|
let path = app_home_dir().join("profiles").join(file);
|
||||||
if !path.exists() {
|
if !path.exists() {
|
||||||
return Err("failed to open the file".into());
|
return Err("the file not found".into());
|
||||||
}
|
}
|
||||||
|
|
||||||
match which::which("code") {
|
// use vscode first
|
||||||
Ok(code) => match Command::new(code).arg(path).status() {
|
if let Ok(code) = which::which("code") {
|
||||||
|
return match Command::new(code).arg(path).spawn() {
|
||||||
Ok(_) => Ok(()),
|
Ok(_) => Ok(()),
|
||||||
Err(_) => Err("failed to open file by VScode".into()),
|
Err(_) => Err("failed to open file by VScode".into()),
|
||||||
},
|
};
|
||||||
Err(_) => Err("please install VScode for edit".into()),
|
}
|
||||||
|
|
||||||
|
match open_command().arg(path).spawn() {
|
||||||
|
Ok(_) => Ok(()),
|
||||||
|
Err(_) => Err("failed to open file by `open`".into()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,10 +252,14 @@ pub fn get_cur_proxy(verge_state: State<'_, VergeState>) -> Result<Option<SysPro
|
|||||||
/// get the verge config
|
/// get the verge config
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn get_verge_config(verge_state: State<'_, VergeState>) -> Result<VergeConfig, String> {
|
pub fn get_verge_config(verge_state: State<'_, VergeState>) -> Result<VergeConfig, String> {
|
||||||
match verge_state.0.lock() {
|
let verge = verge_state.0.lock().unwrap();
|
||||||
Ok(arc) => Ok(arc.config.clone()),
|
let mut config = verge.config.clone();
|
||||||
Err(_) => Err("failed to get verge lock".into()),
|
|
||||||
|
if config.system_proxy_bypass.is_none() && verge.cur_sysproxy.is_some() {
|
||||||
|
config.system_proxy_bypass = Some(verge.cur_sysproxy.clone().unwrap().bypass)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Ok(config)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// patch the verge config
|
/// patch the verge config
|
||||||
@@ -249,3 +272,35 @@ pub async fn patch_verge_config(
|
|||||||
let mut verge = verge_state.0.lock().unwrap();
|
let mut verge = verge_state.0.lock().unwrap();
|
||||||
verge.patch_config(payload)
|
verge.patch_config(payload)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// open app config dir
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn open_app_dir() -> Result<(), String> {
|
||||||
|
let app_dir = app_home_dir();
|
||||||
|
|
||||||
|
match open_command().arg(app_dir).spawn() {
|
||||||
|
Ok(_) => Ok(()),
|
||||||
|
Err(_) => Err("failed to open logs dir".into()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// open logs dir
|
||||||
|
#[tauri::command]
|
||||||
|
pub fn open_logs_dir() -> Result<(), String> {
|
||||||
|
let log_dir = app_home_dir().join("logs");
|
||||||
|
|
||||||
|
match open_command().arg(log_dir).spawn() {
|
||||||
|
Ok(_) => Ok(()),
|
||||||
|
Err(_) => Err("failed to open logs dir".into()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// get open/explorer command
|
||||||
|
fn open_command() -> Command {
|
||||||
|
let open = if cfg!(target_os = "windows") {
|
||||||
|
"explorer"
|
||||||
|
} else {
|
||||||
|
"open"
|
||||||
|
};
|
||||||
|
Command::new(open)
|
||||||
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ use std::collections::HashMap;
|
|||||||
use std::env::temp_dir;
|
use std::env::temp_dir;
|
||||||
use std::fs::File;
|
use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
use std::path::PathBuf;
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
/// Define the `profiles.yaml` schema
|
/// Define the `profiles.yaml` schema
|
||||||
@@ -23,6 +24,8 @@ pub struct Profiles {
|
|||||||
pub struct ProfileItem {
|
pub struct ProfileItem {
|
||||||
/// profile name
|
/// profile name
|
||||||
pub name: Option<String>,
|
pub name: Option<String>,
|
||||||
|
/// profile description
|
||||||
|
pub desc: Option<String>,
|
||||||
/// profile file
|
/// profile file
|
||||||
pub file: Option<String>,
|
pub file: Option<String>,
|
||||||
/// current mode
|
/// current mode
|
||||||
@@ -109,6 +112,7 @@ impl Profiles {
|
|||||||
|
|
||||||
items.push(ProfileItem {
|
items.push(ProfileItem {
|
||||||
name: Some(result.name),
|
name: Some(result.name),
|
||||||
|
desc: Some("imported url".into()),
|
||||||
file: Some(result.file),
|
file: Some(result.file),
|
||||||
mode: Some(format!("rule")),
|
mode: Some(format!("rule")),
|
||||||
url: Some(url),
|
url: Some(url),
|
||||||
@@ -138,6 +142,49 @@ impl Profiles {
|
|||||||
self.save_file()
|
self.save_file()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// append new item
|
||||||
|
/// return the new item's index
|
||||||
|
pub fn append_item(&mut self, name: String, desc: String) -> Result<(usize, PathBuf), String> {
|
||||||
|
let mut items = self.items.take().unwrap_or(vec![]);
|
||||||
|
|
||||||
|
// create a new profile file
|
||||||
|
let now = SystemTime::now()
|
||||||
|
.duration_since(UNIX_EPOCH)
|
||||||
|
.unwrap()
|
||||||
|
.as_secs();
|
||||||
|
let file = format!("{}.yaml", now);
|
||||||
|
let path = dirs::app_home_dir().join("profiles").join(&file);
|
||||||
|
|
||||||
|
let file_data = b"# Profile Template for clash verge\n
|
||||||
|
# proxies defination (optional, the same as clash)
|
||||||
|
proxies:\n
|
||||||
|
# proxy-groups (optional, the same as clash)
|
||||||
|
proxy-groups:\n
|
||||||
|
# rules (optional, the same as clash)
|
||||||
|
rules:\n\n
|
||||||
|
";
|
||||||
|
|
||||||
|
match File::create(&path).unwrap().write(file_data) {
|
||||||
|
Ok(_) => {
|
||||||
|
items.push(ProfileItem {
|
||||||
|
name: Some(name),
|
||||||
|
desc: Some(desc),
|
||||||
|
file: Some(file),
|
||||||
|
mode: None,
|
||||||
|
url: None,
|
||||||
|
selected: Some(vec![]),
|
||||||
|
extra: None,
|
||||||
|
updated: Some(now as usize),
|
||||||
|
});
|
||||||
|
|
||||||
|
let index = items.len();
|
||||||
|
self.items = Some(items);
|
||||||
|
Ok((index, path))
|
||||||
|
}
|
||||||
|
Err(_) => Err("failed to create file".into()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// update the target profile
|
/// update the target profile
|
||||||
/// and save to config file
|
/// and save to config file
|
||||||
/// only support the url item
|
/// only support the url item
|
||||||
|
|||||||
@@ -105,7 +105,9 @@ impl Verge {
|
|||||||
pub fn init_launch(&mut self, package_info: &tauri::PackageInfo) {
|
pub fn init_launch(&mut self, package_info: &tauri::PackageInfo) {
|
||||||
let app_name = "clash-verge";
|
let app_name = "clash-verge";
|
||||||
let app_path = get_app_path(app_name);
|
let app_path = get_app_path(app_name);
|
||||||
let app_path = resource_dir(package_info).unwrap().join(app_path);
|
let app_path = resource_dir(package_info, &tauri::Env::default())
|
||||||
|
.unwrap()
|
||||||
|
.join(app_path);
|
||||||
let app_path = app_path.as_os_str().to_str().unwrap();
|
let app_path = app_path.as_os_str().to_str().unwrap();
|
||||||
|
|
||||||
let auto = AutoLaunchBuilder::new()
|
let auto = AutoLaunchBuilder::new()
|
||||||
@@ -157,7 +159,10 @@ impl Verge {
|
|||||||
|
|
||||||
match result {
|
match result {
|
||||||
Ok(_) => Ok(()),
|
Ok(_) => Ok(()),
|
||||||
Err(_) => Err("failed to set system startup info".into()),
|
Err(err) => {
|
||||||
|
log::error!("{err}");
|
||||||
|
Err("failed to set system startup info".into())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -227,7 +232,7 @@ fn get_app_path(app_name: &str) -> String {
|
|||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
let ext = "";
|
let ext = "";
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
let ext = ".app";
|
let ext = "";
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
let ext = ".exe";
|
let ext = ".exe";
|
||||||
String::from(app_name) + ext
|
String::from(app_name) + ext
|
||||||
|
|||||||
@@ -53,17 +53,19 @@ fn main() -> std::io::Result<()> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
"quit" => {
|
"quit" => {
|
||||||
api::process::kill_children();
|
|
||||||
resolve::resolve_reset(app_handle);
|
resolve::resolve_reset(app_handle);
|
||||||
app_handle.exit(0);
|
api::process::kill_children();
|
||||||
|
std::process::exit(0);
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
},
|
},
|
||||||
SystemTrayEvent::LeftClick { .. } => {
|
SystemTrayEvent::LeftClick { .. } => {
|
||||||
let window = app_handle.get_window("main").unwrap();
|
if cfg![target_os = "windows"] {
|
||||||
window.unminimize().unwrap();
|
let window = app_handle.get_window("main").unwrap();
|
||||||
window.show().unwrap();
|
window.unminimize().unwrap();
|
||||||
window.set_focus().unwrap();
|
window.show().unwrap();
|
||||||
|
window.set_focus().unwrap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
})
|
})
|
||||||
@@ -72,6 +74,8 @@ fn main() -> std::io::Result<()> {
|
|||||||
cmds::restart_sidecar,
|
cmds::restart_sidecar,
|
||||||
cmds::get_sys_proxy,
|
cmds::get_sys_proxy,
|
||||||
cmds::get_cur_proxy,
|
cmds::get_cur_proxy,
|
||||||
|
cmds::open_app_dir,
|
||||||
|
cmds::open_logs_dir,
|
||||||
// clash
|
// clash
|
||||||
cmds::get_clash_info,
|
cmds::get_clash_info,
|
||||||
cmds::patch_clash_config,
|
cmds::patch_clash_config,
|
||||||
@@ -79,6 +83,7 @@ fn main() -> std::io::Result<()> {
|
|||||||
cmds::get_verge_config,
|
cmds::get_verge_config,
|
||||||
cmds::patch_verge_config,
|
cmds::patch_verge_config,
|
||||||
// profile
|
// profile
|
||||||
|
cmds::new_profile,
|
||||||
cmds::view_profile,
|
cmds::view_profile,
|
||||||
cmds::patch_profile,
|
cmds::patch_profile,
|
||||||
cmds::import_profile,
|
cmds::import_profile,
|
||||||
@@ -91,12 +96,12 @@ 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::Event::CloseRequested { label, api, .. } => {
|
tauri::RunEvent::CloseRequested { label, api, .. } => {
|
||||||
let app_handle = app_handle.clone();
|
let app_handle = app_handle.clone();
|
||||||
api.prevent_close();
|
api.prevent_close();
|
||||||
app_handle.get_window(&label).unwrap().hide().unwrap();
|
app_handle.get_window(&label).unwrap().hide().unwrap();
|
||||||
}
|
}
|
||||||
tauri::Event::ExitRequested { .. } => {
|
tauri::RunEvent::ExitRequested { .. } => {
|
||||||
resolve::resolve_reset(app_handle);
|
resolve::resolve_reset(app_handle);
|
||||||
api::process::kill_children();
|
api::process::kill_children();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
use std::path::{Path, PathBuf};
|
use std::path::{Path, PathBuf};
|
||||||
use tauri::{
|
use tauri::{
|
||||||
api::path::{home_dir, resource_dir},
|
api::path::{home_dir, resource_dir},
|
||||||
PackageInfo,
|
Env, PackageInfo,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// get the verge app home dir
|
/// get the verge app home dir
|
||||||
@@ -14,5 +14,7 @@ pub fn app_home_dir() -> PathBuf {
|
|||||||
|
|
||||||
/// get the resources dir
|
/// get the resources dir
|
||||||
pub fn app_resources_dir(package_info: &PackageInfo) -> PathBuf {
|
pub fn app_resources_dir(package_info: &PackageInfo) -> PathBuf {
|
||||||
resource_dir(package_info).unwrap().join("resources")
|
resource_dir(package_info, &Env::default())
|
||||||
|
.unwrap()
|
||||||
|
.join("resources")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ pub fn resolve_setup(app: &App) {
|
|||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
{
|
{
|
||||||
use tauri_plugin_vibrancy::MacOSVibrancy;
|
use tauri_plugin_vibrancy::MacOSVibrancy;
|
||||||
|
#[allow(deprecated)]
|
||||||
window.apply_vibrancy(MacOSVibrancy::AppearanceBased);
|
window.apply_vibrancy(MacOSVibrancy::AppearanceBased);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "clash-verge",
|
"productName": "clash-verge",
|
||||||
"version": "0.0.13"
|
"version": "0.0.15"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"distDir": "../dist",
|
"distDir": "../dist",
|
||||||
@@ -54,10 +54,16 @@
|
|||||||
"endpoints": [
|
"endpoints": [
|
||||||
"https://github.com/zzzgydi/clash-verge/releases/download/updater/update.json"
|
"https://github.com/zzzgydi/clash-verge/releases/download/updater/update.json"
|
||||||
],
|
],
|
||||||
"dialog": false
|
"dialog": false,
|
||||||
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDExNUFBNTBBN0FDNEFBRTUKUldUbHFzUjZDcVZhRVRJM25NS3NkSFlFVElxUkNZMzZ6bHUwRVJjb2F3alJXVzRaeDdSaTA2YWYK"
|
||||||
},
|
},
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
"all": true
|
"shell": {
|
||||||
|
"all": true
|
||||||
|
},
|
||||||
|
"window": {
|
||||||
|
"all": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ const BasePage: React.FC<Props> = (props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="base-page" data-windrag>
|
<div className="base-page" data-windrag>
|
||||||
<header data-windrag>
|
<header data-windrag style={{ userSelect: "none" }}>
|
||||||
<Typography variant="h4" component="h1">
|
<Typography variant="h4" component="h1" data-windrag>
|
||||||
{title}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { ApiType } from "../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
value: ApiType.ConnectionsItem;
|
value: ApiType.ConnectionsItem;
|
||||||
@@ -2,12 +2,12 @@ import { useEffect, useState } from "react";
|
|||||||
import { useRecoilValue } from "recoil";
|
import { useRecoilValue } from "recoil";
|
||||||
import { Box, Typography } from "@mui/material";
|
import { Box, Typography } from "@mui/material";
|
||||||
import { ArrowDownward, ArrowUpward } from "@mui/icons-material";
|
import { ArrowDownward, ArrowUpward } from "@mui/icons-material";
|
||||||
import { getInfomation } from "../services/api";
|
import { getInfomation } from "../../services/api";
|
||||||
import { ApiType } from "../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
import { atomClashPort } from "../states/setting";
|
import { atomClashPort } from "../../states/setting";
|
||||||
import parseTraffic from "../utils/parse-traffic";
|
import parseTraffic from "../../utils/parse-traffic";
|
||||||
|
|
||||||
const Traffic = () => {
|
const LayoutTraffic = () => {
|
||||||
const portValue = useRecoilValue(atomClashPort);
|
const portValue = useRecoilValue(atomClashPort);
|
||||||
const [traffic, setTraffic] = useState({ up: 0, down: 0 });
|
const [traffic, setTraffic] = useState({ up: 0, down: 0 });
|
||||||
|
|
||||||
@@ -66,4 +66,4 @@ const Traffic = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Traffic;
|
export default LayoutTraffic;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { styled, Box } from "@mui/material";
|
import { styled, Box } from "@mui/material";
|
||||||
import { ApiType } from "../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
|
|
||||||
const Item = styled(Box)(({ theme }) => ({
|
const Item = styled(Box)(({ theme }) => ({
|
||||||
padding: "8px 0",
|
padding: "8px 0",
|
||||||
@@ -13,10 +13,10 @@ import {
|
|||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { useSWRConfig } from "swr";
|
import { useSWRConfig } from "swr";
|
||||||
import { RefreshRounded } from "@mui/icons-material";
|
import { RefreshRounded } from "@mui/icons-material";
|
||||||
import { CmdType } from "../services/types";
|
import { CmdType } from "../../services/types";
|
||||||
import { updateProfile, deleteProfile, viewProfile } from "../services/cmds";
|
import { updateProfile, deleteProfile, viewProfile } from "../../services/cmds";
|
||||||
import Notice from "./notice";
|
import Notice from "../base/base-notice";
|
||||||
import parseTraffic from "../utils/parse-traffic";
|
import parseTraffic from "../../utils/parse-traffic";
|
||||||
import relativeTime from "dayjs/plugin/relativeTime";
|
import relativeTime from "dayjs/plugin/relativeTime";
|
||||||
|
|
||||||
dayjs.extend(relativeTime);
|
dayjs.extend(relativeTime);
|
||||||
@@ -59,6 +59,9 @@ const ProfileItem: React.FC<Props> = (props) => {
|
|||||||
const progress = Math.round(((download + upload) * 100) / (total + 0.1));
|
const progress = Math.round(((download + upload) * 100) / (total + 0.1));
|
||||||
const fromnow = updated > 0 ? dayjs(updated * 1000).fromNow() : "";
|
const fromnow = updated > 0 ? dayjs(updated * 1000).fromNow() : "";
|
||||||
|
|
||||||
|
// url or file mode
|
||||||
|
const isUrlMode = itemData.url && extra;
|
||||||
|
|
||||||
const onView = async () => {
|
const onView = async () => {
|
||||||
setAnchorEl(null);
|
setAnchorEl(null);
|
||||||
try {
|
try {
|
||||||
@@ -111,6 +114,26 @@ const ProfileItem: React.FC<Props> = (props) => {
|
|||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const boxStyle = {
|
||||||
|
height: 26,
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
};
|
||||||
|
|
||||||
|
const urlModeMenu = [
|
||||||
|
{ label: "Select", handler: onForceSelect },
|
||||||
|
{ label: "View", handler: onView },
|
||||||
|
{ label: "Update", handler: onUpdateWrapper(false) },
|
||||||
|
{ label: "Update(Proxy)", handler: onUpdateWrapper(true) },
|
||||||
|
{ label: "Delete", handler: onDelete },
|
||||||
|
];
|
||||||
|
const fileModeMenu = [
|
||||||
|
{ label: "Select", handler: onForceSelect },
|
||||||
|
{ label: "Edit", handler: onView },
|
||||||
|
{ label: "Delete", handler: onDelete },
|
||||||
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Wrapper
|
<Wrapper
|
||||||
@@ -155,52 +178,63 @@ const ProfileItem: React.FC<Props> = (props) => {
|
|||||||
{name}
|
{name}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<IconButton
|
{isUrlMode && (
|
||||||
sx={{
|
<IconButton
|
||||||
width: 30,
|
sx={{
|
||||||
height: 30,
|
width: 26,
|
||||||
animation: loading ? `1s linear infinite ${round}` : "none",
|
height: 26,
|
||||||
}}
|
animation: loading ? `1s linear infinite ${round}` : "none",
|
||||||
color="inherit"
|
}}
|
||||||
disabled={loading}
|
color="inherit"
|
||||||
onClick={(e) => {
|
disabled={loading}
|
||||||
e.stopPropagation();
|
onClick={(e) => {
|
||||||
onUpdateWrapper(false)();
|
e.stopPropagation();
|
||||||
}}
|
onUpdateWrapper(false)();
|
||||||
>
|
}}
|
||||||
<RefreshRounded />
|
>
|
||||||
</IconButton>
|
<RefreshRounded />
|
||||||
|
</IconButton>
|
||||||
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Box display="flex" justifyContent="space-between" alignItems="center">
|
{isUrlMode ? (
|
||||||
<Typography noWrap title={`From: ${from}`}>
|
<>
|
||||||
{from}
|
<Box sx={boxStyle}>
|
||||||
</Typography>
|
<Typography noWrap title={`From: ${from}`}>
|
||||||
|
{from}
|
||||||
|
</Typography>
|
||||||
|
|
||||||
<Typography
|
<Typography
|
||||||
noWrap
|
noWrap
|
||||||
flex="1 0 auto"
|
flex="1 0 auto"
|
||||||
fontSize={14}
|
fontSize={14}
|
||||||
textAlign="right"
|
textAlign="right"
|
||||||
title="updated time"
|
title="updated time"
|
||||||
>
|
>
|
||||||
{fromnow}
|
{fromnow}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Box
|
<Box sx={{ ...boxStyle, fontSize: 14 }}>
|
||||||
sx={{
|
<span title="used / total">
|
||||||
my: 0.5,
|
{parseTraffic(upload + download)} / {parseTraffic(total)}
|
||||||
fontSize: 14,
|
</span>
|
||||||
display: "flex",
|
<span title="expire time">{expire}</span>
|
||||||
justifyContent: "space-between",
|
</Box>
|
||||||
}}
|
</>
|
||||||
>
|
) : (
|
||||||
<span title="used / total">
|
<>
|
||||||
{parseTraffic(upload + download)} / {parseTraffic(total)}
|
<Box sx={boxStyle}>
|
||||||
</span>
|
<Typography noWrap title={itemData.desc}>
|
||||||
<span title="expire time">{expire}</span>
|
{itemData.desc}
|
||||||
</Box>
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
<Box sx={{ ...boxStyle, fontSize: 14, justifyContent: "flex-end" }}>
|
||||||
|
<span title="updated time">{parseExpire(updated)}</span>
|
||||||
|
</Box>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
<LinearProgress
|
<LinearProgress
|
||||||
variant="determinate"
|
variant="determinate"
|
||||||
@@ -216,11 +250,11 @@ const ProfileItem: React.FC<Props> = (props) => {
|
|||||||
anchorPosition={position}
|
anchorPosition={position}
|
||||||
anchorReference="anchorPosition"
|
anchorReference="anchorPosition"
|
||||||
>
|
>
|
||||||
<MenuItem onClick={onForceSelect}>Select</MenuItem>
|
{(isUrlMode ? urlModeMenu : fileModeMenu).map((item) => (
|
||||||
<MenuItem onClick={onView}>View</MenuItem>
|
<MenuItem key={item.label} onClick={item.handler}>
|
||||||
<MenuItem onClick={onUpdateWrapper(false)}>Update</MenuItem>
|
{item.label}
|
||||||
<MenuItem onClick={onUpdateWrapper(true)}>Update(Proxy)</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem onClick={onDelete}>Delete</MenuItem>
|
))}
|
||||||
</Menu>
|
</Menu>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
71
src/components/profile/profile-new.tsx
Normal file
71
src/components/profile/profile-new.tsx
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import {
|
||||||
|
Button,
|
||||||
|
Dialog,
|
||||||
|
DialogActions,
|
||||||
|
DialogContent,
|
||||||
|
DialogTitle,
|
||||||
|
TextField,
|
||||||
|
} from "@mui/material";
|
||||||
|
import Notice from "../base/base-notice";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
open: boolean;
|
||||||
|
onClose: () => void;
|
||||||
|
onSubmit: (name: string, desc: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ProfileNew = (props: Props) => {
|
||||||
|
const { open, onClose, onSubmit } = props;
|
||||||
|
const [name, setName] = useState("");
|
||||||
|
const [desc, setDesc] = useState("");
|
||||||
|
|
||||||
|
const onCreate = () => {
|
||||||
|
if (!name.trim()) {
|
||||||
|
Notice.error("`Name` should not be null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
onSubmit(name, desc);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!open) {
|
||||||
|
setName("");
|
||||||
|
setDesc("");
|
||||||
|
}
|
||||||
|
}, [open]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onClose={onClose}>
|
||||||
|
<DialogTitle>Create Profile</DialogTitle>
|
||||||
|
<DialogContent sx={{ width: 320, pb: 0.5 }}>
|
||||||
|
<TextField
|
||||||
|
autoFocus
|
||||||
|
fullWidth
|
||||||
|
label="Name"
|
||||||
|
margin="dense"
|
||||||
|
variant="outlined"
|
||||||
|
value={name}
|
||||||
|
onChange={(e) => setName(e.target.value)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<TextField
|
||||||
|
fullWidth
|
||||||
|
label="Descriptions"
|
||||||
|
margin="normal"
|
||||||
|
variant="outlined"
|
||||||
|
value={desc}
|
||||||
|
onChange={(e) => setDesc(e.target.value)}
|
||||||
|
/>
|
||||||
|
</DialogContent>
|
||||||
|
<DialogActions sx={{ px: 2, pb: 2 }}>
|
||||||
|
<Button onClick={onClose}>Cancel</Button>
|
||||||
|
<Button onClick={onCreate} variant="contained">
|
||||||
|
Create
|
||||||
|
</Button>
|
||||||
|
</DialogActions>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProfileNew;
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
import { CheckCircleOutlineRounded } from "@mui/icons-material";
|
|
||||||
import {
|
|
||||||
alpha,
|
|
||||||
ListItem,
|
|
||||||
ListItemButton,
|
|
||||||
ListItemIcon,
|
|
||||||
ListItemText,
|
|
||||||
SxProps,
|
|
||||||
Theme,
|
|
||||||
} from "@mui/material";
|
|
||||||
import { ApiType } from "../services/types";
|
|
||||||
|
|
||||||
interface Props {
|
|
||||||
proxy: ApiType.ProxyItem;
|
|
||||||
selected: boolean;
|
|
||||||
sx?: SxProps<Theme>;
|
|
||||||
onClick?: (name: string) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ProxyItem = (props: Props) => {
|
|
||||||
const { proxy, selected, sx, onClick } = props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<ListItem sx={sx}>
|
|
||||||
<ListItemButton
|
|
||||||
dense
|
|
||||||
selected={selected}
|
|
||||||
onClick={() => onClick?.(proxy.name)}
|
|
||||||
sx={[
|
|
||||||
{
|
|
||||||
borderRadius: 1,
|
|
||||||
},
|
|
||||||
({ palette: { mode, primary } }) => {
|
|
||||||
const bgcolor =
|
|
||||||
mode === "light"
|
|
||||||
? alpha(primary.main, 0.15)
|
|
||||||
: alpha(primary.main, 0.35);
|
|
||||||
const color = mode === "light" ? primary.main : primary.light;
|
|
||||||
|
|
||||||
return {
|
|
||||||
"&.Mui-selected": { bgcolor },
|
|
||||||
"&.Mui-selected .MuiListItemText-secondary": { color },
|
|
||||||
};
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
>
|
|
||||||
<ListItemText title={proxy.name} secondary={proxy.name} />
|
|
||||||
<ListItemIcon
|
|
||||||
sx={{ justifyContent: "flex-end", color: "primary.main" }}
|
|
||||||
>
|
|
||||||
{selected && <CheckCircleOutlineRounded sx={{ fontSize: 16 }} />}
|
|
||||||
</ListItemIcon>
|
|
||||||
</ListItemButton>
|
|
||||||
</ListItem>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default ProxyItem;
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
import { useState } from "react";
|
import { useRef, useState } from "react";
|
||||||
|
import { useSWRConfig } from "swr";
|
||||||
import { Virtuoso } from "react-virtuoso";
|
import { Virtuoso } from "react-virtuoso";
|
||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
@@ -16,9 +17,10 @@ import {
|
|||||||
MyLocationRounded,
|
MyLocationRounded,
|
||||||
NetworkCheckRounded,
|
NetworkCheckRounded,
|
||||||
} from "@mui/icons-material";
|
} from "@mui/icons-material";
|
||||||
import { updateProxy } from "../services/api";
|
import { ApiType } from "../../services/types";
|
||||||
import { ApiType } from "../services/types";
|
import { updateProxy } from "../../services/api";
|
||||||
import { getProfiles, patchProfile } from "../services/cmds";
|
import { getProfiles, patchProfile } from "../../services/cmds";
|
||||||
|
import delayManager from "../../services/delay";
|
||||||
import ProxyItem from "./proxy-item";
|
import ProxyItem from "./proxy-item";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@@ -26,12 +28,15 @@ interface Props {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const ProxyGroup = ({ group }: Props) => {
|
const ProxyGroup = ({ group }: Props) => {
|
||||||
|
const { mutate } = useSWRConfig();
|
||||||
|
|
||||||
|
const listRef = useRef<any>();
|
||||||
const [open, setOpen] = useState(false);
|
const [open, setOpen] = useState(false);
|
||||||
const [now, setNow] = useState(group.now);
|
const [now, setNow] = useState(group.now);
|
||||||
|
|
||||||
const proxies = group.all ?? [];
|
const proxies = group.all ?? [];
|
||||||
|
|
||||||
const onUpdate = async (name: string) => {
|
const onSelect = async (name: string) => {
|
||||||
// can not call update
|
// can not call update
|
||||||
if (group.type !== "Selector") {
|
if (group.type !== "Selector") {
|
||||||
// Todo
|
// Todo
|
||||||
@@ -67,6 +72,33 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onLocation = () => {
|
||||||
|
const index = proxies.findIndex((p) => p.name === now);
|
||||||
|
|
||||||
|
if (index >= 0) {
|
||||||
|
listRef.current?.scrollToIndex?.({
|
||||||
|
index,
|
||||||
|
align: "center",
|
||||||
|
behavior: "smooth",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onCheckAll = async () => {
|
||||||
|
let names = proxies.map((p) => p.name);
|
||||||
|
|
||||||
|
while (names.length) {
|
||||||
|
const list = names.slice(0, 10);
|
||||||
|
names = names.slice(10);
|
||||||
|
|
||||||
|
await Promise.all(
|
||||||
|
list.map((n) => delayManager.checkDelay(n, group.name))
|
||||||
|
);
|
||||||
|
|
||||||
|
mutate("getProxies");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ListItem button onClick={() => setOpen(!open)} dense>
|
<ListItem button onClick={() => setOpen(!open)} dense>
|
||||||
@@ -88,24 +120,26 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
|
|
||||||
<Collapse in={open} timeout="auto" unmountOnExit>
|
<Collapse in={open} timeout="auto" unmountOnExit>
|
||||||
<Box sx={{ pl: 4, pr: 3, my: 0.5 }}>
|
<Box sx={{ pl: 4, pr: 3, my: 0.5 }}>
|
||||||
<IconButton size="small" title="location">
|
<IconButton size="small" title="location" onClick={onLocation}>
|
||||||
<MyLocationRounded />
|
<MyLocationRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<IconButton size="small" title="check">
|
<IconButton size="small" title="check" onClick={onCheckAll}>
|
||||||
<NetworkCheckRounded />
|
<NetworkCheckRounded />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
{proxies.length >= 10 ? (
|
{proxies.length >= 10 ? (
|
||||||
<Virtuoso
|
<Virtuoso
|
||||||
|
ref={listRef}
|
||||||
style={{ height: "320px", marginBottom: "4px" }}
|
style={{ height: "320px", marginBottom: "4px" }}
|
||||||
totalCount={proxies.length}
|
totalCount={proxies.length}
|
||||||
itemContent={(index) => (
|
itemContent={(index) => (
|
||||||
<ProxyItem
|
<ProxyItem
|
||||||
|
groupName={group.name}
|
||||||
proxy={proxies[index]}
|
proxy={proxies[index]}
|
||||||
selected={proxies[index].name === now}
|
selected={proxies[index].name === now}
|
||||||
sx={{ py: 0, pl: 4 }}
|
sx={{ py: 0, pl: 4 }}
|
||||||
onClick={onUpdate}
|
onClick={onSelect}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
@@ -118,10 +152,11 @@ const ProxyGroup = ({ group }: Props) => {
|
|||||||
{proxies.map((proxy) => (
|
{proxies.map((proxy) => (
|
||||||
<ProxyItem
|
<ProxyItem
|
||||||
key={proxy.name}
|
key={proxy.name}
|
||||||
|
groupName={group.name}
|
||||||
proxy={proxy}
|
proxy={proxy}
|
||||||
selected={proxy.name === now}
|
selected={proxy.name === now}
|
||||||
sx={{ py: 0, pl: 4 }}
|
sx={{ py: 0, pl: 4 }}
|
||||||
onClick={onUpdate}
|
onClick={onSelect}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</List>
|
</List>
|
||||||
114
src/components/proxy/proxy-item.tsx
Normal file
114
src/components/proxy/proxy-item.tsx
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { CheckCircleOutlineRounded } from "@mui/icons-material";
|
||||||
|
import {
|
||||||
|
alpha,
|
||||||
|
Box,
|
||||||
|
ListItem,
|
||||||
|
ListItemButton,
|
||||||
|
ListItemIcon,
|
||||||
|
ListItemText,
|
||||||
|
styled,
|
||||||
|
SxProps,
|
||||||
|
Theme,
|
||||||
|
} from "@mui/material";
|
||||||
|
import { ApiType } from "../../services/types";
|
||||||
|
import delayManager from "../../services/delay";
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
groupName: string;
|
||||||
|
proxy: ApiType.ProxyItem;
|
||||||
|
selected: boolean;
|
||||||
|
sx?: SxProps<Theme>;
|
||||||
|
onClick?: (name: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Widget = styled(Box)(() => ({
|
||||||
|
padding: "4px 6px",
|
||||||
|
fontSize: 14,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const ProxyItem = (props: Props) => {
|
||||||
|
const { groupName, proxy, selected, sx, onClick } = props;
|
||||||
|
const [delay, setDelay] = useState(-1);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (proxy) {
|
||||||
|
setDelay(delayManager.getDelay(proxy.name, groupName));
|
||||||
|
}
|
||||||
|
}, [proxy]);
|
||||||
|
|
||||||
|
const onDelay = (e: any) => {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
|
||||||
|
delayManager
|
||||||
|
.checkDelay(proxy.name, groupName)
|
||||||
|
.then((result) => setDelay(result))
|
||||||
|
.catch(() => setDelay(1e6));
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ListItem sx={sx}>
|
||||||
|
<ListItemButton
|
||||||
|
dense
|
||||||
|
selected={selected}
|
||||||
|
onClick={() => onClick?.(proxy.name)}
|
||||||
|
sx={[
|
||||||
|
{ borderRadius: 1 },
|
||||||
|
({ palette: { mode, primary } }) => {
|
||||||
|
const bgcolor =
|
||||||
|
mode === "light"
|
||||||
|
? alpha(primary.main, 0.15)
|
||||||
|
: alpha(primary.main, 0.35);
|
||||||
|
const color = mode === "light" ? primary.main : primary.light;
|
||||||
|
|
||||||
|
const showDelay = delay > 0;
|
||||||
|
const showIcon = !showDelay && selected;
|
||||||
|
|
||||||
|
return {
|
||||||
|
".the-check": { display: "none" },
|
||||||
|
".the-delay": { display: showDelay ? "block" : "none" },
|
||||||
|
".the-icon": { display: showIcon ? "block" : "none" },
|
||||||
|
"&:hover .the-check": { display: !showDelay ? "block" : "none" },
|
||||||
|
"&:hover .the-delay": { display: showDelay ? "block" : "none" },
|
||||||
|
"&:hover .the-icon": { display: "none" },
|
||||||
|
"&.Mui-selected": { bgcolor },
|
||||||
|
"&.Mui-selected .MuiListItemText-secondary": { color },
|
||||||
|
};
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
>
|
||||||
|
<ListItemText title={proxy.name} secondary={proxy.name} />
|
||||||
|
|
||||||
|
<ListItemIcon
|
||||||
|
sx={{ justifyContent: "flex-end", color: "primary.main" }}
|
||||||
|
>
|
||||||
|
<Widget className="the-check" onClick={onDelay}>
|
||||||
|
Check
|
||||||
|
</Widget>
|
||||||
|
|
||||||
|
<Widget
|
||||||
|
className="the-delay"
|
||||||
|
onClick={onDelay}
|
||||||
|
color={
|
||||||
|
delay > 500
|
||||||
|
? "error.main"
|
||||||
|
: delay < 100
|
||||||
|
? "success.main"
|
||||||
|
: "text.secondary"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{delay > 1e5 ? "Error" : delay > 3000 ? "Timeout" : `${delay}ms`}
|
||||||
|
</Widget>
|
||||||
|
|
||||||
|
<CheckCircleOutlineRounded
|
||||||
|
className="the-icon"
|
||||||
|
sx={{ fontSize: 16 }}
|
||||||
|
/>
|
||||||
|
</ListItemIcon>
|
||||||
|
</ListItemButton>
|
||||||
|
</ListItem>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProxyItem;
|
||||||
@@ -8,14 +8,15 @@ import {
|
|||||||
Switch,
|
Switch,
|
||||||
Select,
|
Select,
|
||||||
MenuItem,
|
MenuItem,
|
||||||
|
Typography,
|
||||||
} from "@mui/material";
|
} from "@mui/material";
|
||||||
import { getClashConfig, updateConfigs } from "../../services/api";
|
|
||||||
import { SettingList, SettingItem } from "./setting";
|
|
||||||
import { patchClashConfig } from "../../services/cmds";
|
|
||||||
import { atomClashPort } from "../../states/setting";
|
|
||||||
import { ApiType } from "../../services/types";
|
import { ApiType } from "../../services/types";
|
||||||
|
import { atomClashPort } from "../../states/setting";
|
||||||
|
import { patchClashConfig } from "../../services/cmds";
|
||||||
|
import { SettingList, SettingItem } from "./setting";
|
||||||
|
import { getClashConfig, getVersion, updateConfigs } from "../../services/api";
|
||||||
|
import Notice from "../base/base-notice";
|
||||||
import GuardState from "./guard-state";
|
import GuardState from "./guard-state";
|
||||||
import Notice from "../notice";
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
onError: (err: Error) => void;
|
onError: (err: Error) => void;
|
||||||
@@ -49,7 +50,7 @@ const SettingClash = ({ onError }: Props) => {
|
|||||||
// restart clash when port is changed
|
// restart clash when port is changed
|
||||||
const { run: onUpdatePort } = useDebounceFn(
|
const { run: onUpdatePort } = useDebounceFn(
|
||||||
async (port: number) => {
|
async (port: number) => {
|
||||||
(async () => {
|
try {
|
||||||
if (port < 1000) {
|
if (port < 1000) {
|
||||||
throw new Error("The port should not < 1000");
|
throw new Error("The port should not < 1000");
|
||||||
}
|
}
|
||||||
@@ -60,14 +61,22 @@ const SettingClash = ({ onError }: Props) => {
|
|||||||
onChangeData({ "mixed-port": port });
|
onChangeData({ "mixed-port": port });
|
||||||
setPort(port);
|
setPort(port);
|
||||||
Notice.success("Change Clash port successfully!");
|
Notice.success("Change Clash port successfully!");
|
||||||
})().catch((err: any) => {
|
} catch (err: any) {
|
||||||
setMixedPort(thePort); // back to old port value
|
setMixedPort(thePort); // back to old port value
|
||||||
Notice.error(err.message ?? err.toString());
|
Notice.error(err.message ?? err.toString());
|
||||||
});
|
}
|
||||||
},
|
},
|
||||||
{ wait: 1000 }
|
{ wait: 1000 }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// get clash core version
|
||||||
|
const [clashVer, setClashVer] = useState("");
|
||||||
|
useEffect(() => {
|
||||||
|
getVersion().then(({ premium, version }) => {
|
||||||
|
setClashVer(premium ? `${version} Premium` : version);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SettingList title="Clash Setting">
|
<SettingList title="Clash Setting">
|
||||||
<SettingItem>
|
<SettingItem>
|
||||||
@@ -128,6 +137,11 @@ const SettingClash = ({ onError }: Props) => {
|
|||||||
<TextField autoComplete="off" size="small" sx={{ width: 120 }} />
|
<TextField autoComplete="off" size="small" sx={{ width: 120 }} />
|
||||||
</GuardState>
|
</GuardState>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary="Clash core" />
|
||||||
|
<Typography sx={{ py: 1 }}>{clashVer}</Typography>
|
||||||
|
</SettingItem>
|
||||||
</SettingList>
|
</SettingList>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import useSWR, { useSWRConfig } from "swr";
|
import useSWR, { useSWRConfig } from "swr";
|
||||||
import { Box, ListItemText, Switch } from "@mui/material";
|
import { Box, ListItemText, Switch, TextField } from "@mui/material";
|
||||||
import { getVergeConfig, patchVergeConfig } from "../../services/cmds";
|
import { getVergeConfig, patchVergeConfig } from "../../services/cmds";
|
||||||
import { SettingList, SettingItem } from "./setting";
|
import { SettingList, SettingItem } from "./setting";
|
||||||
import { CmdType } from "../../services/types";
|
import { CmdType } from "../../services/types";
|
||||||
@@ -17,6 +17,7 @@ const SettingSystem = ({ onError }: Props) => {
|
|||||||
const {
|
const {
|
||||||
enable_auto_launch: startup = false,
|
enable_auto_launch: startup = false,
|
||||||
enable_system_proxy: proxy = false,
|
enable_system_proxy: proxy = false,
|
||||||
|
system_proxy_bypass: bypass = "",
|
||||||
} = vergeConfig ?? {};
|
} = vergeConfig ?? {};
|
||||||
|
|
||||||
const onSwitchFormat = (_e: any, value: boolean) => value;
|
const onSwitchFormat = (_e: any, value: boolean) => value;
|
||||||
@@ -55,11 +56,29 @@ const SettingSystem = ({ onError }: Props) => {
|
|||||||
onCatch={onError}
|
onCatch={onError}
|
||||||
onFormat={onSwitchFormat}
|
onFormat={onSwitchFormat}
|
||||||
onChange={(e) => onChangeData({ enable_system_proxy: e })}
|
onChange={(e) => onChangeData({ enable_system_proxy: e })}
|
||||||
onGuard={(e) => patchVergeConfig({ enable_system_proxy: e })}
|
onGuard={async (e) => {
|
||||||
|
await patchVergeConfig({ enable_system_proxy: e });
|
||||||
|
mutate("getVergeConfig"); // update bypass value
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<Switch edge="end" />
|
<Switch edge="end" />
|
||||||
</GuardState>
|
</GuardState>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
{proxy && (
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary="Proxy Bypass" />
|
||||||
|
<GuardState
|
||||||
|
value={bypass ?? ""}
|
||||||
|
onCatch={onError}
|
||||||
|
onFormat={(e: any) => e.target.value}
|
||||||
|
onChange={(e) => onChangeData({ system_proxy_bypass: e })}
|
||||||
|
onGuard={(e) => patchVergeConfig({ system_proxy_bypass: e })}
|
||||||
|
>
|
||||||
|
<TextField autoComplete="off" size="small" sx={{ width: 120 }} />
|
||||||
|
</GuardState>
|
||||||
|
</SettingItem>
|
||||||
|
)}
|
||||||
</SettingList>
|
</SettingList>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,11 +1,17 @@
|
|||||||
import useSWR, { useSWRConfig } from "swr";
|
import useSWR, { useSWRConfig } from "swr";
|
||||||
import { ListItemText, Switch, Typography } from "@mui/material";
|
import { IconButton, ListItemText, Switch, Typography } from "@mui/material";
|
||||||
import { getVergeConfig, patchVergeConfig } from "../../services/cmds";
|
import {
|
||||||
|
getVergeConfig,
|
||||||
|
openAppDir,
|
||||||
|
openLogsDir,
|
||||||
|
patchVergeConfig,
|
||||||
|
} from "../../services/cmds";
|
||||||
import { SettingList, SettingItem } from "./setting";
|
import { SettingList, SettingItem } from "./setting";
|
||||||
import { CmdType } from "../../services/types";
|
import { CmdType } from "../../services/types";
|
||||||
import { version } from "../../../package.json";
|
import { version } from "../../../package.json";
|
||||||
import GuardState from "./guard-state";
|
import GuardState from "./guard-state";
|
||||||
import PaletteSwitch from "./palette-switch";
|
import PaletteSwitch from "./palette-switch";
|
||||||
|
import { ArrowForward } from "@mui/icons-material";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
onError?: (err: Error) => void;
|
onError?: (err: Error) => void;
|
||||||
@@ -55,6 +61,27 @@ const SettingVerge = ({ onError }: Props) => {
|
|||||||
</GuardState>
|
</GuardState>
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary="Open App Dir" />
|
||||||
|
<IconButton
|
||||||
|
color="inherit"
|
||||||
|
size="small"
|
||||||
|
onClick={() => {
|
||||||
|
console.log("click");
|
||||||
|
openAppDir().then(console.log).catch(console.log);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<ArrowForward />
|
||||||
|
</IconButton>
|
||||||
|
</SettingItem>
|
||||||
|
|
||||||
|
<SettingItem>
|
||||||
|
<ListItemText primary="Open Logs Dir" />
|
||||||
|
<IconButton color="inherit" size="small" onClick={openLogsDir}>
|
||||||
|
<ArrowForward />
|
||||||
|
</IconButton>
|
||||||
|
</SettingItem>
|
||||||
|
|
||||||
<SettingItem>
|
<SettingItem>
|
||||||
<ListItemText primary="Version" />
|
<ListItemText primary="Version" />
|
||||||
<Typography sx={{ py: "6px" }}>v{version}</Typography>
|
<Typography sx={{ py: "6px" }}>v{version}</Typography>
|
||||||
|
|||||||
@@ -10,10 +10,10 @@ import { getVergeConfig } from "../services/cmds";
|
|||||||
import { getAxios } from "../services/api";
|
import { getAxios } from "../services/api";
|
||||||
import { routers } from "./_routers";
|
import { routers } from "./_routers";
|
||||||
import LogoSvg from "../assets/image/logo.svg";
|
import LogoSvg from "../assets/image/logo.svg";
|
||||||
import Traffic from "../components/traffic";
|
import LayoutItem from "../components/layout/layout-item";
|
||||||
import LayoutItem from "../components/layout-item";
|
import LayoutControl from "../components/layout/layout-control";
|
||||||
import UpdateButton from "../components/update-button";
|
import LayoutTraffic from "../components/layout/layout-traffic";
|
||||||
import LayoutControl from "../components/layout-control";
|
import UpdateButton from "../components/layout/update-button";
|
||||||
|
|
||||||
const Layout = () => {
|
const Layout = () => {
|
||||||
const { mutate } = useSWRConfig();
|
const { mutate } = useSWRConfig();
|
||||||
@@ -98,7 +98,7 @@ const Layout = () => {
|
|||||||
</List>
|
</List>
|
||||||
|
|
||||||
<div className="the-traffic" data-windrag>
|
<div className="the-traffic" data-windrag>
|
||||||
<Traffic />
|
<LayoutTraffic />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -3,8 +3,8 @@ import { Paper } from "@mui/material";
|
|||||||
import { Virtuoso } from "react-virtuoso";
|
import { Virtuoso } from "react-virtuoso";
|
||||||
import { ApiType } from "../services/types";
|
import { ApiType } from "../services/types";
|
||||||
import { getInfomation } from "../services/api";
|
import { getInfomation } from "../services/api";
|
||||||
import BasePage from "../components/base-page";
|
import BasePage from "../components/base/base-page";
|
||||||
import ConnectionItem from "../components/connection-item";
|
import ConnectionItem from "../components/connection/connection-item";
|
||||||
|
|
||||||
const ConnectionsPage = () => {
|
const ConnectionsPage = () => {
|
||||||
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import { Button, Paper } from "@mui/material";
|
|||||||
import { Virtuoso } from "react-virtuoso";
|
import { Virtuoso } from "react-virtuoso";
|
||||||
import { ApiType } from "../services/types";
|
import { ApiType } from "../services/types";
|
||||||
import { getInfomation } from "../services/api";
|
import { getInfomation } from "../services/api";
|
||||||
import BasePage from "../components/base-page";
|
import BasePage from "../components/base/base-page";
|
||||||
import LogItem from "../components/log-item";
|
import LogItem from "../components/log/log-item";
|
||||||
|
|
||||||
let logCache: ApiType.LogItem[] = [];
|
let logCache: ApiType.LogItem[] = [];
|
||||||
|
|
||||||
|
|||||||
@@ -6,12 +6,14 @@ import {
|
|||||||
selectProfile,
|
selectProfile,
|
||||||
patchProfile,
|
patchProfile,
|
||||||
importProfile,
|
importProfile,
|
||||||
|
newProfile,
|
||||||
} from "../services/cmds";
|
} from "../services/cmds";
|
||||||
import { getProxies, updateProxy } from "../services/api";
|
import { getProxies, updateProxy } from "../services/api";
|
||||||
import noop from "../utils/noop";
|
import noop from "../utils/noop";
|
||||||
import Notice from "../components/notice";
|
import Notice from "../components/base/base-notice";
|
||||||
import BasePage from "../components/base-page";
|
import BasePage from "../components/base/base-page";
|
||||||
import ProfileItem from "../components/profile-item";
|
import ProfileItem from "../components/profile/profile-item";
|
||||||
|
import ProfileNew from "../components/profile/profile-new";
|
||||||
|
|
||||||
const ProfilePage = () => {
|
const ProfilePage = () => {
|
||||||
const [url, setUrl] = useState("");
|
const [url, setUrl] = useState("");
|
||||||
@@ -94,6 +96,23 @@ const ProfilePage = () => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const lockNewRef = useRef(false);
|
||||||
|
const [dialogOpen, setDialogOpen] = useState(false);
|
||||||
|
const onNew = async (name: string, desc: string) => {
|
||||||
|
if (lockNewRef.current) return;
|
||||||
|
lockNewRef.current = true;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await newProfile(name, desc);
|
||||||
|
setDialogOpen(false);
|
||||||
|
mutate("getProfiles");
|
||||||
|
} catch (err: any) {
|
||||||
|
err && Notice.error(err.toString());
|
||||||
|
} finally {
|
||||||
|
lockNewRef.current = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BasePage title="Profiles">
|
<BasePage title="Profiles">
|
||||||
<Box sx={{ display: "flex", mb: 3 }}>
|
<Box sx={{ display: "flex", mb: 3 }}>
|
||||||
@@ -105,15 +124,19 @@ const ProfilePage = () => {
|
|||||||
fullWidth
|
fullWidth
|
||||||
value={url}
|
value={url}
|
||||||
onChange={(e) => setUrl(e.target.value)}
|
onChange={(e) => setUrl(e.target.value)}
|
||||||
sx={{ mr: 2 }}
|
sx={{ mr: 1 }}
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
disabled={!url || disabled}
|
disabled={!url || disabled}
|
||||||
variant="contained"
|
variant="contained"
|
||||||
onClick={onImport}
|
onClick={onImport}
|
||||||
|
sx={{ mr: 1 }}
|
||||||
>
|
>
|
||||||
Import
|
Import
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button variant="contained" onClick={() => setDialogOpen(true)}>
|
||||||
|
New
|
||||||
|
</Button>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Grid container spacing={3}>
|
<Grid container spacing={3}>
|
||||||
@@ -128,6 +151,12 @@ const ProfilePage = () => {
|
|||||||
</Grid>
|
</Grid>
|
||||||
))}
|
))}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
|
<ProfileNew
|
||||||
|
open={dialogOpen}
|
||||||
|
onClose={() => setDialogOpen(false)}
|
||||||
|
onSubmit={onNew}
|
||||||
|
/>
|
||||||
</BasePage>
|
</BasePage>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import { Button, ButtonGroup, List, Paper } from "@mui/material";
|
|||||||
import { getClashConfig, updateConfigs, updateProxy } from "../services/api";
|
import { getClashConfig, updateConfigs, updateProxy } from "../services/api";
|
||||||
import { patchClashConfig } from "../services/cmds";
|
import { patchClashConfig } from "../services/cmds";
|
||||||
import { getProxies } from "../services/api";
|
import { getProxies } from "../services/api";
|
||||||
import BasePage from "../components/base-page";
|
import BasePage from "../components/base/base-page";
|
||||||
import ProxyItem from "../components/proxy-item";
|
import ProxyItem from "../components/proxy/proxy-item";
|
||||||
import ProxyGroup from "../components/proxy-group";
|
import ProxyGroup from "../components/proxy/proxy-group";
|
||||||
|
|
||||||
const ProxyPage = () => {
|
const ProxyPage = () => {
|
||||||
const { mutate } = useSWRConfig();
|
const { mutate } = useSWRConfig();
|
||||||
@@ -33,7 +33,7 @@ const ProxyPage = () => {
|
|||||||
}, [proxiesData]);
|
}, [proxiesData]);
|
||||||
|
|
||||||
const modeList = ["rule", "global", "direct"];
|
const modeList = ["rule", "global", "direct"];
|
||||||
const asGroup = curMode === "rule" || !groups.length;
|
const asGroup = curMode === "rule" && groups.length;
|
||||||
|
|
||||||
// make sure that fetch the proxies successfully
|
// make sure that fetch the proxies successfully
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -114,6 +114,7 @@ const ProxyPage = () => {
|
|||||||
totalCount={filterProxies.length}
|
totalCount={filterProxies.length}
|
||||||
itemContent={(index) => (
|
itemContent={(index) => (
|
||||||
<ProxyItem
|
<ProxyItem
|
||||||
|
groupName="GLOBAL"
|
||||||
proxy={filterProxies[index]}
|
proxy={filterProxies[index]}
|
||||||
selected={filterProxies[index].name === curProxy}
|
selected={filterProxies[index].name === curProxy}
|
||||||
onClick={onChangeProxy}
|
onClick={onChangeProxy}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
import { Paper } from "@mui/material";
|
import { Paper } from "@mui/material";
|
||||||
import BasePage from "../components/base-page";
|
import Notice from "../components/base/base-notice";
|
||||||
|
import BasePage from "../components/base/base-page";
|
||||||
import SettingVerge from "../components/setting/setting-verge";
|
import SettingVerge from "../components/setting/setting-verge";
|
||||||
import SettingClash from "../components/setting/setting-clash";
|
import SettingClash from "../components/setting/setting-clash";
|
||||||
import SettingSystem from "../components/setting/setting-system";
|
import SettingSystem from "../components/setting/setting-system";
|
||||||
import Notice from "../components/notice";
|
|
||||||
|
|
||||||
const SettingPage = () => {
|
const SettingPage = () => {
|
||||||
const onError = (error: any) => {
|
const onError = (error: any) => {
|
||||||
|
|||||||
@@ -60,10 +60,24 @@ export async function getRules() {
|
|||||||
return instance.get("/rules") as Promise<ApiType.RuleItem[]>;
|
return instance.get("/rules") as Promise<ApiType.RuleItem[]>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get Proxy delay
|
||||||
|
export async function getProxyDelay(
|
||||||
|
name: string,
|
||||||
|
url?: string
|
||||||
|
): Promise<{ delay: number }> {
|
||||||
|
const params = {
|
||||||
|
timeout: 3000,
|
||||||
|
url: url || "http://www.gstatic.com/generate_204",
|
||||||
|
};
|
||||||
|
|
||||||
|
const instance = await getAxios();
|
||||||
|
return instance.get(`/proxies/${encodeURIComponent(name)}/delay`, { params });
|
||||||
|
}
|
||||||
|
|
||||||
/// Update the Proxy Choose
|
/// Update the Proxy Choose
|
||||||
export async function updateProxy(group: string, proxy: string) {
|
export async function updateProxy(group: string, proxy: string) {
|
||||||
const instance = await getAxios();
|
const instance = await getAxios();
|
||||||
return instance.put(`/proxies/${group}`, { name: proxy });
|
return instance.put(`/proxies/${encodeURIComponent(group)}`, { name: proxy });
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the Proxy infomation
|
/// Get the Proxy infomation
|
||||||
|
|||||||
@@ -9,6 +9,10 @@ export async function syncProfiles() {
|
|||||||
return invoke<void>("sync_profiles");
|
return invoke<void>("sync_profiles");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function newProfile(name: string, desc: string) {
|
||||||
|
return invoke<void>("new_profile", { name, desc });
|
||||||
|
}
|
||||||
|
|
||||||
export async function viewProfile(index: number) {
|
export async function viewProfile(index: number) {
|
||||||
return invoke<void>("view_profile", { index });
|
return invoke<void>("view_profile", { index });
|
||||||
}
|
}
|
||||||
@@ -59,3 +63,11 @@ export async function patchVergeConfig(payload: CmdType.VergeConfig) {
|
|||||||
export async function getSystemProxy() {
|
export async function getSystemProxy() {
|
||||||
return invoke<any>("get_sys_proxy");
|
return invoke<any>("get_sys_proxy");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function openAppDir() {
|
||||||
|
return invoke<void>("open_app_dir");
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function openLogsDir() {
|
||||||
|
return invoke<void>("open_logs_dir");
|
||||||
|
}
|
||||||
|
|||||||
37
src/services/delay.ts
Normal file
37
src/services/delay.ts
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import { getProxyDelay } from "./api";
|
||||||
|
|
||||||
|
const hashKey = (name: string, group: string) => `${group ?? ""}::${name}`;
|
||||||
|
|
||||||
|
class DelayManager {
|
||||||
|
private cache = new Map<string, [number, number]>();
|
||||||
|
|
||||||
|
setDelay(name: string, group: string, delay: number) {
|
||||||
|
this.cache.set(hashKey(name, group), [Date.now(), delay]);
|
||||||
|
}
|
||||||
|
|
||||||
|
getDelay(name: string, group: string) {
|
||||||
|
if (!name) return -1;
|
||||||
|
|
||||||
|
const result = this.cache.get(hashKey(name, group));
|
||||||
|
if (result && Date.now() - result[0] <= 18e5) {
|
||||||
|
return result[1];
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
async checkDelay(name: string, group: string) {
|
||||||
|
let delay = -1;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await getProxyDelay(name);
|
||||||
|
delay = result.delay;
|
||||||
|
} catch {
|
||||||
|
delay = 1e6; // error
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setDelay(name, group, delay);
|
||||||
|
return delay;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default new DelayManager();
|
||||||
@@ -87,6 +87,7 @@ export namespace CmdType {
|
|||||||
|
|
||||||
export interface ProfileItem {
|
export interface ProfileItem {
|
||||||
name?: string;
|
name?: string;
|
||||||
|
desc?: string;
|
||||||
file?: string;
|
file?: string;
|
||||||
mode?: string;
|
mode?: string;
|
||||||
url?: string;
|
url?: string;
|
||||||
@@ -113,5 +114,6 @@ export namespace CmdType {
|
|||||||
theme_blur?: boolean;
|
theme_blur?: boolean;
|
||||||
enable_auto_launch?: boolean;
|
enable_auto_launch?: boolean;
|
||||||
enable_system_proxy?: boolean;
|
enable_system_proxy?: boolean;
|
||||||
|
system_proxy_bypass?: string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user