-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSimpleStepper.tsx
297 lines (282 loc) · 8.39 KB
/
SimpleStepper.tsx
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
import React from 'react';
import {
StyleSheet,
Text,
TouchableOpacity,
Image,
View,
TextStyle,
ViewStyle,
ImageStyle,
ImageSourcePropType,
ColorValue,
} from 'react-native';
type HasReachedMaxMin = {
hasReachedMax: boolean;
hasReachedMin: boolean;
};
export type SimpleStepperProps = {
initialValue?: number;
minimumValue?: number;
maximumValue?: number;
stepValue?: number;
valueChanged?: (value: number) => void;
decrementImage?: ImageSourcePropType;
incrementImage?: ImageSourcePropType;
activeOpacity?: number;
disabledOpacity?: number;
disabled?: boolean;
renderDecrementStep?: (value: number, onDecrement: () => void) => JSX.Element;
renderIncrementStep?: (value: number, onIncrement: () => void) => JSX.Element;
renderIncrementImage?: (opacity: number) => JSX.Element;
renderDecrementImage?: (opacity: number) => JSX.Element;
wraps?: boolean;
onMin?: (value: number) => void;
onMax?: (value: number) => void;
onIncrement?: (value: number) => void;
onDecrement?: (value: number) => void;
showText?: boolean;
renderText?: (value: number) => JSX.Element;
textStyle?: TextStyle;
containerStyle?: ViewStyle;
separatorStyle?: ViewStyle;
incrementStepStyle?: ViewStyle;
decrementStepStyle?: ViewStyle;
incrementImageStyle?: ImageStyle;
decrementImageStyle?: ImageStyle;
textPosition?: 'left' | 'center' | 'right';
disableIncrementImageTintColor?: boolean;
disableDecrementImageTintColor?: boolean;
useColor?: boolean;
color?: ColorValue;
textDecimalPlaces?: number;
containerTestID?: string;
separatorTestID?: string;
incrementImageTestID?: string;
decrementImageTestID?: string;
incrementButtonTestID?: string;
decrementButtonTestID?: string;
};
const SimpleStepper: React.FunctionComponent<SimpleStepperProps> = ({
initialValue = 0,
minimumValue = 0,
maximumValue = 10,
stepValue = 1,
valueChanged = () => {},
decrementImage = require('./assets/decrement.png'),
incrementImage = require('./assets/increment.png'),
activeOpacity = 0.4,
disabledOpacity = 0.5,
disabled = false,
renderDecrementStep = undefined,
renderIncrementStep = undefined,
renderIncrementImage = undefined,
renderDecrementImage = undefined,
wraps = false,
onMin = () => {},
onMax = () => {},
onIncrement = () => {},
onDecrement = () => {},
showText = false,
renderText = undefined,
textStyle = {
marginHorizontal: 8,
fontSize: 24,
},
containerStyle = {
flexDirection: 'row',
borderWidth: 1,
borderRadius: 8,
alignItems: 'center',
justifyContent: 'space-evenly',
},
separatorStyle = {
width: StyleSheet.hairlineWidth,
backgroundColor: 'black',
height: '100%',
},
incrementStepStyle = {
padding: 4,
},
decrementStepStyle = {
padding: 4,
},
incrementImageStyle = {
height: 30,
width: 30,
},
decrementImageStyle = {
height: 30,
width: 30,
},
textPosition = 'center',
disableIncrementImageTintColor = false,
disableDecrementImageTintColor = false,
useColor = false,
color = 'blue',
textDecimalPlaces = 2,
containerTestID = 'container',
separatorTestID = 'separator',
incrementImageTestID = 'incrementImage',
decrementImageTestID = 'decrementImage',
incrementButtonTestID = 'incrementButton',
decrementButtonTestID = 'decrementButton',
}) => {
const [value, setValue] = React.useState(initialValue);
function _decrementAction(): void {
const nextValue = value - stepValue;
const actualValue = _processValue(nextValue);
onDecrement(actualValue);
setValue(actualValue);
valueChanged(actualValue);
}
function _incrementAction(): void {
const nextValue = value + stepValue;
const actualValue = _processValue(nextValue);
onIncrement(actualValue);
setValue(actualValue);
valueChanged(actualValue);
}
function _processValue(actualValue: number): number {
if (actualValue > maximumValue) {
return wraps ? minimumValue : maximumValue;
} else if (actualValue === maximumValue) {
return maximumValue;
} else if (actualValue < minimumValue) {
return wraps ? maximumValue : minimumValue;
} else if (actualValue === minimumValue) {
return minimumValue;
}
return actualValue;
}
function _getHasMinMax(): HasReachedMaxMin {
let hasReachedMax = true;
let hasReachedMin = true;
switch (true) {
case wraps:
hasReachedMin = false;
hasReachedMax = false;
break;
case stepValue >= 0:
hasReachedMax = value >= maximumValue;
hasReachedMin = value <= minimumValue;
break;
case stepValue < 0:
hasReachedMax = value <= minimumValue;
hasReachedMin = value >= maximumValue;
break;
}
return {
hasReachedMax,
hasReachedMin,
};
}
function _renderText(): React.JSX.Element {
if (renderText) {
return renderText(value);
}
let _textStyle = textStyle;
if (useColor && color) {
_textStyle.color = color;
}
let displayValue = value;
if (!Number.isInteger(value)) {
displayValue = Number(value.toFixed(textDecimalPlaces));
}
return <Text style={textStyle}>{displayValue}</Text>;
}
function _renderIncrementImage(opacity: number): React.JSX.Element {
if (renderIncrementImage) {
return renderIncrementImage(opacity);
}
const _incrementImageStyle = incrementImageStyle;
if (useColor && color && !disableIncrementImageTintColor) {
_incrementImageStyle.tintColor = color;
}
if (disableIncrementImageTintColor && _incrementImageStyle.tintColor) {
_incrementImageStyle.tintColor = undefined;
}
return (
<Image
testID={incrementImageTestID}
style={[_incrementImageStyle, {opacity}]}
source={incrementImage}
/>
);
}
function _renderDecrementImage(opacity: number): React.JSX.Element {
if (renderDecrementImage) {
return renderDecrementImage(opacity);
}
const _decrementImageStyle = decrementImageStyle;
if (useColor && color && !disableDecrementImageTintColor) {
_decrementImageStyle.tintColor = color;
}
if (disableDecrementImageTintColor && _decrementImageStyle.tintColor) {
_decrementImageStyle.tintColor = undefined;
}
return (
<Image
testID={decrementImageTestID}
style={[_decrementImageStyle, {opacity}]}
source={decrementImage}
/>
);
}
const {hasReachedMin, hasReachedMax} = _getHasMinMax();
const decrementOpacity = hasReachedMin || disabled ? disabledOpacity : 1;
const incrementOpacity = hasReachedMax || disabled ? disabledOpacity : 1;
const isLeft = showText && textPosition === 'left';
const isCenter = showText && textPosition === 'center';
const isRight = showText && textPosition === 'right';
if (hasReachedMin) {
onMin(value);
}
if (hasReachedMax) {
onMax(value);
}
let _containerStyle = containerStyle;
let _separatorStyle = separatorStyle;
if (useColor && color) {
_containerStyle.borderColor = color;
_separatorStyle.backgroundColor = color;
}
return (
<View>
<View testID={containerTestID} style={_containerStyle}>
{isLeft && _renderText()}
{isLeft && <View testID={separatorTestID} style={_separatorStyle} />}
{renderDecrementStep ? (
renderDecrementStep(value, _decrementAction)
) : (
<TouchableOpacity
testID={decrementButtonTestID}
style={decrementStepStyle}
activeOpacity={activeOpacity}
onPress={_decrementAction}
disabled={hasReachedMin || disabled}>
{_renderDecrementImage(decrementOpacity)}
</TouchableOpacity>
)}
{isCenter && <View testID={separatorTestID} style={_separatorStyle} />}
{isCenter && _renderText()}
<View style={_separatorStyle} />
{renderIncrementStep ? (
renderIncrementStep(value, _incrementAction)
) : (
<TouchableOpacity
testID={incrementButtonTestID}
style={incrementStepStyle}
activeOpacity={activeOpacity}
onPress={_incrementAction}
disabled={hasReachedMax || disabled}>
{_renderIncrementImage(incrementOpacity)}
</TouchableOpacity>
)}
{isRight && <View testID={separatorTestID} style={_separatorStyle} />}
{isRight && _renderText()}
</View>
</View>
);
};
export default SimpleStepper;