ScreenSub.js
3.42 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
'use strict';
import React, {Component} from 'react';
import ScreenSubCell from '../cell/ScreenSubCell';
import Immutable, {Map} from 'immutable';
import IndexListView from '../../../classify/components/brand/IndexListView'
import ReactNative, {
View,
Text,
Image,
ListView,
StyleSheet,
Dimensions,
TouchableOpacity,
Platform,
} from 'react-native';
export default class ScreenSub extends Component {
constructor(props) {
super(props);
this.scrollToSection = this.scrollToSection.bind(this);
this.renderRow = this.renderRow.bind(this);
this.renderSectionHeader = this.renderSectionHeader.bind(this);
this.dataSource = new ListView.DataSource({
rowHasChanged: (r1, r2) => !Immutable.is(r1, r2),
sectionHeaderHasChanged: (s1, s2) => !Immutable.is(s1, s2),
});
}
scrollToSection(index,sectionID){
console.log(sectionID);
}
renderSectionHeader(sectionData, sectionID) {
return(
<View style={styles.Header}>
<Text style={styles.HeaderText}>{sectionID}</Text>
</View>
);
}
renderRow(rowData,sectionID,rowID,highlightRow) {
let {resource} = this.props;
let obj = resource&&resource.get('filterSub')?resource.get('filterSub'):null;
let key = obj?obj.get('key'):null;
return(
<ScreenSubCell resource={rowData} keys={key} selectItem={this.props.selectItem}/>
);
}
render() {
let {resource} = this.props;
let obj = resource&&resource.get('filterSub')?resource.get('filterSub'):null;
let key = obj?obj.get('key'):null;
let list = obj?obj.get('list'):null;
if (key == 'brand') {
let dataSourceList = list?list.toJS():{};
let keyList = list.keySeq()?list.keySeq().toJS():[];
keyList.shift();
keyList = Immutable.fromJS(keyList);
return (
<View style={styles.container}>
<ListView
ref='brandList'
contentContainerStyle={styles.contentContainer}
enableEmptySections={true}
dataSource={this.dataSource.cloneWithRowsAndSections(dataSourceList)}
renderRow={this.renderRow}
renderSectionHeader={this.renderSectionHeader}
/>
<IndexListView dataSource={keyList.toArray()} onLetterPress={this.scrollToSection}/>
</View>
);
}else {
let dataSourceList = list?list.toJS():[];
return (
<View style={styles.container}>
{list?<ListView
ref='ScreenSubList'
enableEmptySections={true}
dataSource={this.dataSource.cloneWithRows(dataSourceList)}
renderRow={this.renderRow}
/>:null}
</View>
);
}
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#f4f4f4',
},
HeaderText: {
marginLeft: 10,
fontSize: 18,
fontWeight: 'bold',
color: 'rgb(146, 146, 146)'
},
Header: {
justifyContent: 'center',
width: width,
height: 30,
}
});