2022-02-17 15:27:01 +00:00
|
|
|
import React from 'react';
|
2022-03-25 17:20:09 +00:00
|
|
|
import { Text, TextStyle } from 'react-native';
|
2022-02-17 15:27:01 +00:00
|
|
|
import removeMarkdown from 'remove-markdown';
|
|
|
|
|
2022-06-06 14:17:51 +00:00
|
|
|
import shortnameToUnicode from '../../lib/methods/helpers/shortnameToUnicode';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { themes } from '../../lib/constants';
|
2022-02-17 15:27:01 +00:00
|
|
|
import { formatText } from './formatText';
|
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
import styles from './styles';
|
|
|
|
import { formatHyperlink } from './formatHyperlink';
|
|
|
|
|
|
|
|
interface IMarkdownPreview {
|
|
|
|
msg?: string;
|
|
|
|
numberOfLines?: number;
|
|
|
|
testID?: string;
|
2022-03-25 17:20:09 +00:00
|
|
|
style?: TextStyle[];
|
2022-02-17 15:27:01 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 17:20:09 +00:00
|
|
|
const MarkdownPreview = ({ msg, numberOfLines = 1, testID, style = [] }: IMarkdownPreview) => {
|
2022-04-11 18:01:43 +00:00
|
|
|
const { theme } = useTheme();
|
|
|
|
|
2022-02-17 15:27:01 +00:00
|
|
|
if (!msg) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let m = formatText(msg);
|
|
|
|
m = formatHyperlink(m);
|
|
|
|
m = shortnameToUnicode(m);
|
|
|
|
// Removes sequential empty spaces
|
|
|
|
m = m.replace(/\s+/g, ' ');
|
|
|
|
m = removeMarkdown(m);
|
|
|
|
m = m.replace(/\n+/g, ' ');
|
|
|
|
return (
|
|
|
|
<Text
|
|
|
|
accessibilityLabel={m}
|
|
|
|
style={[styles.text, { color: themes[theme].bodyText }, ...style]}
|
|
|
|
numberOfLines={numberOfLines}
|
2022-08-08 21:02:08 +00:00
|
|
|
testID={testID}
|
|
|
|
>
|
2022-02-17 15:27:01 +00:00
|
|
|
{m}
|
|
|
|
</Text>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MarkdownPreview;
|