-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathList.js
51 lines (48 loc) · 1.38 KB
/
List.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
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { ScrollView, View, StyleSheet } from 'react-native';
import ViennaPropTypes from '../../PropTypes';
import ListItem from './ListItem';
import { getSemanticColor } from '../../theme';
const styles = StyleSheet.create( {
listItem: {
padding: 15,
borderBottomColor: getSemanticColor( 'separator' ),
borderBottomWidth: 1,
},
} );
export default class List extends Component {
static propTypes = {
posts: PropTypes.arrayOf( ViennaPropTypes.Post ).isRequired,
onEdit: PropTypes.func,
onView: PropTypes.func,
onTrash: PropTypes.func,
media: PropTypes.objectOf( ViennaPropTypes.Media ),
users: PropTypes.objectOf( ViennaPropTypes.User ),
};
render() {
let posts = this.props.posts;
return (
<ScrollView refreshControl={ this.props.refreshControl }>
{ posts.map( post => {
return (
<View style={ styles.listItem } key={ post.id }>
<ListItem
post={ post }
featuredMedia={
post.featured_media
? this.props.media[post.featured_media]
: null
}
onEdit={ this.props.onEdit.bind( this, post ) }
onView={ this.props.onView.bind( this, post ) }
onTrash={ this.props.onTrash.bind( this, post ) }
author={ this.props.users[post.author] }
/>
</View>
);
} ) }
</ScrollView>
);
}
}