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

47 lines
1.3 KiB
TypeScript
Raw Normal View History

import React from 'react';
import { Text } from 'react-native';
import Clipboard from '@react-native-clipboard/clipboard';
import styles from './styles';
import { themes } from '../../lib/constants';
2020-02-14 13:39:42 +00:00
import { LISTENER } from '../Toast';
import EventEmitter from '../../lib/methods/helpers/events';
2020-02-14 13:39:42 +00:00
import I18n from '../../i18n';
import openLink from '../../lib/methods/helpers/openLink';
import { TOnLinkPress } from './interfaces';
import { TSupportedThemes } from '../../theme';
interface ILink {
children: React.ReactElement | null;
link: string;
theme: TSupportedThemes;
onLinkPress?: TOnLinkPress;
}
const Link = React.memo(({ children, link, theme, onLinkPress }: ILink) => {
const handlePress = () => {
if (!link) {
return;
}
if (onLinkPress) {
return onLinkPress(link);
}
openLink(link, theme);
};
const childLength = React.Children.toArray(children).filter(o => o).length;
2020-02-14 13:39:42 +00:00
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 (
feat: mobile color normalization (#5616) * chore: remove auxiliaryText color * chore: remove titleText * chore: password colors change * chore: use fontDefault on ActionSheet item * wip: type * chore: set custom icon default color * remove tintActive color * only set color when checked * remove icon color * remove tintActive * chore: remove STATUS_COLORS * chore: remove mentions colors * chore: remove switch color * chore: background color * chore: auxiliaryBackground * chore: one local colors * wip: some colors * wip: colors * wip: colors * wip: end colors * test: update * chore: fix some colors * chore: fix lint * chore: back to text props * chore: fix ts errors * revert * chore: fix lint * test: update snapshot * update storybook * cocoapods * fix app theme color * remove unused color * fix login service button color * remove unused color * unused backgroundColor * fix background color * fix transparent color * fix background color * wip: key * fix color * chore: revert to 1 tick * test: update * chore: use same color as front end * test: update * fix radius * fix background color * fix wrong color * change some colors * chore: update stories * chore: fix button style * chore: fix item color * lint * update snapshot * link * remove background color * change send to channel color * call icons * video conf colors * fix app default color * bottom sheet * remove background * two factor color * update tests * feat: add force-logout stream listener * remove icon colors * improve badge color * update tests * fix header colors * fix collapsible icon color * imagePreview color * wip * update test * lint --------- Co-authored-by: Diego Mello <diegolmello@gmail.com>
2024-04-18 10:19:54 +00:00
<Text onPress={handlePress} onLongPress={onLongPress} style={{ ...styles.link, color: themes[theme].fontHint }}>
{childLength !== 0 ? children : link}
</Text>
);
});
export default Link;