65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import React, { useContext } from 'react';
|
|
import { Text } from 'react-native';
|
|
import { Link as LinkProps } from '@rocket.chat/message-parser';
|
|
import Clipboard from '@react-native-clipboard/clipboard';
|
|
|
|
import styles from '../styles';
|
|
import I18n from '../../../i18n';
|
|
import { LISTENER } from '../../Toast';
|
|
import { useTheme } from '../../../theme';
|
|
import openLink from '../../../lib/methods/helpers/openLink';
|
|
import EventEmitter from '../../../lib/methods/helpers/events';
|
|
import { themes } from '../../../lib/constants';
|
|
import Strike from './Strike';
|
|
import Italic from './Italic';
|
|
import Bold from './Bold';
|
|
import MarkdownContext from './MarkdownContext';
|
|
|
|
interface ILinkProps {
|
|
value: LinkProps['value'];
|
|
}
|
|
|
|
const Link = ({ value }: ILinkProps) => {
|
|
const { theme } = useTheme();
|
|
const { onLinkPress } = useContext(MarkdownContext);
|
|
const { src, label } = value;
|
|
const handlePress = () => {
|
|
if (!src.value) {
|
|
return;
|
|
}
|
|
if (onLinkPress) {
|
|
return onLinkPress(src.value);
|
|
}
|
|
openLink(src.value, theme);
|
|
};
|
|
|
|
const onLongPress = () => {
|
|
Clipboard.setString(src.value);
|
|
EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') });
|
|
};
|
|
|
|
return (
|
|
<Text onPress={handlePress} onLongPress={onLongPress} style={[styles.link, { color: themes[theme].actionTintColor }]}>
|
|
{(block => {
|
|
const blockArray = Array.isArray(block) ? block : [block];
|
|
return blockArray.map(blockInArray => {
|
|
switch (blockInArray.type) {
|
|
case 'PLAIN_TEXT':
|
|
return blockInArray.value;
|
|
case 'STRIKE':
|
|
return <Strike value={blockInArray.value} />;
|
|
case 'ITALIC':
|
|
return <Italic value={blockInArray.value} />;
|
|
case 'BOLD':
|
|
return <Bold value={blockInArray.value} />;
|
|
default:
|
|
return null;
|
|
}
|
|
});
|
|
})(label)}
|
|
</Text>
|
|
);
|
|
};
|
|
|
|
export default Link;
|