I am using react-native-gifted-chat
for chat UI in my project and I am looking for how to use renderQuickReplies
and QuickReplySend
function in react-native.
<GiftedChat
messages={messages}
placeholder="Any pick-up notes?"
onSend={messages => {
dispatch({
type: 'private_message',
data: {
message: messages[0],
conversationId: userId,
},
});
dispatch({
type: 'server/private_message',
data: {message: messages[0], conversationId: userId},
});
}}
renderBubble={renderBubble}
renderSend={renderSend}
isTyping={true}
renderInputToolbar={renderInputToolbar}
renderAvatar={renderAvatar}
scrollToBottom={true}
renderQuickReplies={renderQuickReplies(quickReplies)}
alignTop={true}
user={{
_id: selfUser.userId,
}}
/>
i use renderQuickreplies in
renderBubble
prop. If you want to customize the chat components it can get REALLY complicated. But here's my example of how it might look:I use custom message type extended from default Gifted Chat's message:
GiftedChat:
RenderComponents:
} };
export default RenderComponents;
and finally the custom Chat message bubble for when the message type is 'QUICKREPLIES' , it goes through another animation layer which i will not be copying here, its just bunch of animation functions, but finally renders this Component which is basically just a View box with some custom styled Buttons:
I know that this might look like bunch of blocks of code. But the underlying idea is that you can completely custom render the
renderBubble
prop in GiftedChat component. but you need to figure out a way to switch between default bubbles and the ones that you have custom created. in my case i added 'type' property to my messge object and made a switch for different types of messages.