SPHeaderCell.js
1.83 KB
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
import React, {Component} from 'react';
import {
View,
Text,
Image,
StyleSheet,
} from 'react-native'
import UserBrief from '../home/UserBrief';
import SectionItem from '../home/SectionItem';
export default class SPHeaderCell extends Component {
constructor(props) {
super(props);
}
render() {
let {avatar, nickName, timeago, isOwner, sectionName, showLZ} = this.props;
return (
<View style={styles.container}>
<View style={styles.top}>
<UserBrief
avatar={avatar}
name={nickName}
timeago={timeago}
isOwner={isOwner||showLZ}
onPressAvatar={this.props.onPressAvatar}
/>
<SectionItem
name={sectionName}
onPressSection={this.props.onPressSection}
/>
</View>
<View style={styles.bottom}>
<Text
style={styles.operateText}
onPress={() => {
this.props.onPressReportOrDelete && this.props.onPressReportOrDelete();
}}
>
{isOwner ? '删除本帖' : '举报'}
</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flexDirection: 'column',
paddingTop: 15,
backgroundColor: 'white',
marginLeft: 15,
marginRight: 15,
},
top: {
flexDirection: 'row',
justifyContent: 'space-between',
},
bottom: {
marginTop: 15,
},
operateText: {
color: '#4a90e2',
fontSize: 12,
},
});