-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathListItem.js
120 lines (117 loc) · 2.95 KB
/
ListItem.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { StyleSheet, View, Text, TouchableOpacity } from 'react-native';
import ViennaPropTypes from '../../PropTypes';
import { FontAwesome as Icon } from '@expo/vector-icons';
import ConfirmButton from '../ConfirmButton';
import RichItem from '../General/RichItem';
import { getBrandColor, getSemanticColor, getSystemColor } from '../../theme';
const styles = StyleSheet.create( {
container: {},
title: {
margin: 15,
height: 25,
},
dateText: {
fontSize: 12,
color: '#999',
},
date: {
marginLeft: 15,
marginRight: 15,
marginTop: 5,
},
actions: {
flexDirection: 'row',
marginLeft: 45,
},
actionsButton: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
marginRight: 10,
},
actionsButtonText: {
textAlign: 'center',
padding: 5,
fontSize: 14,
color: getSemanticColor( 'secondaryLabel' ),
},
featuredMedia: {
height: 180,
flex: 1,
marginBottom: 5,
},
webView: {
marginLeft: 10,
marginRight: 10,
},
} );
export default class ListItem extends Component {
static propTypes = {
post: ViennaPropTypes.Post.isRequired,
onEdit: PropTypes.func,
onView: PropTypes.func,
onTrash: PropTypes.func,
featuredMedia: ViennaPropTypes.Media,
author: ViennaPropTypes.User,
};
constructor( props ) {
super( props );
this.state = { webViewHeight: 100 };
}
render() {
return (
<View style={ styles.container }>
<RichItem
title={ this.props.post.title.rendered }
content={ this.props.post.excerpt.rendered }
avatarUrl={
this.props.author ? this.props.author.avatar_urls['96'] : null
}
imageUrl={
this.props.featuredMedia
? this.props.featuredMedia.media_details.sizes.medium.source_url
: null
}
/>
<View style={ styles.actions }>
{ this.props.onEdit ? (
<TouchableOpacity
style={ styles.actionsButton }
onPress={ this.props.onEdit }
>
<View style={ styles.actionsButton }>
<Icon name="pencil" size={ 14 } color={ getSemanticColor( 'secondaryLabel' )} />
<Text style={ styles.actionsButtonText }>Edit</Text>
</View>
</TouchableOpacity>
) : null }
{ this.props.onView ? (
<TouchableOpacity
style={ styles.actionsButton }
onPress={ this.props.onView }
>
<View style={ styles.actionsButton }>
<Icon name="external-link" size={ 14 } color={ getSemanticColor( 'secondaryLabel' )} />
<Text style={ styles.actionsButtonText }>View</Text>
</View>
</TouchableOpacity>
) : null }
{ this.props.onTrash ? (
<ConfirmButton
style={ styles.actionsButton }
onPress={ this.props.onTrash }
text="Trash"
textStyle={ styles.actionsButtonText }
confirmText="Confirm"
confirmTextStyle={ styles.actionsButtonText }
icon="trash"
confirmIcon="check"
/>
) : null }
</View>
</View>
);
}
}