import React from 'react'; import { StyleSheet } from 'react-native'; import Animated from 'react-native-reanimated'; import { InputButtons } from './components/InputButtons'; import { idleRecordingStateSelector } from './utils/audioRecorderSelectors'; import { useMessageInputContext } from '../../contexts/messageInputContext/MessageInputContext'; import { useTheme } from '../../contexts/themeContext/ThemeContext'; import { useStateStore } from '../../hooks/useStateStore'; import { transitions } from '../../utils/transitions'; export const MessageComposerLeadingView = () => { const { theme: { messageComposer: { inputButtonsContainer }, }, } = useTheme(); const { audioRecorderManager, messageInputFloating } = useMessageInputContext(); const { isRecordingStateIdle } = useStateStore( audioRecorderManager.state, idleRecordingStateSelector, ); return isRecordingStateIdle ? ( ) : null; }; const styles = StyleSheet.create({ inputButtonsContainer: { alignSelf: 'flex-end', }, shadow: { elevation: 6, shadowColor: 'hsla(0, 0%, 0%, 0.24)', shadowOffset: { height: 4, width: 0 }, shadowOpacity: 0.24, shadowRadius: 12, }, });