forked from shenhuniurou/react-native-scroll-ruler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.android.js
90 lines (83 loc) · 2.4 KB
/
index.android.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
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {requireNativeComponent, View, ViewPropTypes} from 'react-native';
type PropsType = {
minValue?: number;
maxValue?: number;
defaultValue?: number;
step?: number;
num?: number;
unit?: string;
resultNumTextSize:? number;
unitTextSize:? number;
resultNumTextColor:? string;
unitColor:? string;
} & typeof
(View);
export default class ReactScrollRuler extends Component {
static propTypes = {
minValue: PropTypes.number.isRequired,
maxValue: PropTypes.number.isRequired,
defaultValue: PropTypes.number.isRequired,
step: PropTypes.number.isRequired,
num: PropTypes.number.isRequired,
unit: PropTypes.string,
resultNumTextSize: PropTypes.number,
unitTextSize: PropTypes.number,
resultNumTextColor: PropTypes.string,
unitColor: PropTypes.string,
onSelect: PropTypes.func,
...ViewPropTypes,
};
props: PropsType;
rulerRef: any;
setNativeProps(props: PropsType) {
this.rulerRef.setNativeProps(props);
}
_onSelect = (event) => {
if (!this.props.onSelect) {
return;
}
this.props.onSelect(event.nativeEvent.value);
}
render() {
const {
minValue,
maxValue,
defaultValue,
step,
num,
unit,
onSelect,
resultNumTextSize,
unitTextSize,
resultNumTextColor,
unitColor,
textStyle,
unitLabelStyle,
...otherProps
} = this.props;
return (
<RNScrollRuler
ref={(component) => {
this.rulerRef = component;
}}
minValue={minValue}
maxValue={maxValue}
defaultValue={defaultValue}
step={step}
num={num}
unit={unit}
resultNumTextSize={resultNumTextSize}
unitTextSize={unitTextSize}
resultNumTextColor={resultNumTextColor}
unitColor={unitColor}
onSelect={this._onSelect}
{...otherProps}
/>
);
}
}
const RNScrollRuler = requireNativeComponent('RNScrollRuler', ReactScrollRuler, {
nativeOnly: {onSelect: true}
});