2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2015-03-25 22:36:50 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
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');
|
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');
|
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 + accessibilityComponentType >> accessibilityRole + accessibilityStates 1/3
Summary:
Previously, I created two props, `accessibilityRole` and `accessibilityStates` for view. These props were intended to be a cross-platform solution to replace `accessibilityComponentType` on Android and `accessibilityTraits` on iOS.
In this stack, I ran a code mod to replace instances of the two old properties used in our codebase with the new ones.
For this diff, I wrote a script that focuses on replacing instances of the two properties that only added a single role to `accessibilityTraits` and `accessibilityComponentType`. In summary, this script:
* replaces instances of `accessibilityTraits = "<iOStrait>"` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {['<iOStrait>']}` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {"<iOStrait>"}` with `accessibilityRole = "<iOStrait>"`
* removes instances of `accessibilityComponentType`
```
The following is the codeshift script I wrote:
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* format
*/
'use strict';
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
let hasChanges = false;
const elements = root.find(j.JSXElement);
let values;
let valuess;
let valuesss;
elements.forEach(path => {
const openEl = path.node.openingElement;
hasChanges = true;
for (let i = 0; i < openEl.attributes.length; i++) {
if (openEl.attributes[i].name.name === 'accessibilityComponentType') {
openEl.attributes.splice(i, 1);
}
if (openEl.attributes[i].name.name === 'accessibilityTraits') {
if (openEl.attributes[i].value.expression) {
if (openEl.attributes[i].value.expression.type === 'Literal') {
values = openEl.attributes[i].value.expression.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(values),
);
}
}
if (openEl.attributes[i].value) {
if (
openEl.attributes[i].value &&
openEl.attributes[i].value.type === 'Literal'
) {
valuess = openEl.attributes[i].value.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuess),
);
}
}
if (openEl.attributes[i].value.expression) {
if (
openEl.attributes[i].value.expression.type === 'ArrayExpression' &&
openEl.attributes[i].value.expression.elements.length === 1
) {
valuesss = openEl.attributes[i].value.expression.elements[0].value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuesss),
);
}
}
}
}
});
if (hasChanges) {
return root.toSource();
} else {
return null;
}
}
```
I then used this command to run the codemod:
```
./scripts/js1/node_modules/.bin/jscodeshift -c 10 --parser=flow --transform ./scripts/js1/commands/codeshift/add-accessibilityRoles/index.js /data/sandcastle/boxes/instance-ide/xplat/js/RKJSModules/Apps
hg status -n | xargs /data/sandcastle/boxes/instance-ide/tools/third-party/prettier/node_modules/.bin/prettier --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma all --parser flow --write --require-pragma --no-config
hg status -n | xargs ./scripts/eslint/eslint --plugin lint --no-eslintrc --parser babel-eslint --rule "lint/sort-requires: 1" --fix
js1 build buckfiles
```
Lastly, I had to add a few manual fixes:
* Checked that instances of `accessibilityComponentType` that were deleted were indeed replaced with `accessibilityRole`
* Added props `accessibilityRole` and `accessibilityStates` to `TouchableWithoutFeedBack` components and `TextProps` because they don't inherit properties directly from view.
Reviewed By: PeteTheHeat
Differential Revision: D8937323
fbshipit-source-id: 85bf4d596e8e7c7ace75ab0b0e68599043760840
2018-07-26 06:37:14 +00:00
|
|
|
AccessibilityRoles,
|
|
|
|
AccessibilityStates,
|
2017-03-22 16:58:00 +00:00
|
|
|
AccessibilityTraits,
|
|
|
|
} = require('ViewAccessibility');
|
|
|
|
|
2017-12-19 02:19:22 +00:00
|
|
|
import type {PressEvent} from 'CoreEventTypes';
|
2018-05-13 06:10:42 +00:00
|
|
|
import type {EdgeInsetsProp} from 'EdgeInsetsPropType';
|
|
|
|
import type {
|
|
|
|
AccessibilityComponentType,
|
accessibilityTraits + accessibilityComponentType >> accessibilityRole + accessibilityStates 1/3
Summary:
Previously, I created two props, `accessibilityRole` and `accessibilityStates` for view. These props were intended to be a cross-platform solution to replace `accessibilityComponentType` on Android and `accessibilityTraits` on iOS.
In this stack, I ran a code mod to replace instances of the two old properties used in our codebase with the new ones.
For this diff, I wrote a script that focuses on replacing instances of the two properties that only added a single role to `accessibilityTraits` and `accessibilityComponentType`. In summary, this script:
* replaces instances of `accessibilityTraits = "<iOStrait>"` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {['<iOStrait>']}` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {"<iOStrait>"}` with `accessibilityRole = "<iOStrait>"`
* removes instances of `accessibilityComponentType`
```
The following is the codeshift script I wrote:
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* format
*/
'use strict';
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
let hasChanges = false;
const elements = root.find(j.JSXElement);
let values;
let valuess;
let valuesss;
elements.forEach(path => {
const openEl = path.node.openingElement;
hasChanges = true;
for (let i = 0; i < openEl.attributes.length; i++) {
if (openEl.attributes[i].name.name === 'accessibilityComponentType') {
openEl.attributes.splice(i, 1);
}
if (openEl.attributes[i].name.name === 'accessibilityTraits') {
if (openEl.attributes[i].value.expression) {
if (openEl.attributes[i].value.expression.type === 'Literal') {
values = openEl.attributes[i].value.expression.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(values),
);
}
}
if (openEl.attributes[i].value) {
if (
openEl.attributes[i].value &&
openEl.attributes[i].value.type === 'Literal'
) {
valuess = openEl.attributes[i].value.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuess),
);
}
}
if (openEl.attributes[i].value.expression) {
if (
openEl.attributes[i].value.expression.type === 'ArrayExpression' &&
openEl.attributes[i].value.expression.elements.length === 1
) {
valuesss = openEl.attributes[i].value.expression.elements[0].value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuesss),
);
}
}
}
}
});
if (hasChanges) {
return root.toSource();
} else {
return null;
}
}
```
I then used this command to run the codemod:
```
./scripts/js1/node_modules/.bin/jscodeshift -c 10 --parser=flow --transform ./scripts/js1/commands/codeshift/add-accessibilityRoles/index.js /data/sandcastle/boxes/instance-ide/xplat/js/RKJSModules/Apps
hg status -n | xargs /data/sandcastle/boxes/instance-ide/tools/third-party/prettier/node_modules/.bin/prettier --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma all --parser flow --write --require-pragma --no-config
hg status -n | xargs ./scripts/eslint/eslint --plugin lint --no-eslintrc --parser babel-eslint --rule "lint/sort-requires: 1" --fix
js1 build buckfiles
```
Lastly, I had to add a few manual fixes:
* Checked that instances of `accessibilityComponentType` that were deleted were indeed replaced with `accessibilityRole`
* Added props `accessibilityRole` and `accessibilityStates` to `TouchableWithoutFeedBack` components and `TextProps` because they don't inherit properties directly from view.
Reviewed By: PeteTheHeat
Differential Revision: D8937323
fbshipit-source-id: 85bf4d596e8e7c7ace75ab0b0e68599043760840
2018-07-26 06:37:14 +00:00
|
|
|
AccessibilityRole,
|
|
|
|
AccessibilityState,
|
2018-05-13 06:10:46 +00:00
|
|
|
AccessibilityTraits as AccessibilityTraitsFlow,
|
2018-05-13 06:10:42 +00:00
|
|
|
} from 'ViewAccessibility';
|
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
|
|
|
|
2018-05-13 06:10:46 +00:00
|
|
|
export type Props = $ReadOnly<{|
|
|
|
|
accessible?: ?boolean,
|
|
|
|
accessibilityComponentType?: ?AccessibilityComponentType,
|
2018-05-13 06:10:42 +00:00
|
|
|
accessibilityLabel?:
|
|
|
|
| null
|
|
|
|
| React$PropType$Primitive<any>
|
|
|
|
| string
|
|
|
|
| Array<any>
|
|
|
|
| any,
|
2018-07-26 00:33:58 +00:00
|
|
|
accessibilityHint?: string,
|
accessibilityTraits + accessibilityComponentType >> accessibilityRole + accessibilityStates 1/3
Summary:
Previously, I created two props, `accessibilityRole` and `accessibilityStates` for view. These props were intended to be a cross-platform solution to replace `accessibilityComponentType` on Android and `accessibilityTraits` on iOS.
In this stack, I ran a code mod to replace instances of the two old properties used in our codebase with the new ones.
For this diff, I wrote a script that focuses on replacing instances of the two properties that only added a single role to `accessibilityTraits` and `accessibilityComponentType`. In summary, this script:
* replaces instances of `accessibilityTraits = "<iOStrait>"` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {['<iOStrait>']}` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {"<iOStrait>"}` with `accessibilityRole = "<iOStrait>"`
* removes instances of `accessibilityComponentType`
```
The following is the codeshift script I wrote:
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* format
*/
'use strict';
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
let hasChanges = false;
const elements = root.find(j.JSXElement);
let values;
let valuess;
let valuesss;
elements.forEach(path => {
const openEl = path.node.openingElement;
hasChanges = true;
for (let i = 0; i < openEl.attributes.length; i++) {
if (openEl.attributes[i].name.name === 'accessibilityComponentType') {
openEl.attributes.splice(i, 1);
}
if (openEl.attributes[i].name.name === 'accessibilityTraits') {
if (openEl.attributes[i].value.expression) {
if (openEl.attributes[i].value.expression.type === 'Literal') {
values = openEl.attributes[i].value.expression.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(values),
);
}
}
if (openEl.attributes[i].value) {
if (
openEl.attributes[i].value &&
openEl.attributes[i].value.type === 'Literal'
) {
valuess = openEl.attributes[i].value.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuess),
);
}
}
if (openEl.attributes[i].value.expression) {
if (
openEl.attributes[i].value.expression.type === 'ArrayExpression' &&
openEl.attributes[i].value.expression.elements.length === 1
) {
valuesss = openEl.attributes[i].value.expression.elements[0].value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuesss),
);
}
}
}
}
});
if (hasChanges) {
return root.toSource();
} else {
return null;
}
}
```
I then used this command to run the codemod:
```
./scripts/js1/node_modules/.bin/jscodeshift -c 10 --parser=flow --transform ./scripts/js1/commands/codeshift/add-accessibilityRoles/index.js /data/sandcastle/boxes/instance-ide/xplat/js/RKJSModules/Apps
hg status -n | xargs /data/sandcastle/boxes/instance-ide/tools/third-party/prettier/node_modules/.bin/prettier --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma all --parser flow --write --require-pragma --no-config
hg status -n | xargs ./scripts/eslint/eslint --plugin lint --no-eslintrc --parser babel-eslint --rule "lint/sort-requires: 1" --fix
js1 build buckfiles
```
Lastly, I had to add a few manual fixes:
* Checked that instances of `accessibilityComponentType` that were deleted were indeed replaced with `accessibilityRole`
* Added props `accessibilityRole` and `accessibilityStates` to `TouchableWithoutFeedBack` components and `TextProps` because they don't inherit properties directly from view.
Reviewed By: PeteTheHeat
Differential Revision: D8937323
fbshipit-source-id: 85bf4d596e8e7c7ace75ab0b0e68599043760840
2018-07-26 06:37:14 +00:00
|
|
|
accessibilityRole?: ?AccessibilityRole,
|
|
|
|
accessibilityStates?: ?Array<AccessibilityState>,
|
2018-05-13 06:10:46 +00:00
|
|
|
accessibilityTraits?: ?AccessibilityTraitsFlow,
|
2018-05-13 06:10:42 +00:00
|
|
|
children?: ?React.Node,
|
|
|
|
delayLongPress?: ?number,
|
|
|
|
delayPressIn?: ?number,
|
|
|
|
delayPressOut?: ?number,
|
|
|
|
disabled?: ?boolean,
|
|
|
|
hitSlop?: ?EdgeInsetsProp,
|
|
|
|
nativeID?: ?string,
|
|
|
|
onLayout?: ?Function,
|
|
|
|
onLongPress?: ?Function,
|
|
|
|
onPress?: ?Function,
|
|
|
|
onPressIn?: ?Function,
|
|
|
|
onPressOut?: ?Function,
|
|
|
|
pressRetentionOffset?: ?EdgeInsetsProp,
|
|
|
|
rejectResponderTermination?: ?boolean,
|
|
|
|
testID?: ?string,
|
|
|
|
|}>;
|
|
|
|
|
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
|
|
|
*/
|
2018-05-13 06:10:42 +00:00
|
|
|
const TouchableWithoutFeedback = ((createReactClass({
|
2017-07-07 21:24:25 +00:00
|
|
|
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,
|
2018-05-13 06:10:42 +00:00
|
|
|
accessibilityLabel: PropTypes.node,
|
2018-07-26 00:33:58 +00:00
|
|
|
accessibilityHint: PropTypes.string,
|
2018-05-11 02:06:46 +00:00
|
|
|
accessibilityComponentType: PropTypes.oneOf(AccessibilityComponentTypes),
|
accessibilityTraits + accessibilityComponentType >> accessibilityRole + accessibilityStates 1/3
Summary:
Previously, I created two props, `accessibilityRole` and `accessibilityStates` for view. These props were intended to be a cross-platform solution to replace `accessibilityComponentType` on Android and `accessibilityTraits` on iOS.
In this stack, I ran a code mod to replace instances of the two old properties used in our codebase with the new ones.
For this diff, I wrote a script that focuses on replacing instances of the two properties that only added a single role to `accessibilityTraits` and `accessibilityComponentType`. In summary, this script:
* replaces instances of `accessibilityTraits = "<iOStrait>"` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {['<iOStrait>']}` with `accessibilityRole = "<iOStrait>"`
* replaces instances of `accessibilityTraits = {"<iOStrait>"}` with `accessibilityRole = "<iOStrait>"`
* removes instances of `accessibilityComponentType`
```
The following is the codeshift script I wrote:
/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* format
*/
'use strict';
export default function transformer(file, api) {
const j = api.jscodeshift;
const root = j(file.source);
let hasChanges = false;
const elements = root.find(j.JSXElement);
let values;
let valuess;
let valuesss;
elements.forEach(path => {
const openEl = path.node.openingElement;
hasChanges = true;
for (let i = 0; i < openEl.attributes.length; i++) {
if (openEl.attributes[i].name.name === 'accessibilityComponentType') {
openEl.attributes.splice(i, 1);
}
if (openEl.attributes[i].name.name === 'accessibilityTraits') {
if (openEl.attributes[i].value.expression) {
if (openEl.attributes[i].value.expression.type === 'Literal') {
values = openEl.attributes[i].value.expression.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(values),
);
}
}
if (openEl.attributes[i].value) {
if (
openEl.attributes[i].value &&
openEl.attributes[i].value.type === 'Literal'
) {
valuess = openEl.attributes[i].value.value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuess),
);
}
}
if (openEl.attributes[i].value.expression) {
if (
openEl.attributes[i].value.expression.type === 'ArrayExpression' &&
openEl.attributes[i].value.expression.elements.length === 1
) {
valuesss = openEl.attributes[i].value.expression.elements[0].value;
openEl.attributes[i] = j.jsxAttribute(
j.jsxIdentifier('accessibilityRole'),
j.literal(valuesss),
);
}
}
}
}
});
if (hasChanges) {
return root.toSource();
} else {
return null;
}
}
```
I then used this command to run the codemod:
```
./scripts/js1/node_modules/.bin/jscodeshift -c 10 --parser=flow --transform ./scripts/js1/commands/codeshift/add-accessibilityRoles/index.js /data/sandcastle/boxes/instance-ide/xplat/js/RKJSModules/Apps
hg status -n | xargs /data/sandcastle/boxes/instance-ide/tools/third-party/prettier/node_modules/.bin/prettier --single-quote --no-bracket-spacing --jsx-bracket-same-line --trailing-comma all --parser flow --write --require-pragma --no-config
hg status -n | xargs ./scripts/eslint/eslint --plugin lint --no-eslintrc --parser babel-eslint --rule "lint/sort-requires: 1" --fix
js1 build buckfiles
```
Lastly, I had to add a few manual fixes:
* Checked that instances of `accessibilityComponentType` that were deleted were indeed replaced with `accessibilityRole`
* Added props `accessibilityRole` and `accessibilityStates` to `TouchableWithoutFeedBack` components and `TextProps` because they don't inherit properties directly from view.
Reviewed By: PeteTheHeat
Differential Revision: D8937323
fbshipit-source-id: 85bf4d596e8e7c7ace75ab0b0e68599043760840
2018-07-26 06:37:14 +00:00
|
|
|
accessibilityRole: PropTypes.oneOf(AccessibilityRoles),
|
|
|
|
accessibilityStates: PropTypes.arrayOf(
|
|
|
|
PropTypes.oneOf(AccessibilityStates),
|
|
|
|
),
|
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
|
|
|
]),
|
2018-06-11 22:11:01 +00:00
|
|
|
/**
|
|
|
|
* When `accessible` is true (which is the default) this may be called when
|
|
|
|
* the OS-specific concept of "focus" occurs. Some platforms may not have
|
|
|
|
* the concept of focus.
|
|
|
|
*/
|
|
|
|
onFocus: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* When `accessible` is true (which is the default) this may be called when
|
|
|
|
* the OS-specific concept of "blur" occurs, meaning the element lost focus.
|
|
|
|
* Some platforms may not have the concept of blur.
|
|
|
|
*/
|
|
|
|
onBlur: PropTypes.func,
|
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
|
|
|
/**
|
2018-05-11 02:06:46 +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
|
|
|
/**
|
2018-05-11 02:06:46 +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
|
|
|
|
2018-05-13 06:10:42 +00:00
|
|
|
nativeID: PropTypes.string,
|
|
|
|
testID: PropTypes.string,
|
|
|
|
|
[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);
|
|
|
|
},
|
|
|
|
|
2018-02-08 18:26:45 +00:00
|
|
|
UNSAFE_componentWillReceiveProps: function(nextProps: Object) {
|
[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
|
|
|
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 {
|
2018-05-12 17:25:08 +00:00
|
|
|
// $FlowFixMe Invalid prop usage
|
2015-11-16 21:51:13 +00:00
|
|
|
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-05-11 02:06:46 +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 ' +
|
2018-05-11 02:06:46 +00:00
|
|
|
((child._owner && child._owner.getName && child._owner.getName()) ||
|
|
|
|
'<unknown>'),
|
2016-04-14 21:27:35 +00:00
|
|
|
);
|
2018-05-11 02:06:46 +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);
|
2018-05-11 02:06:46 +00:00
|
|
|
children.push(
|
|
|
|
Touchable.renderDebugView({color: 'red', hitSlop: this.props.hitSlop}),
|
|
|
|
);
|
2016-04-14 21:27:35 +00:00
|
|
|
}
|
2018-05-11 02:06:46 +00:00
|
|
|
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,
|
2018-07-26 00:33:58 +00:00
|
|
|
accessibilityHint: this.props.accessibilityHint,
|
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,
|
2018-05-11 02:06:46 +00:00
|
|
|
onResponderTerminationRequest: this
|
|
|
|
.touchableHandleResponderTerminationRequest,
|
2015-01-30 01:10:49 +00:00
|
|
|
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
|
|
|
});
|
2018-05-11 02:06:46 +00:00
|
|
|
},
|
2018-05-13 06:10:42 +00:00
|
|
|
}): any): React.ComponentType<Props>);
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
module.exports = TouchableWithoutFeedback;
|