-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.js
More file actions
366 lines (349 loc) · 12.2 KB
/
App.js
File metadata and controls
366 lines (349 loc) · 12.2 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
/* eslint-disable prettier/prettier */
/* eslint-disable react-native/no-inline-styles */
/**
* React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React from 'react';
import { View, StyleSheet, Text, Image } from 'react-native';
import CircularMultipleSlider from './app/src/circularMultipleSlider';
const DIVIDER_COMPONENT_SIZE = 40;
const PERCENTAGE_TEXT = '%';
const REACT_IMAGE = require('./app/Resource/react.png');
const ANGULAR_IMAGE = require('./app/Resource/angular.png');
const SWIFT_IMAGE = require('./app/Resource/swift.png');
const ANDROID_IMAGE = require('./app/Resource/android.png');
const DIVIDER_IMAGE = require('./app/Resource/divider_icon.png');
export default class App extends React.Component {
state = {
value: [5, 5, 5, 5],
};
onUpdate = value => {
this.setState({
value,
});
};
getDividerComponentImage(image) {
return (
<Image
style={{
width: DIVIDER_COMPONENT_SIZE,
height: DIVIDER_COMPONENT_SIZE,
}}
source={image}
/>
);
}
getDividerComponentText(text) {
return (
<Text style={[{
width: DIVIDER_COMPONENT_SIZE,
height: DIVIDER_COMPONENT_SIZE,
}, styles.text]}>
{text}
</Text>
);
}
renderSliderWithCircleDivider() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwith \nCircle Divider'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentImage(REACT_IMAGE),
this.getDividerComponentImage(ANGULAR_IMAGE),
this.getDividerComponentImage(SWIFT_IMAGE),
this.getDividerComponentImage(ANDROID_IMAGE),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'circle'}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderSliderWithSquareDivider() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwith \nSquare Divider'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentImage(REACT_IMAGE),
this.getDividerComponentImage(ANGULAR_IMAGE),
this.getDividerComponentImage(SWIFT_IMAGE),
this.getDividerComponentImage(ANDROID_IMAGE),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'square'}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderSliderWithBarDivider() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwith \nBar Divider'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentImage(REACT_IMAGE),
this.getDividerComponentImage(ANGULAR_IMAGE),
this.getDividerComponentImage(SWIFT_IMAGE),
this.getDividerComponentImage(ANDROID_IMAGE),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'bar'}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderSliderWithIconDivider() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwith \nDivider Icon'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentImage(REACT_IMAGE),
this.getDividerComponentImage(ANGULAR_IMAGE),
this.getDividerComponentImage(SWIFT_IMAGE),
this.getDividerComponentImage(ANDROID_IMAGE),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'icon'}
slideDividerIcon={DIVIDER_IMAGE}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderSliderWithTextDividerComponent() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwith \nText Divider Component'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentText(Math.round(this.state.value[0]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[1]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[2]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[3]) + PERCENTAGE_TEXT),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'icon'}
slideDividerIcon={DIVIDER_IMAGE}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderSliderWithoutDivider() {
return (
<View style={{ height: 500, width: '100%' }}>
<Text style={styles.title}>{'Multiple Circular Slider \nwithout Divider'}</Text>
<CircularMultipleSlider
componentType={'slider'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentText(Math.round(this.state.value[0]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[1]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[2]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[3]) + PERCENTAGE_TEXT),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'circle'}
hideSlideDividerType={true}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={30}
radius={160}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderPieChartWithTextDividerComponent() {
return (
<View style={{ height: 500, width: 640 }}>
<Text style={styles.title}>{'Circular Pie-Chart \nwith \nText Divider Component'}</Text>
<CircularMultipleSlider
//If component type is pie chart then the divider will be hide automatically.
componentType={'pie_chart'} //Default type is slider
values={this.state.value}
colors={['#9BBFE0', '#E8A09A', '#FBE29F', '#C6D68F']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentText(Math.round(this.state.value[0]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[1]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[2]) + PERCENTAGE_TEXT),
this.getDividerComponentText(Math.round(this.state.value[3]) + PERCENTAGE_TEXT),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'circle'}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={160}
radius={80}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderPieChartWithIconDividerComponent() {
return (
<View style={{ height: 500, width: 640 }}>
<Text style={styles.title}>{'Circular Pie-Chart \nwith \nDivider Icon Component'}</Text>
<CircularMultipleSlider
//If component type is pie chart then the divider will be hide automatically.
componentType={'pie_chart'} //Default type is slider
values={this.state.value}
colors={['#FBE29F', '#C6D68F', '#9BBFE0', '#E8A09A']}
onUpdate={this.onUpdate}
dividerComponent={[
this.getDividerComponentImage(REACT_IMAGE),
this.getDividerComponentImage(ANGULAR_IMAGE),
this.getDividerComponentImage(SWIFT_IMAGE),
this.getDividerComponentImage(ANDROID_IMAGE),
]}
dividerComponentSize={DIVIDER_COMPONENT_SIZE}
slideDividerType={'circle'}
borderColor={'#0088a0'}
borderWidth={3}
strokeWidth={160}
radius={80}
separatorColor="#171717"
minimumStopValue={0.5}
/>
</View>
);
}
renderTextContainer() {
return (
<View>
<View style={styles.rowStyle}>
<Text style={[styles.description, { color: '#2D87BB' }]}>{'React - '}</Text>
<Text style={[styles.value, { color: '#2D87BB' }]}>{Math.round(this.state.value[0]) + PERCENTAGE_TEXT}</Text>
</View>
<View style={styles.rowStyle}>
<Text style={[styles.description, { color: '#EC6B56' }]}>{'Angular - '}</Text>
<Text style={[styles.value, { color: '#EC6B56' }]}>{Math.round(this.state.value[1]) + PERCENTAGE_TEXT}</Text>
</View>
<View style={styles.rowStyle}>
<Text style={[styles.description, { color: '#FFC154' }]}>{'Swift - '}</Text>
<Text style={[styles.value, { color: '#FFC154' }]}>{Math.round(this.state.value[2]) + PERCENTAGE_TEXT}</Text>
</View>
<View style={styles.rowStyle}>
<Text style={[styles.description, { color: '#47B39C' }]}>{'Android - '}</Text>
<Text style={[styles.value, { color: '#47B39C' }]}>{Math.round(this.state.value[3]) + PERCENTAGE_TEXT}</Text>
</View>
</View>
);
}
render() {
return (
<View style={styles.container}>
{this.renderSliderWithCircleDivider()}
{/* {this.renderSliderWithSquareDivider()} */}
{/* {this.renderSliderWithBarDivider()} */}
{/* {this.renderSliderWithIconDivider()} */}
{/* {this.renderSliderWithTextDividerComponent()} */}
{/* {this.renderSliderWithoutDivider()} */}
{/* {this.renderPieChartWithTextDividerComponent()} */}
{/* {this.renderPieChartWithIconDividerComponent()} */}
{this.renderTextContainer()}
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
rowStyle: {
flexDirection: 'row',
padding: 8,
},
title: {
fontSize: 25,
textAlign: 'center',
fontWeight: 'bold',
fontStyle: 'italic',
lineHeight: 32,
color: 'white',
backgroundColor: '#9963e7',
marginTop: -50,
marginBottom: 50,
paddingVertical: 10,
},
description: {
fontSize: 21,
textAlign: 'center',
fontWeight: 'normal',
lineHeight: 25,
},
value: {
fontSize: 18,
textAlign: 'center',
fontWeight: 'bold',
lineHeight: 25,
},
text: {
fontSize: 18,
textAlign: 'center',
fontWeight: 'bold',
color: '#2B0B3F',
},
});