rmc-picker
Advanced tools
Comparing version
@@ -13,3 +13,3 @@ /// <reference types="react" /> | ||
doScrollingComplete: (y: number) => void; | ||
onItemLayout(e: any): void; | ||
onItemLayout: (e: any) => void; | ||
componentDidUpdate(): void; | ||
@@ -20,3 +20,3 @@ componentWillUnMount(): void; | ||
fireValueChange(selectedValue: any): void; | ||
onScroll(e: any): void; | ||
onScroll: (e: any) => void; | ||
getChildMember(child: any, m: any): any; | ||
@@ -23,0 +23,0 @@ toChildrenArray(children: any): React.ReactChild[]; |
@@ -40,10 +40,5 @@ import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; | ||
return _possibleConstructorReturn(this, (Picker.__proto__ || Object.getPrototypeOf(Picker)).apply(this, arguments)); | ||
} | ||
var _this = _possibleConstructorReturn(this, (Picker.__proto__ || Object.getPrototypeOf(Picker)).apply(this, arguments)); | ||
_createClass(Picker, [{ | ||
key: 'onItemLayout', | ||
value: function onItemLayout(e) { | ||
var _this2 = this; | ||
_this.onItemLayout = function (e) { | ||
var _e$nativeEvent$layout = e.nativeEvent.layout, | ||
@@ -54,5 +49,5 @@ height = _e$nativeEvent$layout.height, | ||
if (this.itemHeight !== height || this.itemWidth !== width) { | ||
this.itemWidth = width; | ||
this.refs.indicator.setNativeProps({ | ||
if (_this.itemHeight !== height || _this.itemWidth !== width) { | ||
_this.itemWidth = width; | ||
_this.refs.indicator.setNativeProps({ | ||
style: [styles.indicator, { | ||
@@ -65,5 +60,5 @@ top: height * 3, | ||
} | ||
if (this.itemHeight !== height) { | ||
this.itemHeight = height; | ||
this.refs.scroller.setNativeProps({ | ||
if (_this.itemHeight !== height) { | ||
_this.itemHeight = height; | ||
_this.refs.scroller.setNativeProps({ | ||
style: { | ||
@@ -73,3 +68,3 @@ height: height * 7 | ||
}); | ||
this.refs.content.setNativeProps({ | ||
_this.refs.content.setNativeProps({ | ||
style: { | ||
@@ -82,7 +77,19 @@ paddingTop: height * 3, | ||
setTimeout(function () { | ||
_this2.select(_this2.props.selectedValue); | ||
_this.select(_this.props.selectedValue); | ||
}, 0); | ||
} | ||
} | ||
}, { | ||
}; | ||
_this.onScroll = function (e) { | ||
var y = e.nativeEvent.contentOffset.y; | ||
_this.clearScrollBuffer(); | ||
_this.scrollBuffer = setTimeout(function () { | ||
_this.clearScrollBuffer(); | ||
_this.doScrollingComplete(y); | ||
}, 100); | ||
}; | ||
return _this; | ||
} | ||
_createClass(Picker, [{ | ||
key: 'componentDidUpdate', | ||
@@ -120,15 +127,2 @@ value: function componentDidUpdate() { | ||
}, { | ||
key: 'onScroll', | ||
value: function onScroll(e) { | ||
var _this3 = this; | ||
var y = e.nativeEvent.contentOffset.y; | ||
this.clearScrollBuffer(); | ||
this.scrollBuffer = setTimeout(function () { | ||
_this3.clearScrollBuffer(); | ||
_this3.doScrollingComplete(y); | ||
}, 100); | ||
} | ||
}, { | ||
key: 'getChildMember', | ||
@@ -146,3 +140,3 @@ value: function getChildMember(child, m) { | ||
value: function render() { | ||
var _this4 = this; | ||
var _this2 = this; | ||
@@ -163,3 +157,3 @@ var _props = this.props, | ||
View, | ||
{ ref: 'item' + index, onLayout: index === 0 ? _this4.onItemLayout : undefined, key: item.key }, | ||
{ ref: 'item' + index, onLayout: index === 0 ? _this2.onItemLayout : undefined, key: item.key }, | ||
React.createElement( | ||
@@ -166,0 +160,0 @@ Text, |
@@ -13,3 +13,3 @@ /// <reference types="react" /> | ||
doScrollingComplete: (y: number) => void; | ||
onItemLayout(e: any): void; | ||
onItemLayout: (e: any) => void; | ||
componentDidUpdate(): void; | ||
@@ -20,3 +20,3 @@ componentWillUnMount(): void; | ||
fireValueChange(selectedValue: any): void; | ||
onScroll(e: any): void; | ||
onScroll: (e: any) => void; | ||
getChildMember(child: any, m: any): any; | ||
@@ -23,0 +23,0 @@ toChildrenArray(children: any): React.ReactChild[]; |
@@ -69,10 +69,6 @@ 'use strict'; | ||
(0, _classCallCheck3['default'])(this, Picker); | ||
return (0, _possibleConstructorReturn3['default'])(this, (Picker.__proto__ || Object.getPrototypeOf(Picker)).apply(this, arguments)); | ||
} | ||
(0, _createClass3['default'])(Picker, [{ | ||
key: 'onItemLayout', | ||
value: function onItemLayout(e) { | ||
var _this2 = this; | ||
var _this = (0, _possibleConstructorReturn3['default'])(this, (Picker.__proto__ || Object.getPrototypeOf(Picker)).apply(this, arguments)); | ||
_this.onItemLayout = function (e) { | ||
var _e$nativeEvent$layout = e.nativeEvent.layout, | ||
@@ -83,5 +79,5 @@ height = _e$nativeEvent$layout.height, | ||
if (this.itemHeight !== height || this.itemWidth !== width) { | ||
this.itemWidth = width; | ||
this.refs.indicator.setNativeProps({ | ||
if (_this.itemHeight !== height || _this.itemWidth !== width) { | ||
_this.itemWidth = width; | ||
_this.refs.indicator.setNativeProps({ | ||
style: [styles.indicator, { | ||
@@ -94,5 +90,5 @@ top: height * 3, | ||
} | ||
if (this.itemHeight !== height) { | ||
this.itemHeight = height; | ||
this.refs.scroller.setNativeProps({ | ||
if (_this.itemHeight !== height) { | ||
_this.itemHeight = height; | ||
_this.refs.scroller.setNativeProps({ | ||
style: { | ||
@@ -102,3 +98,3 @@ height: height * 7 | ||
}); | ||
this.refs.content.setNativeProps({ | ||
_this.refs.content.setNativeProps({ | ||
style: { | ||
@@ -111,7 +107,19 @@ paddingTop: height * 3, | ||
setTimeout(function () { | ||
_this2.select(_this2.props.selectedValue); | ||
_this.select(_this.props.selectedValue); | ||
}, 0); | ||
} | ||
} | ||
}, { | ||
}; | ||
_this.onScroll = function (e) { | ||
var y = e.nativeEvent.contentOffset.y; | ||
_this.clearScrollBuffer(); | ||
_this.scrollBuffer = setTimeout(function () { | ||
_this.clearScrollBuffer(); | ||
_this.doScrollingComplete(y); | ||
}, 100); | ||
}; | ||
return _this; | ||
} | ||
(0, _createClass3['default'])(Picker, [{ | ||
key: 'componentDidUpdate', | ||
@@ -149,15 +157,2 @@ value: function componentDidUpdate() { | ||
}, { | ||
key: 'onScroll', | ||
value: function onScroll(e) { | ||
var _this3 = this; | ||
var y = e.nativeEvent.contentOffset.y; | ||
this.clearScrollBuffer(); | ||
this.scrollBuffer = setTimeout(function () { | ||
_this3.clearScrollBuffer(); | ||
_this3.doScrollingComplete(y); | ||
}, 100); | ||
} | ||
}, { | ||
key: 'getChildMember', | ||
@@ -175,3 +170,3 @@ value: function getChildMember(child, m) { | ||
value: function render() { | ||
var _this4 = this; | ||
var _this2 = this; | ||
@@ -192,3 +187,3 @@ var _props = this.props, | ||
_reactNative.View, | ||
{ ref: 'item' + index, onLayout: index === 0 ? _this4.onItemLayout : undefined, key: item.key }, | ||
{ ref: 'item' + index, onLayout: index === 0 ? _this2.onItemLayout : undefined, key: item.key }, | ||
_react2['default'].createElement( | ||
@@ -195,0 +190,0 @@ _reactNative.Text, |
{ | ||
"name": "rmc-picker", | ||
"version": "3.10.4", | ||
"version": "3.10.5", | ||
"description": "React Mobile Picker Component(web and react-native)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
104792
-0.17%2776
-0.36%