diff options
author | dan <dan.abramov@gmail.com> | 2023-11-17 02:01:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 18:01:51 -0800 |
commit | 3043b324681f1702ca53831701fb5cecd14c0efb (patch) | |
tree | 7a8ba883a158870b95e94af1c11afa3913398ee3 /src/view/com/modals/Modal.tsx | |
parent | c03c744008bc15be807ccb172801268bd24dae53 (diff) | |
download | voidsky-3043b324681f1702ca53831701fb5cecd14c0efb.tar.zst |
Fix jumpy modal regression (#1945)
Diffstat (limited to 'src/view/com/modals/Modal.tsx')
-rw-r--r-- | src/view/com/modals/Modal.tsx | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index d834db40b..a3e6fb9e5 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -9,6 +9,7 @@ import {navigate} from '../../../Navigation' import once from 'lodash.once' import {useModals, useModalControls} from '#/state/modals' +import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import * as ConfirmModal from './Confirm' import * as EditProfileModal from './EditProfile' import * as ProfilePreviewModal from './ProfilePreview' @@ -50,12 +51,15 @@ export function ModalsContainer() { const navigateOnce = once(navigate) - const onBottomSheetAnimate = (_fromIndex: number, toIndex: number) => { - if (activeModal?.name === 'profile-preview' && toIndex === 1) { - // begin loading the profile screen behind the scenes - navigateOnce('Profile', {name: activeModal.did}) - } - } + // It seems like the bottom sheet bugs out when this callback changes. + const onBottomSheetAnimate = useNonReactiveCallback( + (_fromIndex: number, toIndex: number) => { + if (activeModal?.name === 'profile-preview' && toIndex === 1) { + // begin loading the profile screen behind the scenes + navigateOnce('Profile', {name: activeModal.did}) + } + }, + ) const onBottomSheetChange = async (snapPoint: number) => { if (snapPoint === -1) { closeModal() |