Files
react-native/packages/rn-tester/js/examples/JSResponderHandlerExample/JSResponderHandlerExample.js
Sam Zhou 23c8787fe2 Add annotations to fix future errors after fix for unsound array types (#52691)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52691

Unannotated array literals are unsound in Flow right now. This diff adds in annotations and makes a few things readonly, to reduce future errors.

Changelog: [Internal]

Reviewed By: marcoww6

Differential Revision: D78519638

fbshipit-source-id: d98a7668ecf97bcc87dcb3fad25ade736d885d9a
2025-07-17 17:30:43 -07:00

85 lines
2.2 KiB
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
*/
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
import RNTesterText from '../../components/RNTesterText';
import React from 'react';
import {PanResponder, ScrollView, StyleSheet, View} from 'react-native';
exports.displayName = 'JSResponderHandlerExample';
exports.framework = 'React';
exports.title = 'JSResponderHandler';
exports.category = 'Basic';
exports.description = 'Simple example to test JSResponderHandler.';
const _gesture = PanResponder.create({
onMoveShouldSetPanResponder: (e, gestureState) => {
return Math.abs(gestureState.moveX) > 150;
},
});
exports.examples = [
{
title: 'JSResponderHandlerExample',
description:
('This example tests the native JSResponderHandler: when the user ' +
'scrolls on the right side of the ScrollView (white area located on the' +
' right side of the gray area), the touch event is managed by native ' +
'which blocks the scroll event.': string),
render: function (): React.Node {
const views = [];
for (let i = 0; i < 100; i++) {
views[i] = (
<View key={i} style={styles.row} collapsable={false}>
<View style={styles.touchable_area} collapsable={false}>
<RNTesterText
testID="row_js_responder_handler"
style={styles.rowText}>
I am row {i}
</RNTesterText>
</View>
</View>
);
}
return (
<View
style={styles.container}
{..._gesture.panHandlers}
collapsable={false}>
<ScrollView style={styles.scrollview} testID="scroll_view">
{views}
</ScrollView>
</View>
);
},
},
] as Array<RNTesterModuleExample>;
const styles = StyleSheet.create({
container: {
flex: 1,
},
scrollview: {
flex: 1,
},
row: {
height: 25,
},
rowText: {
color: 'black',
},
touchable_area: {
width: 150,
backgroundColor: 'lightgray',
},
});