Got to be picky about the smooth vs jump scroll
This commit is contained in:
parent
1fed35f674
commit
613e77e43f
1 changed files with 5 additions and 2 deletions
|
@ -22,13 +22,16 @@ function MediaModal({
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
carouselFocusItem.current?.scrollIntoView();
|
carouselFocusItem.current?.scrollIntoView();
|
||||||
}, []);
|
}, []);
|
||||||
|
const prevStatusID = useRef(statusID);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const scrollLeft = index * carouselRef.current.clientWidth;
|
const scrollLeft = index * carouselRef.current.clientWidth;
|
||||||
|
const differentStatusID = prevStatusID.current !== statusID;
|
||||||
|
if (differentStatusID) prevStatusID.current = statusID;
|
||||||
carouselRef.current.scrollTo({
|
carouselRef.current.scrollTo({
|
||||||
left: scrollLeft,
|
left: scrollLeft,
|
||||||
behavior: 'smooth',
|
behavior: differentStatusID ? 'auto' : 'smooth',
|
||||||
});
|
});
|
||||||
}, [index]);
|
}, [index, statusID]);
|
||||||
|
|
||||||
const [showControls, setShowControls] = useState(true);
|
const [showControls, setShowControls] = useState(true);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue