mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 08:45:41 +08:00
125 lines
3.4 KiB
TypeScript
125 lines
3.4 KiB
TypeScript
import {
|
|
Box,
|
|
ButtonGroup,
|
|
Grid,
|
|
IconButton,
|
|
Select,
|
|
MenuItem,
|
|
} from "@mui/material";
|
|
import { useLockFn } from "ahooks";
|
|
import { useTranslation } from "react-i18next";
|
|
import { BasePage, Notice } from "@/components/base";
|
|
import { GitHub, HelpOutlineRounded, Telegram } from "@mui/icons-material";
|
|
import { openWebUrl } from "@/services/cmds";
|
|
import SettingVerge from "@/components/setting/setting-verge";
|
|
import SettingClash from "@/components/setting/setting-clash";
|
|
import SettingSystem from "@/components/setting/setting-system";
|
|
import { useThemeMode } from "@/services/states";
|
|
|
|
const SettingPage = () => {
|
|
const { t } = useTranslation();
|
|
|
|
const onError = (err: any) => {
|
|
Notice.error(err?.message || err.toString());
|
|
};
|
|
|
|
const toGithubRepo = useLockFn(() => {
|
|
return openWebUrl("https://github.com/clash-verge-rev/clash-verge-rev");
|
|
});
|
|
|
|
const toGithubDoc = useLockFn(() => {
|
|
return openWebUrl("https://clash-verge-rev.github.io/index.html");
|
|
});
|
|
|
|
const toTelegramChannel = useLockFn(() => {
|
|
return openWebUrl("https://t.me/clash_verge_re");
|
|
});
|
|
|
|
const mode = useThemeMode();
|
|
const isDark = mode === "light" ? false : true;
|
|
|
|
const routers = [
|
|
{ label: "Manual", path: "manual" },
|
|
{ label: "TG Channel", path: "telegram" },
|
|
{ label: "Github Repo", path: "github" },
|
|
];
|
|
|
|
return (
|
|
<BasePage
|
|
title={t("Settings")}
|
|
header={
|
|
<ButtonGroup variant="contained" aria-label="Basic button group">
|
|
<IconButton
|
|
size="medium"
|
|
color="inherit"
|
|
title={t("Manual")}
|
|
onClick={toGithubDoc}
|
|
>
|
|
<HelpOutlineRounded fontSize="inherit" />
|
|
</IconButton>
|
|
<IconButton
|
|
size="medium"
|
|
color="inherit"
|
|
title={t("TG Channel")}
|
|
onClick={toTelegramChannel}
|
|
>
|
|
<Telegram fontSize="inherit" />
|
|
</IconButton>
|
|
|
|
<IconButton
|
|
size="medium"
|
|
color="inherit"
|
|
title={t("Github Repo")}
|
|
onClick={toGithubRepo}
|
|
>
|
|
<GitHub fontSize="inherit" />
|
|
</IconButton>
|
|
</ButtonGroup>
|
|
}
|
|
>
|
|
<Grid container spacing={{ xs: 1.5, lg: 1.5 }}>
|
|
<Grid item xs={12} md={6}>
|
|
<Box
|
|
sx={{
|
|
borderRadius: 2,
|
|
marginBottom: 1.5,
|
|
backgroundColor: isDark ? "#282a36" : "#ffffff",
|
|
}}
|
|
>
|
|
<SettingSystem onError={onError} />
|
|
</Box>
|
|
<Box
|
|
sx={{
|
|
borderRadius: 2,
|
|
backgroundColor: isDark ? "#282a36" : "#ffffff",
|
|
}}
|
|
>
|
|
<SettingClash onError={onError} />
|
|
</Box>
|
|
</Grid>
|
|
<Grid item xs={12} md={6}>
|
|
<Box
|
|
sx={{
|
|
borderRadius: 2,
|
|
backgroundColor: isDark ? "#282a36" : "#ffffff",
|
|
}}
|
|
>
|
|
<SettingVerge onError={onError} />
|
|
</Box>
|
|
</Grid>
|
|
</Grid>
|
|
<Select size="small" sx={{ width: 140, "> div": { py: "7.5px" } }}>
|
|
{routers.map((page: { label: string; path: string }) => {
|
|
return (
|
|
<MenuItem key={page.path} value={page.path}>
|
|
{t(page.label)}
|
|
</MenuItem>
|
|
);
|
|
})}
|
|
</Select>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default SettingPage;
|