forked from Skyscanner/backpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstories.js
159 lines (147 loc) · 4.22 KB
/
stories.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
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
/*
* Backpack - Skyscanner's Design System
*
* Copyright 2018 Skyscanner Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { Image, Platform, StyleSheet, View } from 'react-native';
import PropTypes from 'prop-types';
import { storiesOf } from '@storybook/react-native';
import BpkSectionList, {
BpkSectionListItem,
BpkSectionListItemSeparator,
BpkSectionListHeader,
} from './index';
const styles = StyleSheet.create({
topMargin: {
marginTop: 20, // eslint-disable-line backpack/use-tokens
},
image: {
width: 24, // eslint-disable-line backpack/use-tokens
height: 16, // eslint-disable-line backpack/use-tokens
},
});
const airportCities = [
{
title: 'Beijing',
country: 'CN',
data: [{ id: 'PEK', name: 'Capital' }, { id: 'NAY', name: 'Nanyuan' }],
},
{
title: 'Glasgow',
country: 'UK',
data: [
{
id: 'GLA',
name: 'Glasgow International',
},
{ id: 'PIK', name: 'Prestwick' },
],
},
{
title: 'Paris',
country: 'FR',
data: [
{ id: 'BVA', name: 'Beauvais' },
{ id: 'CDG', name: 'Charles de Gaulle' },
{ id: 'ORY', name: 'Orly' },
],
},
{
title: 'New York City',
country: 'US',
data: [
{ id: 'JFK', name: 'John F. Kennedy' },
{ id: 'LGA', name: 'LaGuardia' },
{ id: 'EWR', name: 'Newark' },
],
},
];
const getFlagUriFromCountryCode = countryCode =>
`https://images.skyscnr.com/images/country/flag/header/${countryCode.toLowerCase()}.png`;
// eslint-disable-next-line react/no-multi-comp
class StatefulBpkSectionList extends React.Component<{
extraEntries: number,
showImages: boolean,
}> {
static propTypes = {
extraEntries: PropTypes.number,
showImages: PropTypes.bool,
};
static defaultProps = {
extraEntries: 0,
showImages: false,
};
constructor() {
super();
this.itemPressCallbacks = {};
this.state = { selectedAirport: 'GLA' };
}
getOnItemPressCallback = id => {
this.itemPressCallbacks[id] =
this.itemPressCallbacks[id] ||
(() => this.setState({ selectedAirport: id }));
return this.itemPressCallbacks[id];
};
getData = () => {
const data = airportCities.slice();
if (this.props.extraEntries > 0) {
data.push({
title: 'Unassigned',
country: 'None',
data: new Array(this.props.extraEntries)
.fill()
.map((_, i) => ({ id: i.toString(), name: `Airport ${i}` })),
});
}
return data;
};
renderItem = ({ item, section }) => (
<BpkSectionListItem
title={item.name}
selected={this.state.selectedAirport === item.id}
image={
this.props.showImages ? (
<Image // eslint-disable-line backpack/use-components
source={{ uri: getFlagUriFromCountryCode(section.country) }}
style={styles.image}
/>
) : null
}
onPress={this.getOnItemPressCallback(item.id)}
/>
);
render() {
return (
<BpkSectionList
sections={this.getData()}
renderItem={this.renderItem}
renderSectionHeader={({ section: { title } }) => (
<BpkSectionListHeader title={title} />
)}
ItemSeparatorComponent={
Platform.OS === 'ios' ? BpkSectionListItemSeparator : null
}
keyExtractor={item => item.id}
removeClippedSubviews
/>
);
}
}
storiesOf('react-native-bpk-component-section-list', module)
.addDecorator(getStory => <View style={styles.topMargin}>{getStory()}</View>)
.add('docs:default', () => <StatefulBpkSectionList />)
.add('docs:with-images', () => <StatefulBpkSectionList showImages />)
.add('Perf (Long list)', () => <StatefulBpkSectionList extraEntries={200} />);