[🐴] Improve message pressing (#3864)

* allow tapping message when keyboard open

* dismiss keyboard on open msg menu

* show message info on press

* Revert "show message info on press"

This reverts commit 61d039a7024c27583aed7d1e9f1ff5b919dc7d30.
zio/stable
Samuel Newman 2024-05-05 01:13:57 +01:00 committed by GitHub
parent 91f8202549
commit 7448c8f785
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import React, {useCallback} from 'react' import React, {useCallback} from 'react'
import {Pressable, View} from 'react-native' import {Keyboard, Pressable, View} from 'react-native'
import Animated, { import Animated, {
cancelAnimation, cancelAnimation,
runOnJS, runOnJS,
@ -38,6 +38,7 @@ export function ActionsWrapper({
// Reanimated's `runOnJS` doesn't like refs, so we can't use `runOnJS(menuControl.open)()`. Instead, we'll use this // Reanimated's `runOnJS` doesn't like refs, so we can't use `runOnJS(menuControl.open)()`. Instead, we'll use this
// function // function
const open = useCallback(() => { const open = useCallback(() => {
Keyboard.dismiss()
menuControl.open() menuControl.open()
}, [menuControl]) }, [menuControl])

View File

@ -225,6 +225,7 @@ export function MessagesList() {
initialNumToRender={isWeb ? 50 : 25} initialNumToRender={isWeb ? 50 : 25}
maxToRenderPerBatch={isWeb ? 50 : 25} maxToRenderPerBatch={isWeb ? 50 : 25}
keyboardDismissMode="on-drag" keyboardDismissMode="on-drag"
keyboardShouldPersistTaps="handled"
maintainVisibleContentPosition={{ maintainVisibleContentPosition={{
minIndexForVisible: 1, minIndexForVisible: 1,
}} }}