From 59dae640db6179f1106076529d250b24bcae982e Mon Sep 17 00:00:00 2001 From: GyDi <segydi@foxmail.com> Date: Wed, 26 Oct 2022 01:24:06 +0800 Subject: [PATCH] fix: auto scroll into view when sorted proxies changed --- src/components/proxy/proxy-group.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/proxy/proxy-group.tsx b/src/components/proxy/proxy-group.tsx index e21a6ee..61debdf 100644 --- a/src/components/proxy/proxy-group.tsx +++ b/src/components/proxy/proxy-group.tsx @@ -111,9 +111,18 @@ const ProxyGroup = ({ group }: Props) => { // auto scroll to current index useEffect(() => { if (headState.open) { - setTimeout(() => onLocation(false), 5); + setTimeout(() => onLocation(false), 10); } - }, [headState.open]); + }, [headState.open, sortedProxies]); + + // auto scroll when sorted changed + const timerRef = useRef<any>(); + useEffect(() => { + if (headState.open) { + clearTimeout(timerRef.current); + timerRef.current = setTimeout(() => onLocation(false), 500); + } + }, [headState.open, sortedProxies]); return ( <> -- GitLab