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';
|
|
|
|
|
|
|
|
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: {
|
|
|
|
/**
|
|
|
|
* 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-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-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-03-25 19:55:10 +00:00
|
|
|
_onValueChange: function(event: Event) {
|
2015-03-09 21:42:55 +00:00
|
|
|
this.props.onChange && this.props.onChange(event);
|
|
|
|
if (event.nativeEvent.continuous) {
|
|
|
|
this.props.onValueChange &&
|
|
|
|
this.props.onValueChange(event.nativeEvent.value);
|
|
|
|
} else {
|
|
|
|
this.props.onSlidingComplete && event.nativeEvent.value !== undefined &&
|
|
|
|
this.props.onSlidingComplete(event.nativeEvent.value);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
return (
|
2015-03-17 10:08:46 +00:00
|
|
|
<RCTSlider
|
2015-03-09 21:42:55 +00:00
|
|
|
style={[styles.slider, this.props.style]}
|
|
|
|
value={this.props.value}
|
2015-04-03 18:01:16 +00:00
|
|
|
maximumValue={this.props.maximumValue}
|
|
|
|
minimumValue={this.props.minimumValue}
|
2015-04-23 12:42:54 +00:00
|
|
|
minimumTrackTintColor={this.props.minimumTrackTintColor}
|
|
|
|
maximumTrackTintColor={this.props.maximumTrackTintColor}
|
2015-03-09 21:42:55 +00:00
|
|
|
onChange={this._onValueChange}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
slider: {
|
|
|
|
height: 40,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
Added mechanism for directly mapping JS event handlers to blocks
Summary:
Currently, the system for mapping JS event handlers to blocks is quite clean on the JS side, but is clunky on the native side. The event property is passed as a boolean, which can then be checked by the native side, and if true, the native side is supposed to send an event via the event dispatcher.
This diff adds the facility to declare the property as a block instead. This means that the event side can simply call the block, and it will automatically send the event. Because the blocks for bubbling and direct events are named differently, we can also use this to generate the event registration data and get rid of the arrays of event names.
The name of the event is inferred from the property name, which means that the property for an event called "load" must be called `onLoad` or the mapping won't work. This can be optionally remapped to a different property name on the view itself if necessary, e.g.
RCT_REMAP_VIEW_PROPERTY(onLoad, loadEventBlock, RCTDirectEventBlock)
If you don't want to use this mechanism then for now it is still possible to declare the property as a BOOL instead and use the old mechanism (this approach is now deprecated however, and may eventually be removed altogether).
2015-09-02 12:58:10 +00:00
|
|
|
var RCTSlider = requireNativeComponent('RCTSlider', SliderIOS, {
|
|
|
|
nativeOnly: { onChange: true },
|
|
|
|
});
|
2015-03-09 21:42:55 +00:00
|
|
|
|
2015-03-18 15:56:49 +00:00
|
|
|
module.exports = SliderIOS;
|