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';
|
2018-09-19 14:18:32 +00:00
|
|
|
import { RectButton } from 'react-native-gesture-handler';
|
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 {
|
|
|
|
COLOR_BACKGROUND_CONTAINER, COLOR_BORDER, COLOR_PRIMARY, COLOR_WHITE
|
|
|
|
} 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
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const onPress = (url) => {
|
2017-12-28 17:40:10 +00:00
|
|
|
openLink(url);
|
2017-12-02 13:19:58 +00:00
|
|
|
};
|
2018-09-11 16:32:52 +00:00
|
|
|
const Url = ({ url, index }) => {
|
2017-12-02 13:19:58 +00:00
|
|
|
if (!url) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
2018-09-19 14:18:32 +00:00
|
|
|
<RectButton
|
|
|
|
onPress={() => onPress(url.url)}
|
|
|
|
style={[styles.button, index > 0 && styles.marginTop, styles.container]}
|
|
|
|
activeOpacity={0.5}
|
2019-03-29 19:36:07 +00:00
|
|
|
underlayColor={COLOR_WHITE}
|
2018-09-19 14:18:32 +00:00
|
|
|
>
|
|
|
|
{url.image ? <FastImage source={{ uri: url.image }} style={styles.image} resizeMode={FastImage.resizeMode.cover} /> : null}
|
|
|
|
<View style={styles.textContainer}>
|
|
|
|
<Text style={styles.title} numberOfLines={2}>{url.title}</Text>
|
|
|
|
<Text style={styles.description} numberOfLines={2}>{url.description}</Text>
|
2017-12-02 13:19:58 +00:00
|
|
|
</View>
|
2018-09-19 14:18:32 +00:00
|
|
|
</RectButton>
|
2017-12-02 13:19:58 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
Url.propTypes = {
|
2018-09-11 16:32:52 +00:00
|
|
|
url: PropTypes.object.isRequired,
|
|
|
|
index: PropTypes.number
|
2017-12-02 13:19:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Url;
|