From 0feee7ea9329b4636e75432b08118ea0ec0f5168 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 28 Dec 2022 20:02:28 +0800 Subject: [PATCH] Delay onClose after swipe --- src/components/status.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index b9ed83b4..05a156cd 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -1272,8 +1272,9 @@ function Carousel({ mediaAttachments, index = 0, onClose = () => {} }) { const [showControls, setShowControls] = useState(false); useEffect(() => { + let swipeTimeout; let handleSwipe = () => { - onClose(); + swipeTimeout = setTimeout(onClose, 500); }; if (carouselRef.current) { carouselRef.current.addEventListener('swiped-down', handleSwipe); @@ -1282,6 +1283,7 @@ function Carousel({ mediaAttachments, index = 0, onClose = () => {} }) { if (carouselRef.current) { carouselRef.current.removeEventListener('swiped-down', handleSwipe); } + clearTimeout(swipeTimeout); }; }, []);