vn-verdnaturachat/app/containers/markdown/Link.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
2020-02-14 13:39:42 +00:00
import { Text, Clipboard } from 'react-native';
import styles from './styles';
2019-12-04 16:39:53 +00:00
import { themes } from '../../constants/colors';
import openLink from '../../utils/openLink';
2020-02-14 13:39:42 +00:00
import { LISTENER } from '../Toast';
import EventEmitter from '../../utils/events';
import I18n from '../../i18n';
const Link = React.memo(({
2019-12-04 16:39:53 +00:00
children, link, preview, theme
}) => {
const handlePress = () => {
if (!link) {
return;
}
2019-12-04 16:39:53 +00:00
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 (
<Text
onPress={preview ? undefined : handlePress}
2020-02-14 13:39:42 +00:00
onLongPress={preview ? undefined : onLongPress}
2019-12-04 16:39:53 +00:00
style={
!preview
? { ...styles.link, color: themes[theme].actionTintColor }
2019-12-17 14:08:06 +00:00
: { color: themes[theme].bodyText }
2019-12-04 16:39:53 +00:00
}
>
{ childLength !== 0 ? children : link }
</Text>
);
});
Link.propTypes = {
children: PropTypes.node,
link: PropTypes.string,
2019-12-04 16:39:53 +00:00
theme: PropTypes.string,
preview: PropTypes.bool
};
export default Link;