/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @flow */ 'use strict'; const Dimensions = require('Dimensions'); const ElementBox = require('ElementBox'); const React = require('React'); const StyleSheet = require('StyleSheet'); const UIManager = require('UIManager'); const View = require('View'); import type {PressEvent} from 'CoreEventTypes'; import type {ViewStyleProp} from 'StyleSheet'; type Inspected = $ReadOnly<{| frame?: Object, style?: ViewStyleProp, |}>; type Props = $ReadOnly<{| inspected?: Inspected, inspectedViewTag?: ?number, onTouchViewTag: (tag: number, frame: Object, pointerY: number) => mixed, |}>; class InspectorOverlay extends React.Component { findViewForTouchEvent = (e: PressEvent) => { const {locationX, locationY} = e.nativeEvent.touches[0]; UIManager.findSubviewIn( this.props.inspectedViewTag, [locationX, locationY], (nativeViewTag, left, top, width, height) => { this.props.onTouchViewTag( nativeViewTag, {left, top, width, height}, locationY, ); }, ); }; shouldSetResponser = (e: PressEvent): boolean => { this.findViewForTouchEvent(e); return true; }; render() { let content = null; if (this.props.inspected) { content = ( ); } return ( {content} ); } } const styles = StyleSheet.create({ inspector: { backgroundColor: 'transparent', position: 'absolute', left: 0, top: 0, right: 0, }, }); module.exports = InspectorOverlay;