2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +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-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* @providesModule TouchableWithoutFeedback
|
2015-03-25 22:36:50 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var React = require('React');
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
var TimerMixin = require('react-timer-mixin');
|
2015-01-30 01:10:49 +00:00
|
|
|
var Touchable = require('Touchable');
|
2015-09-03 19:19:15 +00:00
|
|
|
var View = require('View');
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
var ensurePositiveDelayProps = require('ensurePositiveDelayProps');
|
2015-01-30 01:10:49 +00:00
|
|
|
var onlyChild = require('onlyChild');
|
|
|
|
|
2015-08-21 08:52:13 +00:00
|
|
|
type Event = Object;
|
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
/**
|
|
|
|
* When the scroll view is disabled, this defines how far your touch may move
|
|
|
|
* off of the button, before deactivating the button. Once deactivated, try
|
|
|
|
* moving it back and you'll see that the button is once again reactivated!
|
|
|
|
* Move it back and forth several times while the scroll view is disabled.
|
|
|
|
*/
|
|
|
|
var PRESS_RECT_OFFSET = {top: 20, left: 20, right: 20, bottom: 30};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do not use unless you have a very good reason. All the elements that
|
|
|
|
* respond to press should have a visual feedback when touched. This is
|
|
|
|
* one of the primary reason a "web" app doesn't feel "native".
|
|
|
|
*/
|
|
|
|
var TouchableWithoutFeedback = React.createClass({
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
mixins: [TimerMixin, Touchable.Mixin],
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-03-18 22:57:49 +00:00
|
|
|
propTypes: {
|
2015-09-03 19:19:15 +00:00
|
|
|
accessible: React.PropTypes.bool,
|
|
|
|
accessibilityComponentType: React.PropTypes.oneOf(View.AccessibilityComponentType),
|
|
|
|
accessibilityTraits: React.PropTypes.oneOfType([
|
|
|
|
React.PropTypes.oneOf(View.AccessibilityTraits),
|
|
|
|
React.PropTypes.arrayOf(React.PropTypes.oneOf(View.AccessibilityTraits)),
|
|
|
|
]),
|
2015-03-18 22:57:49 +00:00
|
|
|
/**
|
|
|
|
* Called when the touch is released, but not if cancelled (e.g. by a scroll
|
|
|
|
* that steals the responder lock).
|
|
|
|
*/
|
|
|
|
onPress: React.PropTypes.func,
|
|
|
|
onPressIn: React.PropTypes.func,
|
|
|
|
onPressOut: React.PropTypes.func,
|
2015-09-01 17:31:20 +00:00
|
|
|
/**
|
|
|
|
* Invoked on mount and layout changes with
|
|
|
|
*
|
|
|
|
* `{nativeEvent: {layout: {x, y, width, height}}}`
|
|
|
|
*/
|
|
|
|
onLayout: React.PropTypes.func,
|
|
|
|
|
2015-03-18 22:57:49 +00:00
|
|
|
onLongPress: React.PropTypes.func,
|
2015-09-01 17:31:20 +00:00
|
|
|
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
/**
|
|
|
|
* Delay in ms, from the start of the touch, before onPressIn is called.
|
|
|
|
*/
|
|
|
|
delayPressIn: React.PropTypes.number,
|
|
|
|
/**
|
|
|
|
* Delay in ms, from the release of the touch, before onPressOut is called.
|
|
|
|
*/
|
|
|
|
delayPressOut: React.PropTypes.number,
|
|
|
|
/**
|
|
|
|
* Delay in ms, from onPressIn, before onLongPress is called.
|
|
|
|
*/
|
|
|
|
delayLongPress: React.PropTypes.number,
|
2015-03-18 22:57:49 +00:00
|
|
|
},
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return this.touchableGetInitialState();
|
|
|
|
},
|
|
|
|
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
componentDidMount: function() {
|
|
|
|
ensurePositiveDelayProps(this.props);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillReceiveProps: function(nextProps: Object) {
|
|
|
|
ensurePositiveDelayProps(nextProps);
|
|
|
|
},
|
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
/**
|
|
|
|
* `Touchable.Mixin` self callbacks. The mixin will invoke these if they are
|
|
|
|
* defined on your component.
|
|
|
|
*/
|
2015-03-25 22:36:50 +00:00
|
|
|
touchableHandlePress: function(e: Event) {
|
2015-01-30 01:10:49 +00:00
|
|
|
this.props.onPress && this.props.onPress(e);
|
|
|
|
},
|
|
|
|
|
2015-08-21 08:52:13 +00:00
|
|
|
touchableHandleActivePressIn: function(e: Event) {
|
|
|
|
this.props.onPressIn && this.props.onPressIn(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2015-08-21 08:52:13 +00:00
|
|
|
touchableHandleActivePressOut: function(e: Event) {
|
|
|
|
this.props.onPressOut && this.props.onPressOut(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2015-08-21 08:52:13 +00:00
|
|
|
touchableHandleLongPress: function(e: Event) {
|
|
|
|
this.props.onLongPress && this.props.onLongPress(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2015-03-25 22:36:50 +00:00
|
|
|
touchableGetPressRectOffset: function(): typeof PRESS_RECT_OFFSET {
|
2015-01-30 01:10:49 +00:00
|
|
|
return PRESS_RECT_OFFSET; // Always make sure to predeclare a constant!
|
|
|
|
},
|
|
|
|
|
2015-03-25 22:36:50 +00:00
|
|
|
touchableGetHighlightDelayMS: function(): number {
|
[Touchable] Add custom delay props to Touchable components
Summary:
@public
This PR adds quite a bit of functionality to the Touchable components, allowing the ms delays of each of the handlers (`onPressIn, onPressOut, onPress, onLongPress`) to be configured.
It adds the following props to `TouchableWithoutFeedback, TouchableOpacity, and TouchableHighlight`:
```javascript
/**
* Delay in ms, from the release of the touch, before onPress is called.
*/
delayOnPress: React.PropTypes.number,
/**
* Delay in ms, from the start of the touch, before onPressIn is called.
*/
delayOnPressIn: React.PropTypes.number,
/**
* Delay in ms, from the release of the touch, before onPressOut is called.
*/
delayOnPressOut: React.PropTypes.number,
/**
* Delay in ms, from onPressIn, before onLongPress is called.
*/
delayOnLongPress: React.PropTypes.number,
```
`TouchableHighlight` also gets an additional set of props:
```javascript
/**
* Delay in ms, from the start of the touch, before the highlight is shown.
*/
delayHighlightShow: React.PropTypes.number,
/**
* Del
...
```
Closes https://github.com/facebook/react-native/pull/1255
Github Author: jmstout <git@jmstout.com>
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-06-03 19:56:32 +00:00
|
|
|
return this.props.delayPressIn || 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
touchableGetLongPressDelayMS: function(): number {
|
|
|
|
return this.props.delayLongPress === 0 ? 0 :
|
|
|
|
this.props.delayLongPress || 500;
|
|
|
|
},
|
|
|
|
|
|
|
|
touchableGetPressOutDelayMS: function(): number {
|
|
|
|
return this.props.delayPressOut || 0;
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2015-03-25 22:36:50 +00:00
|
|
|
render: function(): ReactElement {
|
|
|
|
// Note(avik): remove dynamic typecast once Flow has been upgraded
|
2015-04-06 15:38:56 +00:00
|
|
|
return (React: any).cloneElement(onlyChild(this.props.children), {
|
2015-06-03 23:39:20 +00:00
|
|
|
accessible: this.props.accessible !== false,
|
2015-09-03 19:19:15 +00:00
|
|
|
accessibilityComponentType: this.props.accessibilityComponentType,
|
|
|
|
accessibilityTraits: this.props.accessibilityTraits,
|
2015-01-30 01:10:49 +00:00
|
|
|
testID: this.props.testID,
|
2015-09-01 17:31:20 +00:00
|
|
|
onLayout: this.props.onLayout,
|
2015-01-30 01:10:49 +00:00
|
|
|
onStartShouldSetResponder: this.touchableHandleStartShouldSetResponder,
|
|
|
|
onResponderTerminationRequest: this.touchableHandleResponderTerminationRequest,
|
|
|
|
onResponderGrant: this.touchableHandleResponderGrant,
|
|
|
|
onResponderMove: this.touchableHandleResponderMove,
|
|
|
|
onResponderRelease: this.touchableHandleResponderRelease,
|
|
|
|
onResponderTerminate: this.touchableHandleResponderTerminate
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = TouchableWithoutFeedback;
|