AssociatorGift.js
6.88 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
'use strict'
import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
View,
Text,
Image,
ListView,
TouchableOpacity,
} from 'react-native';
import {Immutable, Map} from 'immutable';
import ReceiveGiftAlert from './ReceiveGiftAlert';
import ProductListCell from '../../common/components/ListCell/ProductListCell';
import CouponsBagListCell from "./CouponsBagListCell";
import Prompt from '../../common/components/Prompt';
export default class AssociatorGift extends Component {
constructor(props) {
super(props);
this._renderRow = this._renderRow.bind(this);
this._renderHeader = this._renderHeader.bind(this);
this.dataSource = new ListView.DataSource({
rowHasChanged: (r1, r2) => !Immutable.is(r1, r2),
sectionHeaderHasChanged: (s1, s2) => !Immutable.is(s1, s2),
});
}
_renderHeader() {
let total = this.props.couponsBagCnt.total;
let title = total > 0 ? '您有' + total + '个礼包可领取' : '暂无可领取的礼包';
let desc = total > 0 ? '以下是近期礼包' : '';
let heightStyle = total > 0 ? {height: 45} : {height: 35};
return (
<View style={styles.bagBackground}>
<View style={styles.header}/>
<Image style={styles.bgImage} source={require('../images/hyzx_lb.png')}/>
<Text style={styles.bagTitle}>{title}</Text>
<Text style={[styles.bagTips, heightStyle]}>{desc}</Text>
</View>
)
}
_renderRow(rowData, sectionID, rowID) {
let paddingLeft = rowID % 2 === 1 ? rowMarginHorizontal / 2 : rowMarginHorizontal;
let customStyle = rowID === 0 || rowID === 1 ? {paddingLeft} : {paddingLeft};
switch (sectionID) {
case 'couponsBag': {
return (
<CouponsBagListCell
style={[styles.listContainer, customStyle]}
key={'row' + rowID}
rowID={rowID}
data={rowData}
onPressGiftBag={this.props.onPressGiftBag}
showGiftAlert={this.props.showGiftAlert}
hiddenGiftAlert={this.props.hiddenGiftAlert}
/>
);
}
case 'productListTitle': {
return (
<View>
<View style={{height:10, backgroundColor: '#444444'}}/>
<View style={styles.titleView}>
<View style={styles.titleLine}/>
<View style={styles.ViewForTextStyle}>
<Text style={styles.textStyle}>你可能喜欢</Text>
</View>
</View>
<View style={styles.titleBottomLine}/>
</View>
)
}
case 'productList': {
return (
<ProductListCell
style={[styles.listContainer, customStyle]}
key={'row' + rowID}
rowID={rowID}
data={rowData}
onPressProduct={this.props.onPressProduct}
needShopCar={true}
onPressShopCar={this.props.onPressShopCar}
/>
);
}
default:
return null;
}
}
render() {
let {
showGiftAlert,
couponsBag,
productList,
drawCouponsBag,
bagTipMessage
} = this.props;
let dataSource = {
couponsBag: couponsBag.couponsBag_list ? couponsBag.couponsBag_list.toArray(): [],
productListTitle: ['猜你喜欢'],
productList: productList.product_list ? productList.product_list.toArray() : [],
};
let drawCouponsBag_list = drawCouponsBag.drawCouponsBag_list.toArray();
return (
<View style={styles.container}>
<ReceiveGiftAlert
data={drawCouponsBag_list}
showGiftAlert={showGiftAlert}
hiddenGiftAlert={this.props.hiddenGiftAlert}
onPressCouponItem={this.props.onPressCouponItem}
onPressLookDetail={this.props.onPressLookDetail}
/>
<ListView
ref={(c) => {
this.listView = c;
}}
yh_viewVisible={true}
contentContainerStyle={styles.contentContainer}
enableEmptySections={true}
dataSource={this.dataSource.cloneWithRowsAndSections(dataSource)}
renderRow={this._renderRow}
renderHeader={this._renderHeader}
/>
{bagTipMessage != '' ?
<Prompt
text={bagTipMessage}
duration={800}
onPromptHidden={this.props.onHiddenBagTipMessage}
/>
: null
}
</View>
);
}
};
let {width, height} = Dimensions.get('window');
let rowWidth = Math.ceil(137.5 * width / 320);
let rowMarginHorizontal = (width - rowWidth * 2) / 3;
let styles = StyleSheet.create({
container: {
flex: 1,
},
header: {
backgroundColor: '#444444',
width,
height: 500,
flex: 1,
position: 'absolute',
top: -500,
left: 0,
},
bagBackground: {
width: width,
alignItems: 'center',
backgroundColor: '#444444',
position: 'relative'
},
bgImage: {
width: 50,
height: 57.4,
marginTop: 39,
marginBottom: 15.6
},
bagTitle: {
fontFamily: 'PingFang-SC-Medium',
fontSize: 14,
color: '#FFFFFF',
},
bagTips: {
height: 45,
fontFamily: 'PingFang-SC-Regular',
fontSize: 12,
color: '#B0B0B0',
paddingTop: 4,
},
titleView: {
width: width,
height: 40,
backgroundColor: 'white',
flexDirection: 'row',
},
titleLine: {
width: 2,
height: 15,
marginLeft: 15,
marginTop: 12.5,
backgroundColor: 'black'
},
ViewForTextStyle: {
height: 40,
marginLeft: 10,
justifyContent: 'center',
},
textStyle: {
fontSize: 16,
fontWeight: 'bold',
},
titleBottomLine: {
width: width,
height: 0.5,
backgroundColor: '#e0e0e0'
},
contentContainer: {
flexDirection: 'row',
flexWrap: 'wrap',
backgroundColor: 'white'
},
listContainer: {
width: width / 2,
},
});