-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathList.js
151 lines (139 loc) · 3.82 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import React, { Component } from 'react';
import {
StyleSheet,
View,
RefreshControl,
ActivityIndicator,
Text,
Linking,
} from 'react-native';
import { isEmpty } from 'lodash';
import { connect } from 'react-redux';
import { trashPost, fetchPosts, updatePostfilter } from '../../actions';
import PostsList from '../../components/Posts/List';
import MediaList from '../../components/Media/List';
import Filter from '../../components/Posts/Filter';
import ListError from '../../components/General/ListError';
import NavigationButton from '../../components/Navigation/Button';
import { getSemanticColor } from '../../theme';
const styles = StyleSheet.create( {
creating: {
flexDirection: 'row',
justifyContent: 'center',
paddingBottom: 5,
backgroundColor: '#2E73B0',
},
creatingText: {
marginLeft: 5,
lineHeight: 17,
color: 'rgba(255,255,255,.3)',
},
} );
class List extends Component {
componentDidMount() {
this.props.navigation.setOptions( {
headerRight: () => (
<NavigationButton
onPress={ () => {
this.props.navigation.navigate( 'PostsAdd', {
type: this.props.route.params.type,
} );
} }
>
Add New
</NavigationButton>
),
} );
setTimeout( () => {
let posts = this.props.types[this.props.route.params.type.slug]
.posts;
if ( isEmpty( posts ) ) {
this.props.dispatch(
fetchPosts( { type: this.props.route.params.type.slug } ),
);
}
}, 400 );
}
onRefresh() {
this.props.dispatch(
fetchPosts( { type: this.props.route.params.type.slug } ),
);
}
onSelectPost( post ) {
this.props.navigation.navigate( 'PostsEdit', {
post: post,
type: this.props.route.params.type,
} );
}
onViewPost( post ) {
Linking.openURL( post.link ).catch( err => {
// eslint-disable-next-line no-console
console.error( 'An error occurred', err );
} );
}
onChangeFilter( filter ) {
this.props.dispatch( updatePostfilter( this.props.route.params.type.slug, filter ) );
}
filterPosts( post ) {
let type = this.props.types[this.props.route.params.type.slug];
if ( type.list.filter.status === 'all' ) {
return true;
}
return type.list.filter.status === post.status;
}
render() {
let type = this.props.route.params.type;
let posts = type.posts;
const componentMap = {
attachment: MediaList,
};
let ListComponent = componentMap[
this.props.route.params.type.slug
]
? componentMap[this.props.route.params.type.slug]
: PostsList;
return (
<View style={ { flex: 1 } }>
{ type.list.isShowingFilter ? (
<Filter
filter={ type.list.filter }
onChange={ this.onChangeFilter.bind( this ) }
/>
) : null }
{ type.new.loading ? (
<View style={ styles.creating }>
<ActivityIndicator />
<Text style={ styles.creatingText }>Creating { type.name }</Text>
</View>
) : null }
{ type.list.lastError ? <ListError error={ type.list.lastError } /> : null }
<ListComponent
refreshControl={
<RefreshControl
refreshing={ type.list.loading }
style={ { backgroundColor: 'transparent' } }
onRefresh={ this.onRefresh.bind( this ) }
tintColor={ getSemanticColor( 'secondaryLabel' ) }
title={
type.list.loading
? 'Loading ' + type.name + '...'
: 'Pull to Refresh...'
}
titleColor={ getSemanticColor( 'label' ) }
/>
}
posts={ Object.values( posts ).filter( this.filterPosts.bind( this ) ) }
users={ this.props.users.users }
media={ this.props.types.attachment.posts }
onEdit={ post => this.onSelectPost( post ) }
onView={ post => this.onViewPost( post ) }
onTrash={ post => this.props.dispatch( trashPost( post ) ) }
/>
</View>
);
}
}
export default connect( state => ( {
...state,
...( state.activeSite.id ? state.sites[state.activeSite.id].data : null ),
} ) )( List );