Rocket.Chat.ReactNative/app/containers/markdown/Link.tsx

52 lines
1.3 KiB
TypeScript

import React from 'react';
import { Text } from 'react-native';
import Clipboard from '@react-native-clipboard/clipboard';
import styles from './styles';
import { LISTENER } from '../Toast';
import EventEmitter from '../../lib/methods/helpers/events';
import I18n from '../../i18n';
import openLink from '../../lib/methods/helpers/openLink';
import { TOnLinkPress } from './interfaces';
import { useTheme } from '../../theme';
interface ILink {
children: React.ReactElement | null;
link: string;
onLinkPress?: TOnLinkPress;
testID: string;
}
const Link = React.memo(({ children, link, onLinkPress, testID }: ILink) => {
const { colors, theme } = useTheme();
const handlePress = () => {
if (!link) {
return;
}
if (onLinkPress) {
return onLinkPress(link);
}
openLink(link, theme);
};
const childLength = React.Children.toArray(children).filter(o => o).length;
const onLongPress = () => {
Clipboard.setString(link);
EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') });
};
// if you have a [](https://rocket.chat) render https://rocket.chat
return (
<Text
onPress={handlePress}
onLongPress={onLongPress}
style={{ ...styles.link, color: colors.actionTintColor }}
testID={`${testID}-link`}>
{childLength !== 0 ? children : link}
</Text>
);
});
export default Link;