MineCell.js
1.6 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
'use strict';
import React from 'react';
import ReactNative from 'react-native';
import Immutable from 'immutable';
const {TouchableOpacity,View, Text, Image} = ReactNative;
export default class MineCell extends React.Component {
constructor(props) {
super(props);
}
shouldComponentUpdate(nextProps) {
if (Immutable.is(nextProps.data, this.props.data)) {
return false;
} else {
return true;
}
}
render() {
let {resource} = this.props;
if (!resource || resource.size === 0) {
return null;
}
let list = this.props.resource.toJS();
if (!list || list.length === 0) {
return null;
}
let item = list[0];
if (!item) {
return null;
}
return (
<View>
<TouchableOpacity
style={this.props.styles.withdrawView}
onPress={() => {
this.props.resourceJumpWithUrl && this.props.resourceJumpWithUrl(item.url);
}}
>
<Text style={this.props.styles.hasWithDrawText}>{item.name}</Text>
<View style={[this.props.styles.textView, {flexDirection: 'row', paddingRight: 15}]}>
<Image style={this.props.styles.arrowImage} source={require('../../images/arrow.png')}/>
</View>
{/*<View style={{height: 10, backgroundColor: '#f0f0f0'}}/>*/}
</TouchableOpacity>
<View style={{height: 1, backgroundColor: '#f0f0f0'}}/>
</View>
);
}
}