/** * 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. * * @flow */ 'use strict'; const ElementProperties = require('ElementProperties'); const NetworkOverlay = require('NetworkOverlay'); const PerformanceOverlay = require('PerformanceOverlay'); const React = require('React'); const PropTypes = require('prop-types'); const ScrollView = require('ScrollView'); const StyleSheet = require('StyleSheet'); const Text = require('Text'); const TouchableHighlight = require('TouchableHighlight'); const View = require('View'); class InspectorPanel extends React.Component<$FlowFixMeProps> { renderWaiting() { if (this.props.inspecting) { return ( Tap something to inspect it ); } return Nothing is inspected; } render() { let contents; if (this.props.inspected) { contents = ( ); } else if (this.props.perfing) { contents = ( ); } else if (this.props.networking) { contents = ( ); } else { contents = ( {this.renderWaiting()} ); } return ( {!this.props.devtoolsIsOpen && contents}