-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReadingListRow.js
59 lines (55 loc) · 1.26 KB
/
ReadingListRow.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
'use strict';
var React = require('react-native');
var {
StyleSheet,
View,
TouchableHighlight,
Text,
Image,
} = React;
var ReadingListRow = React.createClass({
render: function() {
return (
<TouchableHighlight underlayColor={'rgba(0, 0, 0, 0.1)'} onPress={this.props.onSelect}>
<View style={styles.container}>
<Image
source={{uri: this.props.link.image}}
style={styles.linkImage}
/>
<View style={styles.textContainer}>
<Text style={styles.linkTitle} numberOfLines={2}>{this.props.link.title}</Text>
<Text style={styles.linkHost}>{this.props.link.host}</Text>
</View>
</View>
</TouchableHighlight>
);
},
});
var styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'row',
alignItems: 'center',
paddingHorizontal: 10,
paddingVertical: 5,
borderBottomWidth: 0.5,
borderBottomColor: 'rgba(0, 0, 0, 0.1)',
},
linkImage: {
backgroundColor: '#dddddd',
width: 60,
height: 60,
marginRight: 10,
},
textContainer: {
flex: 1,
justifyContent: 'flex-start',
},
linkTitle: {
fontWeight: 'bold',
},
linkHost: {
color: '#999999',
},
});
module.exports = ReadingListRow;