-
Notifications
You must be signed in to change notification settings - Fork 427
/
Copy pathOrgItemBar.js
124 lines (110 loc) · 3.69 KB
/
OrgItemBar.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
import React, {Component} from 'react';
import {
View, Text, TouchableOpacity, StyleSheet
} from 'react-native';
import PropTypes from 'prop-types';
import styles from "../../style/index"
import * as Constant from "../../style/constant"
import IconC from 'react-native-vector-icons/Ionicons'
import UserImage from "./UserImage";
import {Actions} from 'react-native-router-flux';
import I18n from '../../style/i18n'
/**
* 组织bar
*/
const itemSize = 35;
class OrgItemBar extends Component {
constructor(props) {
super(props);
this.renderItem = this.renderItem.bind(this);
}
componentDidMount() {
}
componentWillUnmount() {
}
renderItem(data) {
return (
<TouchableOpacity style={[{height: itemSize, width: itemSize}, styles.centerH]}
onPress={() => {
data.itemClick && data.itemClick(data);
}}
key={data.login}>
<UserImage uri={data.avatar_url}
loginUser={data.login}
resizeMethod="scale"
style={[{
height: Constant.smallIconSize, width: Constant.smallIconSize,
borderRadius: Constant.smallIconSize / 2
}]}/>
</TouchableOpacity>
)
}
render() {
let {dataList} = this.props;
let items = [];
if (dataList.length > 0) {
let title =
<View
key={"title"}
style={[styles.centered, {
height: itemSize,
width: itemSize,
},]}>
<Text style={[styles.miLightSmallText]}>
{I18n("userOrg")}
</Text>
</View>;
items.push(title)
}
dataList.forEach((data) => {
items.push(this.renderItem(data));
});
let more =
<TouchableOpacity
style={[styles.shadowCard, {
shadowColor: Constant.subLightTextColor,
margin: 5,
padding: 5,
height: Constant.smallIconSize, width: Constant.smallIconSize,
borderRadius: (Constant.smallIconSize) / 2,
}, styles.centered]}
key={"more"}
onPress={() => {
Actions.ListPage({
dataType: 'user_orgs', showType: 'org',
currentUser: this.props.ownerName,
title: this.props.ownerName + " - " + I18n("userOrg")
})
}}>
<IconC name={"ios-more"}
backgroundColor={Constant.transparentColor}
color={Constant.primaryColor}
size={16}/>
</TouchableOpacity>;
if (dataList.length > 5) {
items = items.slice(0, 4);
items.push(more)
}
return (
<View style={[{height: itemSize, marginTop: Constant.normalMarginEdge / 2}, this.props.rootStyles]}>
<View style={{
flexDirection: 'row',
alignItems: 'center',
}}>
{items}
</View>
</View>
)
}
}
OrgItemBar.propTypes = {
dataList: PropTypes.array,
rootStyles: PropTypes.any,
inputView: PropTypes.any,
ownerName: PropTypes.string,
};
OrgItemBar.defaultProps = {
dataList: [],
rootStyles: {}
};
export default OrgItemBar