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
|
import React from 'react';
import {
FlatList,
View,
Image,
TouchableOpacity,
} from 'react-native';
import {
RkCard, RkStyleSheet,
RkText,
} from 'react-native-ui-kitten';
import { Avatar } from '../../components';
import { data } from '../../data';
import NavigationType from '../../config/navigation/propTypes';
const moment = require('moment');
export class Blogposts extends React.Component {
static propTypes = {
navigation: NavigationType.isRequired,
};
static navigationOptions = {
title: 'Blogposts'.toUpperCase(),
};
state = {
data: data.getArticles('post'),
};
extractItemKey = (item) => `${item.id}`;
onItemPressed = (item) => {
this.props.navigation.navigate('Article', { id: item.id });
};
renderItem = ({ item }) => (
<TouchableOpacity
delayPressIn={70}
activeOpacity={0.8}
onPress={() => this.onItemPressed(item)}>
<RkCard rkType='blog' style={styles.card}>
<Image rkCardImg source={item.photo} />
<View rkCardHeader style={styles.content}>
<RkText style={styles.section} rkType='header4'>{item.title}</RkText>
</View>
<View rkCardContent>
<View>
<RkText rkType='primary3 mediumLine' numberOfLines={2}>{item.text}</RkText>
</View>
</View>
<View rkCardFooter>
<View style={styles.userInfo}>
<Avatar style={styles.avatar} rkType='circle small' img={item.user.photo} />
<RkText rkType='header6'>{`${item.user.firstName} ${item.user.lastName}`}</RkText>
</View>
<RkText rkType='secondary2 hintColor'>{moment().add(item.time, 'seconds').fromNow()}</RkText>
</View>
</RkCard>
</TouchableOpacity>
);
render = () => (
<FlatList
data={this.state.data}
renderItem={this.renderItem}
keyExtractor={this.extractItemKey}
style={styles.container}
/>
);
}
const styles = RkStyleSheet.create(theme => ({
container: {
backgroundColor: theme.colors.screen.scroll,
paddingVertical: 8,
paddingHorizontal: 14,
},
card: {
marginVertical: 8,
},
userInfo: {
flexDirection: 'row',
alignItems: 'center',
},
avatar: {
marginRight: 17,
},
}));
|