import React from 'react' import { Dimensions, Keyboard, NativeSyntheticEvent, Pressable, TextInput, TextInputContentSizeChangeEventData, View, } from 'react-native' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {atoms as a, useTheme} from '#/alf' import {PaperPlane_Stroke2_Corner0_Rounded as PaperPlane} from '#/components/icons/PaperPlane' export function MessageInput({ onSendMessage, onFocus, onBlur, }: { onSendMessage: (message: string) => void onFocus: () => void onBlur: () => void }) { const {_} = useLingui() const t = useTheme() const [message, setMessage] = React.useState('') const [maxHeight, setMaxHeight] = React.useState() const [isInputScrollable, setIsInputScrollable] = React.useState(false) const {top: topInset} = useSafeAreaInsets() const inputRef = React.useRef(null) const onSubmit = React.useCallback(() => { if (message.trim() === '') { return } onSendMessage(message.trimEnd()) setMessage('') setTimeout(() => { inputRef.current?.focus() }, 100) }, [message, onSendMessage]) const onInputLayout = React.useCallback( (e: NativeSyntheticEvent) => { const keyboardHeight = Keyboard.metrics()?.height ?? 0 const windowHeight = Dimensions.get('window').height const max = windowHeight - keyboardHeight - topInset - 100 const availableSpace = max - e.nativeEvent.contentSize.height setMaxHeight(max) setIsInputScrollable(availableSpace < 30) }, [topInset], ) return ( ) }