2015-03-09 21:42:55 +00:00
|
|
|
/**
|
2015-03-23 20:35:08 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-03-09 21:42:55 +00:00
|
|
|
*
|
2015-03-18 15:56:49 +00:00
|
|
|
* @providesModule SliderIOS
|
2015-03-25 19:55:10 +00:00
|
|
|
* @flow
|
2015-03-09 21:42:55 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-11-17 16:43:13 +00:00
|
|
|
var Image = require('Image');
|
2016-07-05 13:34:00 +00:00
|
|
|
var NativeMethodsMixin = require('react/lib/NativeMethodsMixin');
|
|
|
|
var PropTypes = require('react/lib/ReactPropTypes');
|
2015-03-09 21:42:55 +00:00
|
|
|
var React = require('React');
|
|
|
|
var StyleSheet = require('StyleSheet');
|
|
|
|
var View = require('View');
|
|
|
|
|
2015-04-17 01:17:19 +00:00
|
|
|
var requireNativeComponent = require('requireNativeComponent');
|
2015-03-09 21:42:55 +00:00
|
|
|
|
2015-03-25 19:55:10 +00:00
|
|
|
type Event = Object;
|
|
|
|
|
2016-04-06 15:50:33 +00:00
|
|
|
/**
|
|
|
|
* **Note:** SliderIOS is deprecated and will be removed in the future. Use the cross-platform
|
|
|
|
* Slider as a drop-in replacement with the same API.
|
|
|
|
*
|
|
|
|
* An iOS-specific component used to select a single value from a range of values.
|
|
|
|
*/
|
2015-03-18 15:56:49 +00:00
|
|
|
var SliderIOS = React.createClass({
|
2015-03-09 21:42:55 +00:00
|
|
|
mixins: [NativeMethodsMixin],
|
|
|
|
|
|
|
|
propTypes: {
|
2015-11-18 19:34:05 +00:00
|
|
|
...View.propTypes,
|
2015-03-09 21:42:55 +00:00
|
|
|
/**
|
|
|
|
* Used to style and layout the `Slider`. See `StyleSheet.js` and
|
|
|
|
* `ViewStylePropTypes.js` for more info.
|
|
|
|
*/
|
|
|
|
style: View.propTypes.style,
|
|
|
|
|
|
|
|
/**
|
2015-03-26 04:29:28 +00:00
|
|
|
* Initial value of the slider. The value should be between minimumValue
|
|
|
|
* and maximumValue, which default to 0 and 1 respectively.
|
2015-03-09 21:42:55 +00:00
|
|
|
* Default value is 0.
|
|
|
|
*
|
|
|
|
* *This is not a controlled component*, e.g. if you don't update
|
2015-12-15 17:08:39 +00:00
|
|
|
* the value, the component won't be reset to its initial value.
|
2015-03-09 21:42:55 +00:00
|
|
|
*/
|
|
|
|
value: PropTypes.number,
|
|
|
|
|
2015-10-30 14:12:24 +00:00
|
|
|
/**
|
|
|
|
* Step value of the slider. The value should be
|
|
|
|
* between 0 and (maximumValue - minimumValue).
|
|
|
|
* Default value is 0.
|
|
|
|
*/
|
|
|
|
step: PropTypes.number,
|
|
|
|
|
2015-03-26 04:29:28 +00:00
|
|
|
/**
|
|
|
|
* Initial minimum value of the slider. Default value is 0.
|
|
|
|
*/
|
|
|
|
minimumValue: PropTypes.number,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initial maximum value of the slider. Default value is 1.
|
|
|
|
*/
|
|
|
|
maximumValue: PropTypes.number,
|
|
|
|
|
2015-04-23 12:42:54 +00:00
|
|
|
/**
|
|
|
|
* The color used for the track to the left of the button. Overrides the
|
|
|
|
* default blue gradient image.
|
|
|
|
*/
|
|
|
|
minimumTrackTintColor: PropTypes.string,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The color used for the track to the right of the button. Overrides the
|
|
|
|
* default blue gradient image.
|
|
|
|
*/
|
|
|
|
maximumTrackTintColor: PropTypes.string,
|
|
|
|
|
2015-10-28 12:46:47 +00:00
|
|
|
/**
|
|
|
|
* If true the user won't be able to move the slider.
|
|
|
|
* Default value is false.
|
|
|
|
*/
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
|
2015-12-21 18:29:21 +00:00
|
|
|
/**
|
|
|
|
* Assigns a single image for the track. Only static images are supported.
|
|
|
|
* The center pixel of the image will be stretched to fill the track.
|
2015-11-17 16:43:13 +00:00
|
|
|
*/
|
|
|
|
trackImage: Image.propTypes.source,
|
|
|
|
|
2015-12-21 18:29:21 +00:00
|
|
|
/**
|
|
|
|
* Assigns a minimum track image. Only static images are supported. The
|
|
|
|
* rightmost pixel of the image will be stretched to fill the track.
|
|
|
|
*/
|
|
|
|
minimumTrackImage: Image.propTypes.source,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assigns a maximum track image. Only static images are supported. The
|
|
|
|
* leftmost pixel of the image will be stretched to fill the track.
|
|
|
|
*/
|
|
|
|
maximumTrackImage: Image.propTypes.source,
|
|
|
|
|
2015-11-24 22:52:09 +00:00
|
|
|
/**
|
|
|
|
* Sets an image for the thumb. It only supports static images.
|
|
|
|
*/
|
|
|
|
thumbImage: Image.propTypes.source,
|
|
|
|
|
2015-03-09 21:42:55 +00:00
|
|
|
/**
|
|
|
|
* Callback continuously called while the user is dragging the slider.
|
|
|
|
*/
|
|
|
|
onValueChange: PropTypes.func,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback called when the user finishes changing the value (e.g. when
|
|
|
|
* the slider is released).
|
|
|
|
*/
|
|
|
|
onSlidingComplete: PropTypes.func,
|
|
|
|
},
|
|
|
|
|
2015-10-28 12:46:47 +00:00
|
|
|
getDefaultProps: function() : any {
|
|
|
|
return {
|
|
|
|
disabled: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-03-09 21:42:55 +00:00
|
|
|
render: function() {
|
2016-04-06 11:49:47 +00:00
|
|
|
console.warn(
|
|
|
|
'SliderIOS is deprecated and will be removed in ' +
|
|
|
|
'future versions of React Native. Use the cross-platform Slider ' +
|
|
|
|
'as a drop-in replacement.');
|
2016-07-05 13:34:00 +00:00
|
|
|
|
2016-08-09 13:32:41 +00:00
|
|
|
const {style, onValueChange, onSlidingComplete, ...props} = this.props;
|
2015-12-21 18:29:21 +00:00
|
|
|
props.style = [styles.slider, style];
|
2015-10-30 16:12:10 +00:00
|
|
|
|
2015-12-21 18:29:21 +00:00
|
|
|
props.onValueChange = onValueChange && ((event: Event) => {
|
|
|
|
onValueChange && onValueChange(event.nativeEvent.value);
|
2015-10-30 16:12:10 +00:00
|
|
|
});
|
|
|
|
|
2015-12-21 18:29:21 +00:00
|
|
|
props.onSlidingComplete = onSlidingComplete && ((event: Event) => {
|
|
|
|
onSlidingComplete && onSlidingComplete(event.nativeEvent.value);
|
2015-10-30 16:12:10 +00:00
|
|
|
});
|
|
|
|
|
2016-04-04 15:23:10 +00:00
|
|
|
return <RCTSlider
|
|
|
|
{...props}
|
|
|
|
onStartShouldSetResponder={() => true}
|
|
|
|
onResponderTerminationRequest={() => false}
|
|
|
|
/>;
|
2015-03-09 21:42:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
slider: {
|
|
|
|
height: 40,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-10-30 16:12:10 +00:00
|
|
|
var RCTSlider = requireNativeComponent('RCTSlider', SliderIOS);
|
2015-03-09 21:42:55 +00:00
|
|
|
|
2015-03-18 15:56:49 +00:00
|
|
|
module.exports = SliderIOS;
|