import useSWR, { useSWRConfig } from "swr"; import { useEffect, useRef, useState } from "react"; import { useLockFn } from "ahooks"; import { Virtuoso } from "react-virtuoso"; import { ApiType } from "../../services/types"; import { updateProxy } from "../../services/api"; import { getProfiles, patchProfile } from "../../services/cmds"; import useSortProxy, { ProxySortType } from "./use-sort-proxy"; import useFilterProxy from "./use-filter-proxy"; import delayManager from "../../services/delay"; import ProxyHead from "./proxy-head"; import ProxyItem from "./proxy-item"; interface Props { groupName: string; curProxy?: string; proxies: ApiType.ProxyItem[]; } // this component will be used for DIRECT/GLOBAL const ProxyGlobal = (props: Props) => { const { groupName, curProxy, proxies } = props; const { mutate } = useSWRConfig(); const [now, setNow] = useState(curProxy || "DIRECT"); const [showType, setShowType] = useState(true); const [sortType, setSortType] = useState(0); const [filterText, setFilterText] = useState(""); const virtuosoRef = useRef(); const filterProxies = useFilterProxy(proxies, groupName, filterText); const sortedProxies = useSortProxy(filterProxies, groupName, sortType); const { data: profiles } = useSWR("getProfiles", getProfiles); const onChangeProxy = useLockFn(async (name: string) => { await updateProxy(groupName, name); setNow(name); if (groupName === "DIRECT") return; // update global selected const profile = profiles?.items?.find((p) => p.uid === profiles.current); if (!profile) return; if (!profile.selected) profile.selected = []; const index = profile.selected.findIndex((item) => item.name === groupName); if (index < 0) { profile.selected.unshift({ name: groupName, now: name }); } else { profile.selected[index] = { name: groupName, now: name }; } await patchProfile(profiles!.current!, { selected: profile.selected }); }); const onLocation = (smooth = true) => { const index = sortedProxies.findIndex((p) => p.name === now); if (index >= 0) { virtuosoRef.current?.scrollToIndex?.({ index, align: "center", behavior: smooth ? "smooth" : "auto", }); } }; const onCheckAll = useLockFn(async () => { const names = sortedProxies.map((p) => p.name); await delayManager.checkListDelay( { names, groupName, skipNum: 8, maxTimeout: 600 }, () => mutate("getProxies") ); mutate("getProxies"); }); useEffect(() => onLocation(false), [groupName]); useEffect(() => { if (groupName === "DIRECT") setNow("DIRECT"); else if (groupName === "GLOBAL") { if (profiles) { const current = profiles.current; const profile = profiles.items?.find((p) => p.uid === current); profile?.selected?.forEach((item) => { if (item.name === "GLOBAL") { if (item.now && item.now !== curProxy) { updateProxy("GLOBAL", item.now).then(() => setNow(item!.now!)); mutate("getProxies"); } } }); } setNow(curProxy || "DIRECT"); } }, [groupName, curProxy, profiles]); return ( <> ( )} /> ); }; export default ProxyGlobal;