mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 08:45:41 +08:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { IconButton, Paper } from "@mui/material";
|
|
import { useLockFn } from "ahooks";
|
|
import { useTranslation } from "react-i18next";
|
|
import { BasePage, Notice } from "@/components/base";
|
|
import { GitHub } 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";
|
|
|
|
const SettingPage = () => {
|
|
const { t } = useTranslation();
|
|
|
|
const onError = (err: any) => {
|
|
Notice.error(err?.message || err.toString());
|
|
};
|
|
|
|
const toGithubRepo = useLockFn(() => {
|
|
return openWebUrl("https://github.com/zzzgydi/clash-verge");
|
|
});
|
|
|
|
return (
|
|
<BasePage
|
|
title={t("Settings")}
|
|
header={
|
|
<IconButton
|
|
size="small"
|
|
color="inherit"
|
|
title="@zzzgydi/clash-verge"
|
|
onClick={toGithubRepo}
|
|
>
|
|
<GitHub fontSize="inherit" />
|
|
</IconButton>
|
|
}
|
|
>
|
|
<Paper sx={{ borderRadius: 1, boxShadow: 2, mb: 3 }}>
|
|
<SettingClash onError={onError} />
|
|
</Paper>
|
|
|
|
<Paper sx={{ borderRadius: 1, boxShadow: 2, mb: 3 }}>
|
|
<SettingSystem onError={onError} />
|
|
</Paper>
|
|
|
|
<Paper sx={{ borderRadius: 1, boxShadow: 2 }}>
|
|
<SettingVerge onError={onError} />
|
|
</Paper>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default SettingPage;
|