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');
|
2015-03-09 21:42:55 +00:00
|
|
|
var NativeMethodsMixin = require('NativeMethodsMixin');
|
|
|
|
var PropTypes = require('ReactPropTypes');
|
|
|
|
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;
|
|
|
|
|
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-04-03 16:56:55 +00:00
|
|
|
* the value, the component won't be reset to its inital 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-11-17 16:43:13 +00:00
|
|
|
/**
|
|
|
|
* Sets an image for the track. It only supports images that are included as assets
|
|
|
|
*/
|
|
|
|
trackImage: 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() {
|
2015-10-30 16:12:10 +00:00
|
|
|
|
|
|
|
let onValueChange = this.props.onValueChange && ((event: Event) => {
|
|
|
|
this.props.onValueChange &&
|
|
|
|
this.props.onValueChange(event.nativeEvent.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
let onSlidingComplete = this.props.onSlidingComplete && ((event: Event) => {
|
|
|
|
this.props.onSlidingComplete &&
|
|
|
|
this.props.onSlidingComplete(event.nativeEvent.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
let {style, ...props} = this.props;
|
|
|
|
style = [styles.slider, this.props.style];
|
|
|
|
|
2015-03-09 21:42:55 +00:00
|
|
|
return (
|
2015-03-17 10:08:46 +00:00
|
|
|
<RCTSlider
|
2015-10-30 16:12:10 +00:00
|
|
|
{...props}
|
|
|
|
style={style}
|
|
|
|
onValueChange={onValueChange}
|
|
|
|
onSlidingComplete={onSlidingComplete}
|
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;
|