mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 05:33:45 +08:00
87 lines
2.3 KiB
TypeScript
87 lines
2.3 KiB
TypeScript
import dayjs from "dayjs";
|
|
import useSWR, { mutate } from "swr";
|
|
import { useState } from "react";
|
|
import {
|
|
Button,
|
|
IconButton,
|
|
List,
|
|
ListItem,
|
|
ListItemText,
|
|
} from "@mui/material";
|
|
import { RefreshRounded } from "@mui/icons-material";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useLockFn } from "ahooks";
|
|
import { getProviders, providerUpdate } from "@/services/api";
|
|
import { BaseDialog } from "../base";
|
|
|
|
export const ProviderButton = () => {
|
|
const { t } = useTranslation();
|
|
const { data } = useSWR("getProviders", getProviders);
|
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const hasProvider = Object.keys(data || {}).length > 0;
|
|
|
|
const handleUpdate = useLockFn(async (key: string) => {
|
|
await providerUpdate(key);
|
|
await mutate("getProxies");
|
|
await mutate("getProviders");
|
|
});
|
|
|
|
if (!hasProvider) return null;
|
|
|
|
return (
|
|
<>
|
|
<Button
|
|
size="small"
|
|
variant="outlined"
|
|
sx={{ textTransform: "capitalize" }}
|
|
onClick={() => setOpen(true)}
|
|
>
|
|
{t("Provider")}
|
|
</Button>
|
|
|
|
<BaseDialog
|
|
open={open}
|
|
title={t("Proxy Provider")}
|
|
contentSx={{ width: 400 }}
|
|
disableOk
|
|
cancelBtn={t("Cancel")}
|
|
onClose={() => setOpen(false)}
|
|
onCancel={() => setOpen(false)}
|
|
>
|
|
<List sx={{ py: 0, minHeight: 250 }}>
|
|
{Object.entries(data || {}).map(([key, item]) => {
|
|
const time = dayjs(item.updatedAt);
|
|
return (
|
|
<ListItem sx={{ p: 0 }}>
|
|
<ListItemText
|
|
primary={key}
|
|
secondary={
|
|
<div>
|
|
<span style={{ marginRight: "4em" }}>
|
|
Type: {item.vehicleType}
|
|
</span>
|
|
<span title={time.format("YYYY-MM-DD HH:mm:ss")}>
|
|
Updated: {time.fromNow()}
|
|
</span>
|
|
</div>
|
|
}
|
|
/>
|
|
<IconButton
|
|
size="small"
|
|
color="inherit"
|
|
title="Update Provider"
|
|
onClick={() => handleUpdate(key)}
|
|
>
|
|
<RefreshRounded />
|
|
</IconButton>
|
|
</ListItem>
|
|
);
|
|
})}
|
|
</List>
|
|
</BaseDialog>
|
|
</>
|
|
);
|
|
};
|