-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #316 from homebase-id/rich-text-render-chat
Rich text render chat
- Loading branch information
Showing
8 changed files
with
864 additions
and
744 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
99 changes: 99 additions & 0 deletions
99
packages/mobile/src/components/Chat/ui/RenderBottomContainer.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
import { memo, useEffect } from 'react'; | ||
import { useDarkMode } from '../../../hooks/useDarkMode'; | ||
import Animated, { | ||
useSharedValue, | ||
useAnimatedStyle, | ||
withTiming, | ||
Easing, | ||
} from 'react-native-reanimated'; | ||
import { ImageLibrary, PaperClip } from '../../ui/Icons/icons'; | ||
import { Colors } from '../../../app/Colors'; | ||
import { Platform, View } from 'react-native'; | ||
import { TouchableHighlight } from 'react-native-gesture-handler'; | ||
import { Text } from '../../ui/Text/Text'; | ||
|
||
export const RenderBottomContainer = memo( | ||
({ | ||
isVisible, | ||
onGalleryPressed, | ||
onAttachmentPressed, | ||
}: { | ||
isVisible?: boolean; | ||
onGalleryPressed: () => void; | ||
onAttachmentPressed: () => void; | ||
}) => { | ||
const { isDarkMode } = useDarkMode(); | ||
const height = useSharedValue(0); | ||
useEffect(() => { | ||
if (isVisible) { | ||
height.value = 250; | ||
} else { | ||
height.value = 0; | ||
} | ||
}, [height, isVisible]); | ||
|
||
const animatedStyle = useAnimatedStyle(() => { | ||
return { | ||
height: withTiming(height.value, { duration: 150, easing: Easing.inOut(Easing.ease) }), | ||
opacity: withTiming(height.value > 0 ? 1 : 0, { duration: 300 }), | ||
}; | ||
}); | ||
|
||
return ( | ||
<Animated.View | ||
style={[ | ||
animatedStyle, | ||
{ | ||
height: Platform.select({ | ||
ios: 250, | ||
}), | ||
display: 'flex', | ||
flexDirection: 'row', | ||
backgroundColor: isDarkMode ? Colors.gray[900] : Colors.slate[50], | ||
}, | ||
]} | ||
> | ||
<MediaPickerComponent icon={<ImageLibrary />} onPress={onGalleryPressed} title="Gallery" /> | ||
<MediaPickerComponent | ||
icon={<PaperClip />} | ||
onPress={onAttachmentPressed} | ||
title="Attachment" | ||
/> | ||
</Animated.View> | ||
); | ||
} | ||
); | ||
|
||
const MediaPickerComponent = ({ | ||
icon, | ||
onPress, | ||
title, | ||
}: { | ||
icon: React.ReactNode; | ||
onPress: () => void; | ||
title: string; | ||
}) => { | ||
const { isDarkMode } = useDarkMode(); | ||
return ( | ||
<View | ||
style={{ | ||
flex: 1, | ||
alignItems: 'center', | ||
}} | ||
> | ||
<TouchableHighlight | ||
onPress={onPress} | ||
underlayColor={isDarkMode ? Colors.indigo[900] : Colors.indigo[300]} | ||
style={{ | ||
padding: 18, | ||
borderRadius: 10, | ||
backgroundColor: isDarkMode ? Colors.indigo[800] : Colors.indigo[200], | ||
margin: 10, | ||
}} | ||
> | ||
{icon} | ||
</TouchableHighlight> | ||
<Text>{title}</Text> | ||
</View> | ||
); | ||
}; |
229 changes: 229 additions & 0 deletions
229
packages/mobile/src/components/Chat/ui/RenderBubble.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
import { tryJsonParse } from '@homebase-id/js-lib/helpers'; | ||
import { getPlainTextFromRichText } from 'homebase-id-app-common'; | ||
import { memo, useCallback } from 'react'; | ||
import { Pressable, View, Text } from 'react-native'; | ||
import { BubbleProps, IMessage, TimeProps, Time, Bubble } from 'react-native-gifted-chat'; | ||
import { uses24HourClock } from 'react-native-localize'; | ||
import { useDarkMode } from '../../../hooks/useDarkMode'; | ||
import { ChatDeletedArchivalStaus } from '../../../provider/chat/ChatProvider'; | ||
import { isEmojiOnly } from '../../../utils/utils'; | ||
import { Colors } from '../../../app/Colors'; | ||
import { useBubbleContext } from '../../BubbleContext/useBubbleContext'; | ||
import { ChatDeliveryIndicator } from '../Chat-Delivery-Indicator'; | ||
import { ChatMessageIMessage } from '../ChatDetail'; | ||
|
||
export const RenderBubble = memo( | ||
( | ||
props: { | ||
onReactionClick: (message: ChatMessageIMessage) => void; | ||
onRetryClick: (message: ChatMessageIMessage) => void; | ||
} & Readonly<BubbleProps<IMessage>> | ||
) => { | ||
const { bubbleColor } = useBubbleContext(); | ||
const { isDarkMode } = useDarkMode(); | ||
|
||
const message = props.currentMessage as ChatMessageIMessage; | ||
const content = message?.fileMetadata.appData.content; | ||
|
||
const plainMessage = getPlainTextFromRichText(content.message); | ||
const onlyEmojis = isEmojiOnly(plainMessage); | ||
const isReply = !!content?.replyId; | ||
const showBackground = !onlyEmojis || isReply; | ||
|
||
const onRetryOpen = useCallback(() => { | ||
props.onRetryClick(message); | ||
}, [message, props]); | ||
|
||
const reactions = | ||
(message.fileMetadata.reactionPreview?.reactions && | ||
Object.values(message.fileMetadata.reactionPreview?.reactions).map((reaction) => { | ||
return tryJsonParse<{ emoji: string }>(reaction.reactionContent).emoji; | ||
})) || | ||
[]; | ||
const filteredEmojis = Array.from(new Set(reactions)); | ||
const hasReactions = (reactions && reactions?.length > 0) || false; | ||
|
||
// has pauload and no text but no audio payload | ||
const hasPayloadandNoText = | ||
message?.fileMetadata.payloads && | ||
message?.fileMetadata.payloads?.length > 0 && | ||
!content?.message && | ||
!message?.fileMetadata?.payloads?.some( | ||
(val) => val.contentType.startsWith('audio') || val.contentType.startsWith('application') | ||
); | ||
|
||
const deleted = message?.fileMetadata.appData.archivalStatus === ChatDeletedArchivalStaus; | ||
|
||
const renderTime = useCallback( | ||
(timeProp: TimeProps<ChatMessageIMessage>) => { | ||
const is24Hour = uses24HourClock(); | ||
return ( | ||
<Time | ||
{...timeProp} | ||
timeFormat={is24Hour ? 'HH:mm' : 'LT'} | ||
timeTextStyle={ | ||
!showBackground | ||
? { | ||
left: { | ||
color: isDarkMode ? Colors.white : Colors.black, | ||
fontSize: 12, | ||
}, | ||
right: { | ||
color: isDarkMode ? Colors.white : Colors.black, | ||
fontSize: 12, | ||
}, | ||
} | ||
: hasPayloadandNoText | ||
? { | ||
right: { | ||
color: Colors.slate[100], | ||
fontSize: 12, | ||
}, | ||
left: { | ||
color: Colors.slate[100], | ||
fontSize: 12, | ||
}, | ||
} | ||
: { | ||
right: { | ||
fontSize: 12, | ||
color: !isDarkMode ? Colors.slate[300] : Colors.slate[200], | ||
}, | ||
left: { | ||
fontSize: 12, | ||
}, | ||
} | ||
} | ||
/> | ||
); | ||
}, | ||
[hasPayloadandNoText, isDarkMode, showBackground] | ||
); | ||
|
||
return ( | ||
<Bubble | ||
{...props} | ||
renderTicks={(message: ChatMessageIMessage) => ( | ||
<ChatDeliveryIndicator msg={message} onPress={onRetryOpen} /> | ||
)} | ||
renderReactions={ | ||
!hasReactions || deleted | ||
? undefined | ||
: () => { | ||
const maxVisible = 2; | ||
const countExcludedFromView = reactions?.length | ||
? reactions?.length - maxVisible | ||
: 0; | ||
|
||
return ( | ||
<Pressable onPress={() => props.onReactionClick(message)}> | ||
<View | ||
style={{ | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
justifyContent: 'flex-start', | ||
padding: 4, | ||
borderRadius: 15, | ||
backgroundColor: isDarkMode ? Colors.gray[800] : Colors.gray[100], | ||
}} | ||
> | ||
{filteredEmojis?.slice(0, maxVisible).map((reaction, index) => { | ||
return ( | ||
<Text | ||
key={index} | ||
style={{ | ||
fontSize: 18, | ||
marginRight: 2, | ||
}} | ||
> | ||
{reaction} | ||
</Text> | ||
); | ||
})} | ||
{countExcludedFromView > 0 && ( | ||
<Text | ||
style={{ | ||
color: isDarkMode ? Colors.white : Colors.black, | ||
fontSize: 16, | ||
fontWeight: '500', | ||
marginRight: 2, | ||
}} | ||
> | ||
+{countExcludedFromView} | ||
</Text> | ||
)} | ||
</View> | ||
</Pressable> | ||
); | ||
} | ||
} | ||
renderTime={renderTime} | ||
tickStyle={{ | ||
color: isDarkMode ? Colors.white : hasPayloadandNoText ? Colors.white : Colors.black, | ||
}} | ||
textStyle={ | ||
showBackground | ||
? { | ||
left: { color: isDarkMode ? Colors.white : Colors.black }, | ||
// right: { color: isDarkMode ? Colors.white : Colors.black }, | ||
right: { color: Colors.white }, | ||
} | ||
: undefined | ||
} | ||
wrapperStyle={ | ||
!showBackground | ||
? { | ||
left: { | ||
backgroundColor: 'transparent', | ||
}, | ||
right: { | ||
backgroundColor: 'transparent', | ||
}, | ||
} | ||
: { | ||
left: { | ||
backgroundColor: isDarkMode ? `${Colors.gray[300]}4D` : `${Colors.gray[500]}1A`, | ||
minWidth: hasReactions ? 90 : undefined, | ||
justifyContent: 'flex-start', | ||
}, | ||
right: { | ||
backgroundColor: bubbleColor?.color, | ||
// backgroundColor: isDarkMode | ||
// ? `${bubbleColor?.color}33` | ||
// : `${bubbleColor?.color}1A`, | ||
// backgroundColor: isDarkMode | ||
// ? `${Colors.indigo[500]}33` | ||
// : `${Colors.indigo[500]}1A`, | ||
minWidth: hasReactions ? 90 : undefined, | ||
}, | ||
} | ||
} | ||
gradientWrapperStyle={ | ||
!showBackground | ||
? undefined | ||
: { | ||
right: bubbleColor?.gradient, | ||
} | ||
} | ||
bottomContainerStyle={ | ||
hasPayloadandNoText | ||
? { | ||
right: { | ||
position: 'absolute', | ||
bottom: 0, | ||
right: 0, | ||
zIndex: 10, | ||
}, | ||
left: { | ||
position: 'absolute', | ||
bottom: 0, | ||
left: 0, | ||
zIndex: 10, | ||
}, | ||
} | ||
: undefined | ||
} | ||
/> | ||
); | ||
} | ||
); |
Oops, something went wrong.