61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import React, { useContext } from 'react';
|
|
import { Text, Clipboard } from 'react-native';
|
|
import { Link as LinkProps } from '@rocket.chat/message-parser';
|
|
|
|
import styles from '../styles';
|
|
import I18n from '../../../i18n';
|
|
import { LISTENER } from '../../Toast';
|
|
import { useTheme } from '../../../theme';
|
|
import openLink from '../../../utils/openLink';
|
|
import EventEmitter from '../../../utils/events';
|
|
import { themes } from '../../../constants/colors';
|
|
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): JSX.Element => {
|
|
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 => {
|
|
switch (block.type) {
|
|
case 'PLAIN_TEXT':
|
|
return block.value;
|
|
case 'STRIKE':
|
|
return <Strike value={block.value} />;
|
|
case 'ITALIC':
|
|
return <Italic value={block.value} />;
|
|
case 'BOLD':
|
|
return <Bold value={block.value} />;
|
|
default:
|
|
return null;
|
|
}
|
|
})(label)}
|
|
</Text>
|
|
);
|
|
};
|
|
|
|
export default Link;
|