tooot/src/components/Parse/Emojis.tsx

101 lines
3.3 KiB
TypeScript
Raw Normal View History

import CustomText from '@components/Text'
2021-03-27 00:02:32 +01:00
import { useAccessibility } from '@utils/accessibility/AccessibilityManager'
import { useGlobalStorage } from '@utils/storage/actions'
2021-03-10 11:49:14 +01:00
import { StyleConstants } from '@utils/styles/constants'
import { adaptiveScale } from '@utils/styles/scaling'
2021-01-19 01:13:45 +01:00
import { useTheme } from '@utils/styles/ThemeManager'
2022-12-19 23:06:39 +01:00
import React from 'react'
import { Platform, TextStyle } from 'react-native'
2021-03-27 00:02:32 +01:00
import FastImage from 'react-native-fast-image'
import validUrl from 'valid-url'
2021-01-01 16:48:16 +01:00
const regexEmoji = new RegExp(/(:[A-Za-z0-9_]+:)/)
export interface Props {
2022-12-22 18:38:04 +01:00
content?: string
2021-01-01 16:48:16 +01:00
emojis?: Mastodon.Emoji[]
size?: 'S' | 'M' | 'L'
2021-03-10 10:22:53 +01:00
adaptiveSize?: boolean
2021-01-01 16:48:16 +01:00
fontBold?: boolean
style?: TextStyle
2021-01-01 16:48:16 +01:00
}
2021-02-01 02:16:53 +01:00
const ParseEmojis = React.memo(
({ content, emojis, size = 'M', adaptiveSize = false, fontBold = false, style }: Props) => {
2022-12-22 18:38:04 +01:00
if (!content) return null
2021-03-27 00:02:32 +01:00
const { reduceMotionEnabled } = useAccessibility()
const [adaptiveFontsize] = useGlobalStorage.number('app.font_size')
2021-03-10 10:22:53 +01:00
const adaptedFontsize = adaptiveScale(
StyleConstants.Font.Size[size],
adaptiveSize ? adaptiveFontsize : 0
)
const adaptedLineheight = adaptiveScale(
StyleConstants.Font.LineHeight[size],
adaptiveSize ? adaptiveFontsize : 0
)
2022-02-12 14:51:01 +01:00
const { colors, theme } = useTheme()
2021-01-01 16:48:16 +01:00
2021-02-01 02:16:53 +01:00
return (
2022-12-19 23:06:39 +01:00
<CustomText
style={[
{
color: colors.primaryDefault,
fontSize: adaptedFontsize,
lineHeight: adaptedLineheight
},
style
]}
fontWeight={fontBold ? 'Bold' : undefined}
>
2021-02-01 02:16:53 +01:00
{emojis ? (
content
.split(regexEmoji)
.filter(f => f)
.map((str, i) => {
if (str.match(regexEmoji)) {
const emojiShortcode = str.split(regexEmoji)[1]
const emojiIndex = emojis.findIndex(emoji => {
return emojiShortcode === `:${emoji.shortcode}:`
})
if (emojiIndex === -1) {
2022-12-11 14:08:27 +01:00
return <CustomText key={emojiShortcode + i}>{emojiShortcode}</CustomText>
} else {
2021-04-11 11:25:40 +02:00
const uri = reduceMotionEnabled
? emojis[emojiIndex].static_url
: emojis[emojiIndex].url
if (validUrl.isHttpsUri(uri)) {
return (
<CustomText key={emojiShortcode + i}>
2021-05-30 22:12:22 +02:00
{i === 0 ? ' ' : undefined}
2022-12-19 23:06:39 +01:00
<FastImage
source={{ uri }}
style={{
width: adaptedFontsize,
height: adaptedFontsize,
transform: [{ translateY: Platform.OS === 'ios' ? -1 : 2 }]
}}
/>
</CustomText>
2021-04-11 11:25:40 +02:00
)
} else {
2021-04-11 11:25:40 +02:00
return null
}
}
2021-02-01 02:16:53 +01:00
} else {
return <CustomText key={i}>{str}</CustomText>
2021-02-01 02:16:53 +01:00
}
})
) : (
<CustomText>{content}</CustomText>
2021-02-01 02:16:53 +01:00
)}
</CustomText>
2021-02-01 02:16:53 +01:00
)
},
2022-12-22 01:21:51 +01:00
(prev, next) => prev.content === next.content && prev.style?.color === next.style?.color
2021-02-01 02:16:53 +01:00
)
2021-01-01 16:48:16 +01:00
2021-02-01 02:16:53 +01:00
export default ParseEmojis