Files
react-native/packages/rn-tester/js/examples/Experimental/W3CPointerEventPlatformTests/PointerEventAttributesNoHoverPointers.js
Tim YungandFacebook GitHub Bot 1977dd6596 RN: Sort Pragmas in Headers (#51554)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/51554

Sorts pragma directives file headers in React Native.

Changelog:
[Internal]

Reviewed By: SamChou19815

Differential Revision: D75264593

fbshipit-source-id: 9e4b253dd0fc94dc2fc469d7114b93a8aae305f4
2025-05-22 21:18:53 -07:00

246 lines
7.6 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 {PlatformTestComponentBaseProps} from '../PlatformTest/RNTesterPlatformTestTypes';
import type {HostInstance, LayoutRectangle, PointerEvent} from 'react-native';
import RNTesterPlatformTest from '../PlatformTest/RNTesterPlatformTest';
import {check_PointerEvent, useTestEventHandler} from './PointerEventSupport';
import * as React from 'react';
import {useCallback, useRef, useState} from 'react';
import {StyleSheet, View} from 'react-native';
const eventList = [
'pointerOver',
'pointerEnter',
'pointerDown',
'pointerUp',
'pointerOut',
'pointerLeave',
];
function PointerEventAttributesNoHoverPointersTestCase(
props: PlatformTestComponentBaseProps,
) {
const {harness} = props;
const detected_pointertypesRef = useRef(({}: {[string]: boolean}));
const detected_eventTypesRef = useRef(({}: {[string]: boolean}));
const expectedPointerIdRef = useRef(NaN);
const [square1Visible, setSquare1Visible] = useState(true);
const [square2Visible, setSquare2Visible] = useState(false);
// Adapted from https://github.com/web-platform-tests/wpt/blob/8222ceeeebd4beab32f101ebf651a5dd7c5e8365/pointerevents/pointerevent_attributes_nohover_pointers.html#L25
const checkPointerEventAttributes = useCallback(
(
event: PointerEvent,
eventType: string,
targetLayout: LayoutRectangle,
testNamePrefix: string,
expectedPointerType: string,
) => {
const detected_pointertypes = detected_pointertypesRef.current;
const detected_eventTypes = detected_eventTypesRef.current;
const expectedPointerId = expectedPointerIdRef.current;
if (detected_eventTypes[eventType]) {
return;
}
const expectedEventType =
eventList[Object.keys(detected_eventTypes).length].toLowerCase();
detected_eventTypes[eventType] = true;
const pointerTestName =
testNamePrefix + ' ' + expectedPointerType + ' ' + expectedEventType;
detected_pointertypes[event.nativeEvent.pointerType] = true;
harness.test(
({assert_equals}) => {
assert_equals(
eventType,
expectedEventType,
'Event.type should be ' + expectedEventType,
);
},
pointerTestName + "'s type should be " + expectedEventType,
);
// Test button and buttons
harness.test(({assert_equals}) => {
assert_equals(event.nativeEvent.button, 0, 'Button attribute is 0');
}, pointerTestName + "'s button attribute is 0 when left mouse button is pressed.");
if (
eventType === 'pointerdown' ||
eventType === 'pointerover' ||
eventType === 'pointerenter'
) {
harness.test(({assert_equals}) => {
assert_equals(event.nativeEvent.buttons, 1, 'Buttons attribute is 1');
}, pointerTestName + "'s buttons attribute is 1 when left mouse button is pressed.");
} else {
harness.test(({assert_equals}) => {
assert_equals(event.nativeEvent.buttons, 0, 'Buttons attribute is 0');
}, pointerTestName + "'s buttons is 0 when mouse buttons are in released state.");
}
const left = targetLayout.x;
const top = targetLayout.y;
const right = targetLayout.x + targetLayout.width;
const bottom = targetLayout.y + targetLayout.height;
// Test clientX and clientY
harness.test(({assert_true}) => {
assert_true(
event.nativeEvent.clientX >= left &&
event.nativeEvent.clientX < right &&
event.nativeEvent.clientY >= top &&
event.nativeEvent.clientY < bottom,
'ClientX/Y should be in the boundaries of the box',
);
}, pointerTestName + "'s ClientX and ClientY attributes are correct.");
check_PointerEvent(harness, event, eventType, {
testNamePrefix,
});
// Test isPrimary value
harness.test(({assert_equals}) => {
assert_equals(
event.nativeEvent.isPrimary,
true,
'isPrimary should be true',
);
}, pointerTestName + '.isPrimary attribute is correct.');
// Test pointerId value
if (isNaN(expectedPointerId)) {
expectedPointerIdRef.current = event.nativeEvent.pointerId;
} else {
harness.test(({assert_equals}) => {
assert_equals(
event.nativeEvent.pointerId,
expectedPointerId,
'pointerId should remain the same for the same active pointer',
);
}, pointerTestName + '.pointerId should be the same as previous pointer events for this active pointer.');
}
},
[harness],
);
const square1Ref = useRef<?HostInstance>();
const square1Handlers = useTestEventHandler(eventList, (event, eventType) => {
if (!square1Visible) {
return;
}
const square1Elem = square1Ref.current;
if (square1Elem != null) {
square1Elem.measure((x, y, width, height, pageX, pageY) => {
checkPointerEventAttributes(
event,
eventType,
{x: pageX, y: pageY, width, height},
'',
'touch',
);
if (
Object.keys(detected_eventTypesRef.current).length ===
eventList.length
) {
setSquare1Visible(false);
detected_eventTypesRef.current = ({}: {[string]: boolean});
setSquare2Visible(true);
expectedPointerIdRef.current = NaN;
}
});
}
});
const square2Ref = useRef<?HostInstance>();
const square2Handlers = useTestEventHandler(eventList, (event, eventType) => {
const square2Elem = square2Ref.current;
if (square2Elem != null) {
square2Elem.measure((x, y, width, height, pageX, pageY) => {
checkPointerEventAttributes(
event,
eventType,
{x: pageX, y: pageY, width, height},
'Inner frame ',
'touch',
);
if (
Object.keys(detected_eventTypesRef.current).length ===
eventList.length
) {
setSquare2Visible(false);
// TODO: Mark test as done
}
});
}
});
return (
<View style={styles.root}>
<View style={styles.squareContainer}>
{square1Visible && (
<View ref={square1Ref} style={styles.square1} {...square1Handlers} />
)}
</View>
<View style={styles.squareContainer}>
{square2Visible && (
<View ref={square2Ref} style={styles.square2} {...square2Handlers} />
)}
</View>
</View>
);
}
const styles = StyleSheet.create({
root: {
height: 150,
flexDirection: 'row',
alignItems: 'center',
},
square1: {
width: 40,
height: 40,
backgroundColor: 'black',
},
square2: {
width: 40,
height: 40,
backgroundColor: 'red',
},
squareContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
type Props = $ReadOnly<{}>;
export default function PointerEventAttributesNoHoverPointers(
props: Props,
): React.MixedElement {
return (
<RNTesterPlatformTest
component={PointerEventAttributesNoHoverPointersTestCase}
description="This test checks the properties of pointer events that do not support hover."
instructions={[
'Tap the black square.',
'Then move it off the black square so that it disappears.',
'When the red square appears tap on that as well.',
]}
title="Pointer Events no-hover pointer attributes test"
/>
);
}