import dayjs from "dayjs"; import useSWR, { mutate } from "swr"; import { useState } from "react"; import { Button, IconButton, List, ListItem, ListItemText, Typography, styled, Box, alpha, Divider, keyframes, } from "@mui/material"; import { RefreshRounded } from "@mui/icons-material"; import { useTranslation } from "react-i18next"; import { getRuleProviders, ruleProviderUpdate } from "@/services/api"; import { BaseDialog } from "../base"; const round = keyframes` from { transform: rotate(0deg); } to { transform: rotate(360deg); } `; export const ProviderButton = () => { const { t } = useTranslation(); const { data } = useSWR("getRuleProviders", getRuleProviders); const [open, setOpen] = useState(false); const hasProvider = Object.keys(data || {}).length > 0; const [updating, setUpdating] = useState( Object.keys(data || {}).map(() => false), ); const setUpdatingAt = (status: boolean, index: number) => { setUpdating((prev) => { const next = [...prev]; next[index] = status; return next; }); }; const handleUpdate = async (key: string, index: number) => { setUpdatingAt(true, index); ruleProviderUpdate(key) .then(async () => { setUpdatingAt(false, index); await mutate("getRules"); await mutate("getRuleProviders"); }) .catch(async () => { setUpdatingAt(false, index); await mutate("getRules"); await mutate("getRuleProviders"); }); }; if (!hasProvider) return null; return ( <> {t("Rule Provider")} } contentSx={{ width: 400 }} disableOk cancelBtn={t("Close")} onClose={() => setOpen(false)} onCancel={() => setOpen(false)} > {Object.entries(data || {}).map(([key, item], index) => { const time = dayjs(item.updatedAt); return ( <> {key} {item.ruleCount} } secondary={ <> {item.vehicleType} {item.behavior} {t("Update At")} {time.fromNow()} } /> handleUpdate(key, index)} sx={{ animation: updating[index] ? `1s linear infinite ${round}` : "none", }} > ); })} ); }; const TypeBox = styled(Box, { shouldForwardProp: (prop) => prop !== "component", })<{ component?: React.ElementType }>(({ theme }) => ({ display: "inline-block", border: "1px solid #ccc", borderColor: alpha(theme.palette.secondary.main, 0.5), color: alpha(theme.palette.secondary.main, 0.8), borderRadius: 4, fontSize: 10, marginRight: "4px", padding: "0 2px", lineHeight: 1.25, })); const StyledTypeBox = styled(Box, { shouldForwardProp: (prop) => prop !== "component", })<{ component?: React.ElementType }>(({ 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, }));