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';
|
|
|
|
|
2016-04-14 21:27:35 +00:00
|
|
|
const EdgeInsetsPropType = require('EdgeInsetsPropType');
|
|
|
|
const React = require('React');
|
2017-04-12 23:09:48 +00:00
|
|
|
const PropTypes = require('prop-types');
|
2017-09-06 10:25:01 +00:00
|
|
|
/* $FlowFixMe(>=0.54.0 site=react_native_oss) This comment suppresses an error
|
|
|
|
* found when Flow v0.54 was deployed. To see the error delete this comment and
|
|
|
|
* run Flow. */
|
2016-04-14 21:27:35 +00:00
|
|
|
const TimerMixin = require('react-timer-mixin');
|
|
|
|
const Touchable = require('Touchable');
|
|
|
|
|
2017-07-07 21:24:25 +00:00
|
|
|
const createReactClass = require('create-react-class');
|
2016-04-14 21:27:35 +00:00
|
|
|
const ensurePositiveDelayProps = require('ensurePositiveDelayProps');
|
2017-09-06 10:25:01 +00:00
|
|
|
/* $FlowFixMe(>=0.54.0 site=react_native_oss) This comment suppresses an error
|
|
|
|
* found when Flow v0.54 was deployed. To see the error delete this comment and
|
|
|
|
* run Flow. */
|
2016-04-14 22:46:36 +00:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2017-03-22 16:58:00 +00:00
|
|
|
const {
|
|
|
|
AccessibilityComponentTypes,
|
|
|
|
AccessibilityTraits,
|
|
|
|
} = require('ViewAccessibility');
|
|
|
|
|
2017-12-19 02:19:22 +00:00
|
|
|
import type {PressEvent} from 'CoreEventTypes';
|
2015-08-21 08:52:13 +00:00
|
|
|
|
2016-04-14 21:27:35 +00:00
|
|
|
const PRESS_RETENTION_OFFSET = {top: 20, left: 20, right: 20, bottom: 30};
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
/**
|
2017-04-21 10:14:32 +00:00
|
|
|
* Do not use unless you have a very good reason. All elements that
|
2017-02-24 19:05:55 +00:00
|
|
|
* respond to press should have a visual feedback when touched.
|
2016-02-15 23:13:42 +00:00
|
|
|
*
|
2017-02-27 09:49:36 +00:00
|
|
|
* TouchableWithoutFeedback supports only one child.
|
|
|
|
* If you wish to have several child components, wrap them in a View.
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
2017-07-07 21:24:25 +00:00
|
|
|
const TouchableWithoutFeedback = createReactClass({
|
|
|
|
displayName: 'TouchableWithoutFeedback',
|
2018-01-24 03:00:31 +00:00
|
|
|
mixins: [TimerMixin, Touchable.Mixin],
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-03-18 22:57:49 +00:00
|
|
|
propTypes: {
|
2017-04-12 23:09:48 +00:00
|
|
|
accessible: PropTypes.bool,
|
|
|
|
accessibilityComponentType: PropTypes.oneOf(
|
2017-03-22 16:58:00 +00:00
|
|
|
AccessibilityComponentTypes
|
|
|
|
),
|
2017-04-12 23:09:48 +00:00
|
|
|
accessibilityTraits: PropTypes.oneOfType([
|
|
|
|
PropTypes.oneOf(AccessibilityTraits),
|
|
|
|
PropTypes.arrayOf(PropTypes.oneOf(AccessibilityTraits)),
|
2015-09-03 19:19:15 +00:00
|
|
|
]),
|
2016-02-24 03:38:51 +00:00
|
|
|
/**
|
|
|
|
* If true, disable all interactions for this component.
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
disabled: PropTypes.bool,
|
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).
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
onPress: PropTypes.func,
|
2017-07-18 03:26:41 +00:00
|
|
|
/**
|
|
|
|
* Called as soon as the touchable element is pressed and invoked even before onPress.
|
|
|
|
* This can be useful when making network requests.
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
onPressIn: PropTypes.func,
|
2017-07-18 03:26:41 +00:00
|
|
|
/**
|
|
|
|
* Called as soon as the touch is released even before onPress.
|
|
|
|
*/
|
|
|
|
onPressOut: PropTypes.func,
|
2015-09-01 17:31:20 +00:00
|
|
|
/**
|
|
|
|
* Invoked on mount and layout changes with
|
|
|
|
*
|
|
|
|
* `{nativeEvent: {layout: {x, y, width, height}}}`
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
onLayout: PropTypes.func,
|
2015-09-01 17:31:20 +00:00
|
|
|
|
2017-04-12 23:09:48 +00:00
|
|
|
onLongPress: 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.
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
delayPressIn: PropTypes.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
|
|
|
/**
|
|
|
|
* Delay in ms, from the release of the touch, before onPressOut is called.
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
delayPressOut: PropTypes.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
|
|
|
/**
|
|
|
|
* Delay in ms, from onPressIn, before onLongPress is called.
|
|
|
|
*/
|
2017-04-12 23:09:48 +00:00
|
|
|
delayLongPress: PropTypes.number,
|
2015-11-16 21:51:13 +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. Ensure you pass in a constant to reduce memory allocations.
|
|
|
|
*/
|
|
|
|
pressRetentionOffset: EdgeInsetsPropType,
|
2016-02-17 00:50:35 +00:00
|
|
|
/**
|
|
|
|
* This defines how far your touch can start away from the button. This is
|
|
|
|
* added to `pressRetentionOffset` when moving off of the button.
|
|
|
|
* ** NOTE **
|
|
|
|
* The touch area never extends past the parent view bounds and the Z-index
|
|
|
|
* of sibling views always takes precedence if a touch hits two overlapping
|
|
|
|
* views.
|
|
|
|
*/
|
|
|
|
hitSlop: EdgeInsetsPropType,
|
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.
|
|
|
|
*/
|
2017-12-19 02:19:22 +00:00
|
|
|
touchableHandlePress: function(e: PressEvent) {
|
2015-01-30 01:10:49 +00:00
|
|
|
this.props.onPress && this.props.onPress(e);
|
|
|
|
},
|
|
|
|
|
2017-12-19 02:19:22 +00:00
|
|
|
touchableHandleActivePressIn: function(e: PressEvent) {
|
2015-08-21 08:52:13 +00:00
|
|
|
this.props.onPressIn && this.props.onPressIn(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2017-12-19 02:19:22 +00:00
|
|
|
touchableHandleActivePressOut: function(e: PressEvent) {
|
2015-08-21 08:52:13 +00:00
|
|
|
this.props.onPressOut && this.props.onPressOut(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2017-12-19 02:19:22 +00:00
|
|
|
touchableHandleLongPress: function(e: PressEvent) {
|
2015-08-21 08:52:13 +00:00
|
|
|
this.props.onLongPress && this.props.onLongPress(e);
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2015-11-16 21:51:13 +00:00
|
|
|
touchableGetPressRectOffset: function(): typeof PRESS_RETENTION_OFFSET {
|
|
|
|
return this.props.pressRetentionOffset || PRESS_RETENTION_OFFSET;
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2016-02-17 00:50:35 +00:00
|
|
|
touchableGetHitSlop: function(): ?Object {
|
|
|
|
return this.props.hitSlop;
|
|
|
|
},
|
|
|
|
|
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 {
|
2018-01-24 03:00:31 +00:00
|
|
|
return this.props.delayLongPress === 0 ? 0 :
|
|
|
|
this.props.delayLongPress || 500;
|
[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
|
|
|
},
|
|
|
|
|
|
|
|
touchableGetPressOutDelayMS: function(): number {
|
|
|
|
return this.props.delayPressOut || 0;
|
2015-01-30 01:10:49 +00:00
|
|
|
},
|
|
|
|
|
2016-10-16 11:11:59 +00:00
|
|
|
render: function(): React.Element<any> {
|
2015-03-25 22:36:50 +00:00
|
|
|
// Note(avik): remove dynamic typecast once Flow has been upgraded
|
2017-03-05 03:29:24 +00:00
|
|
|
// $FlowFixMe(>=0.41.0)
|
2016-10-15 01:50:15 +00:00
|
|
|
const child = React.Children.only(this.props.children);
|
2016-04-14 21:27:35 +00:00
|
|
|
let children = child.props.children;
|
|
|
|
warning(
|
|
|
|
!child.type || child.type.displayName !== 'Text',
|
|
|
|
'TouchableWithoutFeedback does not work well with Text children. Wrap children in a View instead. See ' +
|
2016-04-14 22:46:36 +00:00
|
|
|
((child._owner && child._owner.getName && child._owner.getName()) || '<unknown>')
|
2016-04-14 21:27:35 +00:00
|
|
|
);
|
|
|
|
if (Touchable.TOUCH_TARGET_DEBUG && child.type && child.type.displayName === 'View') {
|
2016-12-23 00:13:33 +00:00
|
|
|
children = React.Children.toArray(children);
|
2016-04-14 21:27:35 +00:00
|
|
|
children.push(Touchable.renderDebugView({color: 'red', hitSlop: this.props.hitSlop}));
|
|
|
|
}
|
|
|
|
const style = (Touchable.TOUCH_TARGET_DEBUG && child.type && child.type.displayName === 'Text') ?
|
|
|
|
[child.props.style, {color: 'red'}] :
|
|
|
|
child.props.style;
|
2018-01-24 03:00:31 +00:00
|
|
|
return (React: any).cloneElement(child, {
|
2015-06-03 23:39:20 +00:00
|
|
|
accessible: this.props.accessible !== false,
|
2016-02-04 13:12:36 +00:00
|
|
|
accessibilityLabel: this.props.accessibilityLabel,
|
2015-09-03 19:19:15 +00:00
|
|
|
accessibilityComponentType: this.props.accessibilityComponentType,
|
|
|
|
accessibilityTraits: this.props.accessibilityTraits,
|
2017-04-07 18:47:35 +00:00
|
|
|
nativeID: this.props.nativeID,
|
2015-01-30 01:10:49 +00:00
|
|
|
testID: this.props.testID,
|
2015-09-01 17:31:20 +00:00
|
|
|
onLayout: this.props.onLayout,
|
2016-02-17 00:50:35 +00:00
|
|
|
hitSlop: this.props.hitSlop,
|
2015-01-30 01:10:49 +00:00
|
|
|
onStartShouldSetResponder: this.touchableHandleStartShouldSetResponder,
|
|
|
|
onResponderTerminationRequest: this.touchableHandleResponderTerminationRequest,
|
|
|
|
onResponderGrant: this.touchableHandleResponderGrant,
|
|
|
|
onResponderMove: this.touchableHandleResponderMove,
|
|
|
|
onResponderRelease: this.touchableHandleResponderRelease,
|
2016-04-14 21:27:35 +00:00
|
|
|
onResponderTerminate: this.touchableHandleResponderTerminate,
|
|
|
|
style,
|
|
|
|
children,
|
2015-01-30 01:10:49 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = TouchableWithoutFeedback;
|