Brand.js
6.97 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
227
228
229
230
231
232
'use strict'
import React, {Component} from 'react';
import {
StyleSheet,
Dimensions,
Platform,
View,
Text,
Image,
ListView,
TouchableOpacity,
} from 'react-native';
import {Map} from 'immutable';
import BrandSwiper from './BrandSwiper';
import BannerReourceList from './BannerReourceList';
import BrandFliter from './BrandFliter';
import YH_SearchBar from '../../../common/components/YH_SearchBar';
import ChannelFliter from './ChannelFliter';
import AllBrandListCell from './AllBrandListCell';
import NewHotBannerListCell from './NewHotBannerListCell';
import BrandSearch from './BrandSearch';
import LoadingIndicator from '../../../common/components/LoadingIndicator';
import IndexListView from './IndexListView';
export default class Brand extends Component {
constructor(props) {
super(props);
this.renderSectionHeader = this.renderSectionHeader.bind(this);
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),
});
}
componentDidMount() {
}
componentWillUnmount() {
}
renderHeader(){
let data = this.props.reourceForBoy;
let brandFliter = this.props.brandFliter;
let channelFliter = this.props.channelFliter;
if (channelFliter == 0) {
data = this.props.reourceForBoy;
} else if (channelFliter == 1) {
data = this.props.reourceForGirl;
} else if (channelFliter == 2) {
data = this.props.reourceForKid;
} else if (channelFliter == 3) {
data = this.props.reourceForLifeStyle;
}
let banner = data.get('banner');
let custom_brands = data.get('custom_brands');
let brandsText = data.get('brandsText');
return (
<View style={styles.header}>
<TouchableOpacity
activeOpacity={1}
onPress={() => {
this.props.onPressSearch && this.props.onPressSearch();
// this.searchBar && this.searchBar.focus();
}}
>
<YH_SearchBar
ref={(c) => {
this.searchBar = c;
}}
editable={false}
/>
</TouchableOpacity>
{banner?<BrandSwiper resource={banner} onPressSlideItem={this.props.onPressSlideItem}/>:null}
{custom_brands?<BannerReourceList resource={custom_brands} onPressSlideItem={this.props.onPressSlideItem}/>:null}
{brandsText?<BrandFliter dataSource={brandsText} selectID={brandFliter} onPressFilter={this.props.onPressFilter}/>:null}
</View>
);
}
renderSectionHeader(sectionData, sectionID) {
let title = sectionID;
if (sectionID == '0-9') {
title = '0';
}
return (
<View style={styles.sessionTitle}>
<Text style={styles.sessionText}>{title}</Text>
</View>
);
}
renderRow(rowData, sectionID, rowID, highlightRow) {
if (this.props.brandFliter == 0) {
return (
<AllBrandListCell rowData={rowData} onPressSlideItem={this.props.onPressSlideItem}/>
);
}else {
return (
<NewHotBannerListCell rowData={rowData} onPressSlideItem={this.props.onPressSlideItem}/>
);
}
}
render() {
let {
showSearch,
isFetching,
brandFliter,
channelFliter,
brandListForBoy,
brandListForGirl,
brandListForKid,
brandListForLifeStyle,
reourceForBoy,
reourceForGirl,
reourceForKid,
reourceForLifeStyle,
search,
} = this.props;
let data;
if (channelFliter == 0) {
data = brandListForBoy?brandListForBoy.toJS():null;
} else if (channelFliter == 1) {
data = brandListForGirl?brandListForGirl.toJS():null;
} else if (channelFliter == 2) {
data = brandListForKid?brandListForKid.toJS():null;
} else if (channelFliter == 3) {
data = brandListForLifeStyle?brandListForLifeStyle.toJS():null;
}
let list;
let listDataSource;
let contentContainerStyle;
let renderSectionHeader = null;
if (brandFliter == 0) {
list = data?data.all_list:null;
listDataSource = list?this.dataSource.cloneWithRowsAndSections(list):null;
contentContainerStyle = styles.contentContainerOne;
renderSectionHeader = this.renderSectionHeader;
} else if (brandFliter == 1) {
list = data?data.new_list:null;
listDataSource = list?this.dataSource.cloneWithRows(list):null;
contentContainerStyle = styles.contentContainerTwo;
} else if (brandFliter == 2) {
list = data?data.hot_list:null;
listDataSource = list?this.dataSource.cloneWithRows(list):null;
contentContainerStyle = styles.contentContainerTwo;
}
if (!list) {
return null;
}
return (
<View style={styles.container}>
<ChannelFliter selectID={channelFliter} onChannelPressFliter={this.props.onChannelPressFliter}/>
<ListView
contentContainerStyle={contentContainerStyle}
enableEmptySections={true}
dataSource={listDataSource}
renderRow={this.renderRow}
renderSectionHeader={renderSectionHeader}
renderHeader={this.renderHeader}
/>
{showSearch ? <BrandSearch
data={search}
onTextChange={this.props.onTextChange}
onClickCancel={this.props.onClickCancel} /> : null}
<IndexListView dataSource={list}/>
{showSearch ? <BrandSearch style={styles.search} data={search}/> : null}
<LoadingIndicator
isVisible={isFetching}
/>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white',
},
contentContainerOne:{
},
contentContainerTwo: {
flexDirection: 'row',
flexWrap: 'wrap',
alignItems:'flex-start',
},
header: {
width,
backgroundColor: '#CCC'
},
sessionText: {
textAlign: 'left',
fontSize: 12,
marginLeft:8,
color: '#999999',
},
sessionTitle: {
justifyContent: 'center',
height: 20,
width,
backgroundColor: '#e5e5e5',
},
search: {
},
});