UNPKG

ppr-react-native

Version:

A framework for building native apps using React

88 lines (76 loc) 2.05 kB
/** * 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<Props> { 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 = ( <ElementBox frame={this.props.inspected.frame} style={this.props.inspected.style} /> ); } return ( <View onStartShouldSetResponder={this.shouldSetResponser} onResponderMove={this.findViewForTouchEvent} style={[styles.inspector, {height: Dimensions.get('window').height}]}> {content} </View> ); } } const styles = StyleSheet.create({ inspector: { backgroundColor: 'transparent', position: 'absolute', left: 0, top: 0, right: 0, }, }); module.exports = InspectorOverlay;