-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultipleComponents.js
More file actions
311 lines (299 loc) · 6.46 KB
/
MultipleComponents.js
File metadata and controls
311 lines (299 loc) · 6.46 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
import React, { Component } from 'react'
import {
View,
Text,
ScrollView,
} from 'react-native'
import {
withProps,
theme,
} from 'react-native-themeable'
import {
ActivityIndicator,
Image,
Modal,
Picker,
RefreshControl,
ScrollView as TScrollView,
Slider,
Switch,
Text as TText,
TextInput,
TouchableHighlight,
TouchableOpacity,
View as TView,
} from 'react-native-themeable'
const redTheme = withProps([
{
$type: TText,
style: {
color: 'red',
},
}, {
$type: TView,
style: {
backgroundColor: 'red',
opacity: 0.2,
borderStyle: 'dashed',
borderWidth: 1,
},
}, {
$type: TextInput,
style: {
color: 'red',
textDecorationColor: 'red',
},
}, {
$type: ActivityIndicator,
color: 'red',
}, {
$type: Modal,
animationType: 'slide',
}, {
$type: Picker,
style: {
color: 'red',
},
}, {
$type: RefreshControl,
colors: ['#ff0000', '#00ff00', '#0000ff'],
progressBackgroundColor: 'lightpink',
}, {
$type: Switch,
thumbTintColor: 'red',
tintColor: 'lightpink',
style: {
backgroundColor: 'lightpink',
},
}, {
$type: Slider,
style: {
backgroundColor: 'lightpink',
},
}, {
$type: TouchableOpacity,
activeOpacity: 0.1,
}, {
$type: TouchableHighlight,
underlayColor: 'lightpink',
}, {
$type: TScrollView,
contentContainerStyle: {
padding: 15,
backgroundColor: 'lightpink',
},
}, {
$type: Image,
style: {
opacity: 1,
},
},
])
const blueTheme = withProps([
{
$type: TText,
style: {
color: 'blue',
fontStyle: 'italic',
},
}, {
$type: TView,
style: {
backgroundColor: 'blue',
opacity: 0.2,
borderStyle: 'solid',
borderWidth: 1,
},
}, {
$type: TextInput,
style: {
color: 'blue',
},
autoCapitalize: true,
}, {
$type: ActivityIndicator,
color: 'blue',
}, {
$type: Modal,
animationType: 'fade',
}, {
$type: Picker,
style: {
color: 'blue',
},
}, {
$type: RefreshControl,
colors: ['#ff0000', '#00ff00', '#0000ff'],
progressBackgroundColor: 'lightblue',
}, {
$type: Switch,
thumbTintColor: 'blue',
tintColor: 'lightblue',
style: {
backgroundColor: 'lightblue',
},
}, {
$type: Slider,
style: {
backgroundColor: 'lightblue',
},
}, {
$type: TouchableOpacity,
activeOpacity: 0.5,
}, {
$type: TouchableHighlight,
underlayColor: 'lightblue',
}, {
$type: TScrollView,
contentContainerStyle: {
padding: 15,
backgroundColor: 'lightblue',
},
}, {
$type: Image,
style: {
opacity: 0.6,
},
},
])
const Row = props => (
<View style={{
borderBottomWidth: 1,
borderRightWidth: 1,
padding: 5,
}}>
<Text>{props.caption}:</Text>
{props.children}
</View>
)
class ModalWrapper extends Component {
constructor(...args) {
super(...args)
this.state = { visible: false }
}
render() {
return(
<View>
<Modal
visible={this.state.visible}
onRequestClose={() => {alert("Modal has been closed.")}}>
<TouchableHighlight onPress={() => this.setState({ visible: false })}>
<TText>Close Modal</TText>
</TouchableHighlight>
</Modal>
<TouchableHighlight onPress={() => this.setState({ visible: true })}>
<TText>Open Modal</TText>
</TouchableHighlight>
</View>
)
}
}
class SwitchWrapper extends Component {
constructor(...args) {
super(...args)
this.state = { on: false }
}
render() {
return (
<Switch
onValueChange={on => this.setState({on})}
value={this.state.on} />
)
}
}
class PickerWrapper extends Component {
constructor(...args) {
super(...args)
this.state = { value: false }
}
render() {
return (
<Picker
onValueChange={value => this.setState({ value })}
selectedValue={this.state.value}>
<Picker.Item label="Java" value="java" />
<Picker.Item label="JavaScript" value="js" />
</Picker>
)
}
}
const SampleSet = () => (
<View style={{flex: 1, flexDirection: 'column'}}>
<Row caption='Text'>
<TText>Some text</TText>
</Row>
<Row caption='View'>
<TView style={{width: 90, height: 90}}></TView>
</Row>
<Row caption='TextInput'>
<TextInput defaultValue='some input text' />
</Row>
<Row caption='ActivityIndicator'>
<ActivityIndicator
animating={true}
style={{height: 80}}
size="large"
/>
</Row>
<Row caption='Modal'>
<ModalWrapper />
</Row>
<Row caption='Picker'>
<PickerWrapper />
</Row>
<Row caption='Refresh control'>
<ScrollView style={{height: 80}} refreshControl={
<RefreshControl refreshing={true} />
} />
</Row>
<Row caption='Switch'>
<SwitchWrapper />
</Row>
<Row caption='Slider'>
<Slider
minimumValue={0}
maximumValue={100}
/>
</Row>
<Row caption='TouchableOpacity'>
<TouchableOpacity onPress={() => 0}>
<TText>Touch me...</TText>
</TouchableOpacity>
</Row>
<Row caption='TouchableHighlight'>
<TouchableHighlight onPress={() => 0}>
<TText>Touch me...</TText>
</TouchableHighlight>
</Row>
<Row caption='ScrollView'>
<TScrollView horizontal={true}>
<View style={{width: 50, height: 50, backgroundColor: 'red'}} />
<View style={{width: 50, height: 50, backgroundColor: 'green'}} />
<View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'yellow'}} />
<View style={{width: 50, height: 50, backgroundColor: 'gray'}} />
</TScrollView>
</Row>
<Row caption='Image'>
<Image
style={{width: 100, height: 100}}
source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
/>
</Row>
</View>
)
const RedSampleSet = theme(redTheme)(SampleSet)
const BlueSampleSet = theme(blueTheme)(SampleSet)
export default class Basic extends Component {
render() {
return (
<ScrollView>
<Text>Following components use red (left column) and blue (right column) theme.</Text>
<View style={{ flex: 1, flexDirection: 'row' }}>
<RedSampleSet />
<BlueSampleSet />
</View>
</ScrollView>
)
}
}