Last active
October 6, 2023 09:11
-
-
Save shunwitter/fc6250ae3b7faad3332ae53f934c7d71 to your computer and use it in GitHub Desktop.
Temporary replacement with KeyboardAvoidingView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable */ | |
import React, { useRef, useState, useEffect } from 'react' | |
import { | |
Keyboard, Dimensions, Animated | |
} from 'react-native' | |
const KeyboardSafeView = ({ children, style }) => { | |
const initialViewHeight = useRef(null) | |
const animatedViewHeight = useRef(null) | |
const [viewHeight, setViewHeight] = useState(null) | |
useEffect(() => { | |
const showSubscription = Keyboard.addListener('keyboardDidShow', handleShow) | |
const hideSubscription = Keyboard.addListener('keyboardDidHide', handleHide) | |
return () => { | |
showSubscription.remove() | |
hideSubscription.remove() | |
} | |
}, []) | |
useEffect(() => { | |
if ([initialViewHeight, animatedViewHeight, viewHeight].some((val) => val === null)) { return } | |
// height is not supported with useNativeDriver: true | |
// https://github.com/react-native-community/react-native-modal/issues/163 | |
if (viewHeight === initialViewHeight.current) { | |
Animated.timing(animatedViewHeight.current, | |
{ toValue: initialViewHeight.current, duration: 300, useNativeDriver: false }).start() | |
} else { | |
Animated.timing(animatedViewHeight.current, | |
{ toValue: viewHeight, duration: 300, useNativeDriver: false }).start() | |
} | |
}, [viewHeight]) | |
const handleShow = ({ endCoordinates }) => { | |
if (endCoordinates.height && initialViewHeight.current) { | |
const keyboardHeight = Dimensions.get('window').height - endCoordinates.screenY | |
setViewHeight(initialViewHeight.current - keyboardHeight - 80) | |
} | |
} | |
const handleHide = () => { | |
setViewHeight(initialViewHeight.current - 80) | |
} | |
const handleLayout = ({ nativeEvent }) => { | |
if (!initialViewHeight.current) { | |
const { height } = nativeEvent.layout | |
// keep viewHeight as null not to trigger useEffect on mounting. | |
// Don't do this: setViewHeight(height); | |
initialViewHeight.current = height | |
animatedViewHeight.current = new Animated.Value(height) | |
} | |
} | |
const animatedStyle = viewHeight | |
? { | |
height: animatedViewHeight.current, | |
flex: 0 | |
} | |
: {} | |
return ( | |
<Animated.View style={[style, animatedStyle]} onLayout={handleLayout}> | |
{children} | |
</Animated.View> | |
) | |
} | |
export default KeyboardSafeView |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment