]> cat aescling's git repositories - mastodon.git/commitdiff
Small scroll/history behavior fixup to take weird browser patterns into account
authorClaire <claire.github-309c@sitedethib.com>
Tue, 13 Jul 2021 10:57:07 +0000 (12:57 +0200)
committerClaire <claire.github-309c@sitedethib.com>
Tue, 13 Jul 2021 11:21:00 +0000 (13:21 +0200)
app/javascript/flavours/glitch/containers/scroll_container.js

index 595f3155ffae64507b7c984da232eeb0d93bedb4..740e266cbe93e8bbe9b6296d0e388f821741fa68 100644 (file)
@@ -4,7 +4,8 @@ import { ScrollContainer as OriginalScrollContainer } from 'react-router-scroll-
 // new history state and remembering the scroll position when going back.
 // There are a few things we need to do differently, though.
 const defaultShouldUpdateScroll = (prevRouterProps, { location }) => {
-  return !(prevRouterProps?.location?.state?.mastodonModalKey || location.state?.mastodonModalKey);
+  // If the change is caused by opening a modal, do not scroll to top
+  return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey);
 }
 
 export default