mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
f20d5ed67f
Summary: This diff - creates `XHRInterceptor` to intercept all XMLHttpRequest network operations in React Native by monkey-patching. - enables `XHRInterceptor` in RN development tool "inspector". This interception and inspector tool work well on both Android and iOS. And this supports interception on any network API based on XMLHttpRequest, especially the Fetch API. By now, we can intercept 12 information fields of a XMLHttpRequest including method, url, data sent, status, response type, response size, requestHeaders, responseHeaders, response, responseURL, responseType and timeout. Follow-up: - Will add UIs in the inspector on top of this diff, to display all the network operation information. (Not in this diff just to make this shorter) - Will extend this to gather other valuable information towards one XMLHttpRequest. - Should support other network request APIs like WebSocket. Reviewed By: davidaurelio Differential Revision: D3598873 fbshipit-source-id: 3221050ab2ebd876a718fc326646c344d0944a5f
153 lines
3.8 KiB
JavaScript
153 lines
3.8 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule InspectorPanel
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var React = require('React');
|
|
var StyleSheet = require('StyleSheet');
|
|
var Text = require('Text');
|
|
var View = require('View');
|
|
var ElementProperties = require('ElementProperties');
|
|
var PerformanceOverlay = require('PerformanceOverlay');
|
|
var Touchable = require('Touchable');
|
|
var TouchableHighlight = require('TouchableHighlight');
|
|
var NetworkOverlay = require('NetworkOverlay');
|
|
|
|
var PropTypes = React.PropTypes;
|
|
|
|
class InspectorPanel extends React.Component {
|
|
renderWaiting() {
|
|
if (this.props.inspecting) {
|
|
return (
|
|
<Text style={styles.waitingText}>
|
|
Tap something to inspect it
|
|
</Text>
|
|
);
|
|
}
|
|
return <Text style={styles.waitingText}>Nothing is inspected</Text>;
|
|
}
|
|
|
|
render() {
|
|
var contents;
|
|
if (this.props.inspected) {
|
|
contents = (
|
|
<ElementProperties
|
|
style={this.props.inspected.style}
|
|
frame={this.props.inspected.frame}
|
|
source={this.props.inspected.source}
|
|
hierarchy={this.props.hierarchy}
|
|
selection={this.props.selection}
|
|
setSelection={this.props.setSelection}
|
|
/>
|
|
);
|
|
} else if (this.props.perfing) {
|
|
contents = (
|
|
<PerformanceOverlay />
|
|
);
|
|
} else if (this.props.networking) {
|
|
contents = (
|
|
<NetworkOverlay />
|
|
);
|
|
} else {
|
|
contents = (
|
|
<View style={styles.waiting}>
|
|
{this.renderWaiting()}
|
|
</View>
|
|
);
|
|
}
|
|
return (
|
|
<View style={styles.container}>
|
|
{!this.props.devtoolsIsOpen && contents}
|
|
<View style={styles.buttonRow}>
|
|
<Button
|
|
title={'Inspect'}
|
|
pressed={this.props.inspecting}
|
|
onClick={this.props.setInspecting}
|
|
/>
|
|
<Button title={'Perf'}
|
|
pressed={this.props.perfing}
|
|
onClick={this.props.setPerfing}
|
|
/>
|
|
<Button title={'Network'}
|
|
pressed={this.props.networking}
|
|
onClick={this.props.setNetworking}
|
|
/>
|
|
<Button title={'Touchables'}
|
|
pressed={this.props.touchTargetting}
|
|
onClick={this.props.setTouchTargetting}
|
|
/>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
InspectorPanel.propTypes = {
|
|
devtoolsIsOpen: PropTypes.bool,
|
|
inspecting: PropTypes.bool,
|
|
setInspecting: PropTypes.func,
|
|
inspected: PropTypes.object,
|
|
perfing: PropTypes.bool,
|
|
setPerfing: PropTypes.func,
|
|
touchTargetting: PropTypes.bool,
|
|
setTouchTargetting: PropTypes.func,
|
|
networking: PropTypes.bool,
|
|
setNetworking: PropTypes.func,
|
|
};
|
|
|
|
class Button extends React.Component {
|
|
render() {
|
|
return (
|
|
<TouchableHighlight onPress={() => this.props.onClick(!this.props.pressed)} style={[
|
|
styles.button,
|
|
this.props.pressed && styles.buttonPressed
|
|
]}>
|
|
<Text style={styles.buttonText}>{this.props.title}</Text>
|
|
</TouchableHighlight>
|
|
);
|
|
}
|
|
}
|
|
|
|
var styles = StyleSheet.create({
|
|
buttonRow: {
|
|
flexDirection: 'row',
|
|
},
|
|
button: {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
margin: 2,
|
|
height: 30,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
buttonPressed: {
|
|
backgroundColor: 'rgba(255, 255, 255, 0.3)',
|
|
},
|
|
buttonText: {
|
|
textAlign: 'center',
|
|
color: 'white',
|
|
margin: 5,
|
|
},
|
|
container: {
|
|
backgroundColor: 'rgba(0, 0, 0, 0.7)',
|
|
},
|
|
waiting: {
|
|
height: 100,
|
|
},
|
|
waitingText: {
|
|
fontSize: 20,
|
|
textAlign: 'center',
|
|
marginVertical: 20,
|
|
color: 'white',
|
|
},
|
|
});
|
|
|
|
module.exports = InspectorPanel;
|