import dayjs from "dayjs"; import useSWR, { mutate } from "swr"; import { useState } from "react"; import { Button, IconButton, List, ListItem, ListItemText, styled, Box, alpha, Typography, Divider, LinearProgress, } from "@mui/material"; import { RefreshRounded } from "@mui/icons-material"; import { useTranslation } from "react-i18next"; import { useLockFn } from "ahooks"; import { getProxyProviders, proxyProviderUpdate } from "@/services/api"; import { BaseDialog } from "../base"; import parseTraffic from "@/utils/parse-traffic"; export const ProviderButton = () => { const { t } = useTranslation(); const { data } = useSWR("getProxyProviders", getProxyProviders); const [open, setOpen] = useState(false); const hasProvider = Object.keys(data || {}).length > 0; const handleUpdate = useLockFn(async (key: string) => { await proxyProviderUpdate(key); await mutate("getProxies"); await mutate("getProxyProviders"); }); if (!hasProvider) return null; return ( <> {t("Proxy Provider")} } contentSx={{ width: 400 }} disableOk cancelBtn={t("Cancel")} onClose={() => setOpen(false)} onCancel={() => setOpen(false)} > {Object.entries(data || {}).map(([key, item]) => { const time = dayjs(item.updatedAt); const sub = item.subscriptionInfo; const hasSubInfo = !!sub; const upload = sub?.Upload || 0; const download = sub?.Download || 0; const total = sub?.Total || 0; const expire = sub?.Expire || 0; const progress = Math.round( ((download + upload) * 100) / (total + 0.1) ); return ( <> ({ p: 0, borderRadius: "10px", boxShadow: theme.shadows[2], mb: 1, })} key={key} > {key} } secondary={ <> {item.vehicleType} {t("Update At")} {time.fromNow()} {hasSubInfo && ( <> {parseTraffic(upload + download)} /{" "} {parseTraffic(total)} {parseExpire(expire)} )} } /> handleUpdate(key)} > ); })} ); }; const StyledTypeBox = styled(Box)(({ theme }) => ({ display: "inline-block", border: "1px solid #ccc", borderColor: alpha(theme.palette.primary.main, 0.5), color: alpha(theme.palette.primary.main, 0.8), borderRadius: 4, fontSize: 10, marginRight: "4px", padding: "0 2px", lineHeight: 1.25, })); const boxStyle = { height: 26, display: "flex", alignItems: "center", justifyContent: "space-between", }; function parseExpire(expire?: number) { if (!expire) return "-"; return dayjs(expire * 1000).format("YYYY-MM-DD"); }