import { CustomComponentContext, createStyleSheet, useUIKitTheme } from '@gathertown/uikit-react-native-foundation'; import { SendbirdBaseChannel, SendbirdBaseMessage, SendbirdFileMessage, SendbirdFileMessageCreateParams, SendbirdFileMessageUpdateParams, SendbirdMember, SendbirdUserMessage, SendbirdUserMessageCreateParams, SendbirdUserMessageUpdateParams, replace, useIIFE, } from '@gathertown/uikit-utils'; import React, { MutableRefObject, useContext, useEffect, useState } from 'react'; import { KeyboardAvoidingView, Platform, TextInput, View } from 'react-native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { useSendbirdChat } from '../../hooks/useContext'; import useMentionTextInput from '../../hooks/useMentionTextInput'; import type { MentionedUser, Range } from '../../types'; import type { AttachmentsButtonProps } from './AttachmentsButton'; import AttachmentsButton from './AttachmentsButton'; import EditInput from './EditInput'; import SendInput from './SendInput'; export type SuggestedMentionListProps = { text: string; selection: Range; topInset: number; bottomInset: number; inputHeight: number; onPressToMention: (user: SendbirdMember, searchStringRange: Range) => void; mentionedUsers: MentionedUser[]; }; export type ChannelInputProps = { // default channel: SendbirdBaseChannel; shouldRenderInput: boolean; keyboardAvoidOffset: number; // default actions onPressSendUserMessage: (params: SendbirdUserMessageCreateParams) => Promise; onPressSendFileMessage: (params: SendbirdFileMessageCreateParams) => Promise; onPressUpdateUserMessage: (message: SendbirdUserMessage, params: SendbirdUserMessageUpdateParams) => Promise; onPressUpdateFileMessage: (message: SendbirdFileMessage, params: SendbirdFileMessageUpdateParams) => Promise; // input status inputFrozen: boolean; inputMuted: boolean; inputDisabled: boolean; // edit messageToEdit: undefined | SendbirdUserMessage | SendbirdFileMessage; setMessageToEdit: (message?: undefined | SendbirdUserMessage | SendbirdFileMessage) => void; // reply - only available on group channel messageToReply?: undefined | SendbirdUserMessage | SendbirdFileMessage; setMessageToReply?: (message?: undefined | SendbirdUserMessage | SendbirdFileMessage) => void; // mention SuggestedMentionList?: (props: SuggestedMentionListProps) => JSX.Element | null; // sub-components AttachmentsButton?: (props: AttachmentsButtonProps) => JSX.Element | null; }; const AUTO_FOCUS = Platform.select({ ios: false, android: true, default: false }); const KEYBOARD_AVOID_VIEW_BEHAVIOR = Platform.select({ ios: 'padding' as const, default: undefined }); // FIXME(iOS): Dynamic style does not work properly when typing the CJK. (https://github.com/facebook/react-native/issues/26107) // To workaround temporarily, change the key for re-mount the component. // -> This will affect to keyboard blur when add/remove first mentioned user. const GET_INPUT_KEY = (shouldReset: boolean) => (shouldReset ? 'uikit-input-clear' : 'uikit-input'); // TODO: Refactor 'Edit' mode to clearly const ChannelInput = (props: ChannelInputProps) => { const { channel, keyboardAvoidOffset, messageToEdit, setMessageToEdit } = props; const ctx = useContext(CustomComponentContext); const { top, left, right, bottom } = useSafeAreaInsets(); const { colors } = useUIKitTheme(); const { sbOptions, mentionManager } = useSendbirdChat(); const { selection, onSelectionChange, textInputRef, text, onChangeText, mentionedUsers } = useMentionTextInput({ messageToEdit, }); const inputMode = useIIFE(() => { if (messageToEdit && !messageToEdit.isFileMessage()) return 'edit'; else return 'send'; }); const mentionAvailable = sbOptions.uikit.groupChannel.channel.enableMention && channel.isGroupChannel() && !channel.isBroadcast; const inputKeyToRemount = GET_INPUT_KEY(mentionAvailable ? mentionedUsers.length === 0 : false); const [inputHeight, setInputHeight] = useState(styles.inputDefault.height); useTypingTrigger(text, channel); useTextClearOnDisabled(onChangeText, props.inputDisabled); useAutoFocusOnEditMode(textInputRef, messageToEdit); const onPressToMention = (user: SendbirdMember, searchStringRange: Range) => { const mentionedMessageText = mentionManager.asMentionedMessageText(user, true); const range = { start: searchStringRange.start, end: searchStringRange.start + mentionedMessageText.length - 1 }; onChangeText(replace(text, searchStringRange.start, searchStringRange.end, mentionedMessageText), { user, range }); }; if (!props.shouldRenderInput) { return ; } const content = ( <> {inputMode === 'send' && ( )} {inputMode === 'edit' && messageToEdit && ( )} ); return ( <> { // remove styling if a render prop has been provided for message input ctx?.messageInput ? ( {content} ) : ( setInputHeight(e.nativeEvent.layout.height)} style={styles.inputContainer}> {content} ) } {mentionAvailable && props.SuggestedMentionList && ( )} ); }; const useTypingTrigger = (text: string, channel: SendbirdBaseChannel) => { if (channel.isGroupChannel()) { useEffect(() => { if (text.length === 0) channel.endTyping(); else channel.startTyping(); }, [text]); } }; const useTextClearOnDisabled = (setText: (val: string) => void, chatDisabled: boolean) => { useEffect(() => { if (chatDisabled) setText(''); }, [chatDisabled]); }; const useAutoFocusOnEditMode = ( textInputRef: MutableRefObject, messageToEdit?: SendbirdBaseMessage, ) => { useEffect(() => { if (messageToEdit?.isUserMessage()) { if (!AUTO_FOCUS) setTimeout(() => textInputRef.current?.focus(), 500); } }, [messageToEdit]); }; const SafeAreaBottom = ({ height }: { height: number }) => { return ; }; const styles = createStyleSheet({ inputContainer: { justifyContent: 'center', width: '100%', }, inputDefault: { height: 56, }, }); export default React.memo(ChannelInput);