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');
|
|
|
|
const TimerMixin = require('react-timer-mixin');
|
|
|
|
const Touchable = require('Touchable');
|
|
|
|
const View = require('View');
|
|
|
|
|
|
|
|
const ensurePositiveDelayProps = require('ensurePositiveDelayProps');
|
2016-04-14 22:46:36 +00:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-08-21 08:52:13 +00:00
|
|
|
type Event = Object;
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Do not use unless you have a very good reason. All the 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-03-05 03:29:24 +00:00
|
|
|
// $FlowFixMe(>=0.41.0)
|
2016-04-14 21:27:35 +00:00
|
|
|
const 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)),
|
|
|
|
]),
|
2016-02-24 03:38:51 +00:00
|
|
|
/**
|
|
|
|
* If true, disable all interactions for this component.
|
|
|
|
*/
|
|
|
|
disabled: React.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).
|
|
|
|
*/
|
|
|
|
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-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.
|
|
|
|
*/
|
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-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 {
|
|
|
|
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
|
|
|
},
|
|
|
|
|
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;
|
|
|
|
return (React: any).cloneElement(child, {
|
2015-06-03 23:39:20 +00:00
|
|
|
accessible: this.props.accessible !== false,
|
2017-03-05 03:29:24 +00:00
|
|
|
// $FlowFixMe(>=0.41.0)
|
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-03-05 03:29:24 +00:00
|
|
|
// $FlowFixMe(>=0.41.0)
|
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;
|