2017-12-02 13:19:58 +00:00
|
|
|
import React from 'react';
|
2018-09-11 16:32:52 +00:00
|
|
|
import { View, Text, StyleSheet } from 'react-native';
|
2017-12-02 13:19:58 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-09-11 16:32:52 +00:00
|
|
|
import FastImage from 'react-native-fast-image';
|
2019-04-08 12:35:28 +00:00
|
|
|
import Touchable from 'react-native-platform-touchable';
|
2019-05-03 13:29:56 +00:00
|
|
|
import isEqual from 'lodash/isEqual';
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2017-12-28 17:40:10 +00:00
|
|
|
import openLink from '../../utils/openLink';
|
2019-03-29 19:36:07 +00:00
|
|
|
import sharedStyles from '../../views/Styles';
|
|
|
|
import {
|
2019-04-08 12:35:28 +00:00
|
|
|
COLOR_BACKGROUND_CONTAINER, COLOR_BORDER, COLOR_PRIMARY
|
2019-03-29 19:36:07 +00:00
|
|
|
} from '../../constants/colors';
|
2017-12-02 13:19:58 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
button: {
|
2019-03-01 16:49:11 +00:00
|
|
|
marginTop: 6
|
2017-12-02 13:19:58 +00:00
|
|
|
},
|
2018-09-11 16:32:52 +00:00
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
borderRadius: 4,
|
2019-03-29 19:36:07 +00:00
|
|
|
backgroundColor: COLOR_BACKGROUND_CONTAINER,
|
|
|
|
borderColor: COLOR_BORDER,
|
2019-03-01 16:49:11 +00:00
|
|
|
borderWidth: 1
|
2017-12-02 13:19:58 +00:00
|
|
|
},
|
|
|
|
textContainer: {
|
|
|
|
flex: 1,
|
|
|
|
flexDirection: 'column',
|
2018-09-11 16:32:52 +00:00
|
|
|
padding: 15,
|
2017-12-02 13:19:58 +00:00
|
|
|
justifyContent: 'flex-start',
|
|
|
|
alignItems: 'flex-start'
|
|
|
|
},
|
|
|
|
title: {
|
2019-03-29 19:36:07 +00:00
|
|
|
color: COLOR_PRIMARY,
|
|
|
|
fontSize: 16,
|
|
|
|
...sharedStyles.textMedium
|
2017-12-02 13:19:58 +00:00
|
|
|
},
|
|
|
|
description: {
|
2018-09-11 16:32:52 +00:00
|
|
|
fontSize: 16,
|
2019-03-29 19:36:07 +00:00
|
|
|
...sharedStyles.textColorDescription,
|
|
|
|
...sharedStyles.textRegular
|
2018-09-11 16:32:52 +00:00
|
|
|
},
|
|
|
|
marginTop: {
|
|
|
|
marginTop: 4
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
width: '100%',
|
|
|
|
height: 150,
|
|
|
|
borderTopLeftRadius: 4,
|
|
|
|
borderTopRightRadius: 4
|
2017-12-02 13:19:58 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-05-03 13:29:56 +00:00
|
|
|
const UrlImage = React.memo(({ image, user, baseUrl }) => {
|
|
|
|
if (!image) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
image = image.includes('http') ? image : `${ baseUrl }/${ image }?rc_uid=${ user.id }&rc_token=${ user.token }`;
|
|
|
|
return <FastImage source={{ uri: image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} />;
|
2019-05-20 20:43:50 +00:00
|
|
|
}, (prevProps, nextProps) => prevProps.image === nextProps.image);
|
2019-05-03 13:29:56 +00:00
|
|
|
|
|
|
|
const UrlContent = React.memo(({ title, description }) => (
|
|
|
|
<View style={styles.textContainer}>
|
|
|
|
{title ? <Text style={styles.title} numberOfLines={2}>{title}</Text> : null}
|
|
|
|
{description ? <Text style={styles.description} numberOfLines={2}>{description}</Text> : null}
|
|
|
|
</View>
|
2019-05-20 20:43:50 +00:00
|
|
|
), (prevProps, nextProps) => {
|
|
|
|
if (prevProps.title !== nextProps.title) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (prevProps.description !== nextProps.description) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
2019-05-03 13:29:56 +00:00
|
|
|
|
|
|
|
const Url = React.memo(({
|
|
|
|
url, index, user, baseUrl
|
|
|
|
}) => {
|
2017-12-02 13:19:58 +00:00
|
|
|
if (!url) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-05-03 13:29:56 +00:00
|
|
|
|
|
|
|
const onPress = () => openLink(url.url);
|
|
|
|
|
2017-12-02 13:19:58 +00:00
|
|
|
return (
|
2019-04-08 12:35:28 +00:00
|
|
|
<Touchable
|
2019-05-03 13:29:56 +00:00
|
|
|
onPress={onPress}
|
2018-09-19 14:18:32 +00:00
|
|
|
style={[styles.button, index > 0 && styles.marginTop, styles.container]}
|
2019-04-08 12:35:28 +00:00
|
|
|
background={Touchable.Ripple('#fff')}
|
2018-09-19 14:18:32 +00:00
|
|
|
>
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-05-03 13:29:56 +00:00
|
|
|
<UrlImage image={url.image} user={user} baseUrl={baseUrl} />
|
|
|
|
<UrlContent title={url.title} description={url.description} />
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-04-08 12:35:28 +00:00
|
|
|
</Touchable>
|
2017-12-02 13:19:58 +00:00
|
|
|
);
|
2019-05-03 13:29:56 +00:00
|
|
|
}, (oldProps, newProps) => isEqual(oldProps.url, newProps.url));
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
const Urls = React.memo(({ urls, user, baseUrl }) => {
|
|
|
|
if (!urls || urls.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return urls.map((url, index) => (
|
|
|
|
<Url url={url} key={url.url} index={index} user={user} baseUrl={baseUrl} />
|
|
|
|
));
|
|
|
|
}, (oldProps, newProps) => isEqual(oldProps.urls, newProps.urls));
|
|
|
|
|
2019-05-03 13:29:56 +00:00
|
|
|
UrlImage.propTypes = {
|
|
|
|
image: PropTypes.string,
|
|
|
|
user: PropTypes.object,
|
|
|
|
baseUrl: PropTypes.string
|
|
|
|
};
|
2019-05-20 20:43:50 +00:00
|
|
|
UrlImage.displayName = 'MessageUrlImage';
|
2019-05-03 13:29:56 +00:00
|
|
|
|
|
|
|
UrlContent.propTypes = {
|
|
|
|
title: PropTypes.string,
|
|
|
|
description: PropTypes.string
|
2017-12-02 13:19:58 +00:00
|
|
|
};
|
2019-05-20 20:43:50 +00:00
|
|
|
UrlContent.displayName = 'MessageUrlContent';
|
2017-12-02 13:19:58 +00:00
|
|
|
|
|
|
|
Url.propTypes = {
|
2018-09-11 16:32:52 +00:00
|
|
|
url: PropTypes.object.isRequired,
|
2019-05-03 13:29:56 +00:00
|
|
|
index: PropTypes.number,
|
|
|
|
user: PropTypes.object,
|
|
|
|
baseUrl: PropTypes.string
|
2017-12-02 13:19:58 +00:00
|
|
|
};
|
2019-05-20 20:43:50 +00:00
|
|
|
Url.displayName = 'MessageUrl';
|
|
|
|
|
|
|
|
Urls.propTypes = {
|
|
|
|
urls: PropTypes.array,
|
|
|
|
user: PropTypes.object,
|
|
|
|
baseUrl: PropTypes.string
|
|
|
|
};
|
|
|
|
Urls.displayName = 'MessageUrls';
|
2017-12-02 13:19:58 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
export default Urls;
|