tooot/src/components/ParseContent.jsx

120 lines
3.0 KiB
React
Raw Normal View History

2020-10-28 00:02:37 +01:00
import React from 'react'
import PropTypes from 'prop-types'
2020-10-30 00:10:25 +01:00
import propTypesEmoji from 'src/prop-types/emoji'
import propTypesMention from 'src/prop-types/mention'
2020-10-28 00:02:37 +01:00
import { StyleSheet, Text } from 'react-native'
import HTMLView from 'react-native-htmlview'
import { useNavigation } from '@react-navigation/native'
2020-10-29 14:52:28 +01:00
import Emojis from 'src/components/Toot/Emojis'
2020-10-28 00:02:37 +01:00
function renderNode ({ node, index, navigation, mentions, showFullLink }) {
if (node.name == 'a') {
const classes = node.attribs.class
const href = node.attribs.href
if (classes) {
if (classes.includes('hashtag')) {
return (
<Text
key={index}
style={styles.a}
onPress={() => {
const tag = href.split(new RegExp(/\/tag\/(.*)|\/tags\/(.*)/))
navigation.navigate('Hashtag', {
hashtag: tag[1] || tag[2]
})
}}
>
{node.children[0].data}
{node.children[1]?.children[0].data}
</Text>
)
} else if (classes.includes('mention')) {
return (
<Text
key={index}
style={styles.a}
onPress={() => {
const username = href.split(new RegExp(/@(.*)/))
const usernameIndex = mentions.findIndex(
m => m.username === username[1]
)
navigation.navigate('Account', {
id: mentions[usernameIndex].id
})
}}
>
{node.children[0].data}
{node.children[1]?.children[0].data}
</Text>
)
}
} else {
const domain = href.split(new RegExp(/:\/\/(.*?)\//))
return (
<Text
key={index}
style={styles.a}
onPress={() => {
navigation.navigate('Webview', {
uri: href,
domain: domain[1]
})
}}
>
{showFullLink ? href : domain[1]}
</Text>
)
}
}
}
export default function ParseContent ({
content,
emojis,
emojiSize = 14,
mentions,
2020-10-29 14:52:28 +01:00
showFullLink = false,
linesTruncated = 10
2020-10-28 00:02:37 +01:00
}) {
const navigation = useNavigation()
return (
<HTMLView
value={content}
stylesheet={HTMLstyles}
2020-10-29 14:52:28 +01:00
paragraphBreak={null}
2020-10-28 00:02:37 +01:00
renderNode={(node, index) =>
renderNode({ node, index, navigation, mentions, showFullLink })
}
TextComponent={({ children }) => (
<Emojis content={children} emojis={emojis} dimension={emojiSize} />
)}
2020-10-29 14:52:28 +01:00
RootComponent={({ children }) => {
return <Text numberOfLines={linesTruncated}>{children}</Text>
}}
2020-10-28 00:02:37 +01:00
/>
)
}
const styles = StyleSheet.create({
a: {
color: 'blue'
}
})
const HTMLstyles = StyleSheet.create({
p: {
marginBottom: 12
}
})
ParseContent.propTypes = {
content: PropTypes.string.isRequired,
2020-10-30 00:10:25 +01:00
emojis: PropTypes.arrayOf(propTypesEmoji),
2020-10-28 00:02:37 +01:00
emojiSize: PropTypes.number,
2020-10-30 00:10:25 +01:00
mentions: PropTypes.arrayOf(propTypesMention),
2020-10-29 14:52:28 +01:00
showFullLink: PropTypes.bool,
linesTruncated: PropTypes.number
2020-10-28 00:02:37 +01:00
}