import React from 'react' import Table from 'react-bootstrap/Table' import Form from 'react-bootstrap/Form' import Button from 'react-bootstrap/Button' import './App.css' import { FlowManager } from './flow' import { isTextResponse, getSize, parseMessage, buildMessage } from './utils' class App extends React.Component { constructor(props) { super(props) this.flowMgr = new FlowManager() this.state = { flows: this.flowMgr.showList(), flow: null, flowTab: 'Headers', // Headers, Preview, Response interceptUriInputing: '', interceptUri: '', } this.ws = null } componentDidMount() { this.initWs() } componentWillUnmount() { if (this.ws) { this.ws.close() } } initWs() { if (this.ws) return let host; if (process.env.NODE_ENV === 'development') { host = 'localhost:9081' } else { host = new URL(document.URL).host } this.ws = new WebSocket(`ws://${host}/echo`) this.ws.binaryType = 'arraybuffer' this.ws.onopen = () => { console.log('OPEN') } this.ws.onclose = () => { console.log('CLOSE') } this.ws.onmessage = evt => { const msg = parseMessage(evt.data) if (!msg) { console.error('parse error:', evt.data) return } // console.log('msg:', msg) if (msg.type === 'request') { const flow = { id: msg.id, request: msg.content, waitIntercept: msg.waitIntercept } this.flowMgr.add(flow) this.setState({ flows: this.flowMgr.showList() }) } else if (msg.type === 'response') { const flow = this.flowMgr.get(msg.id) if (!flow) return flow.waitIntercept = msg.waitIntercept flow.response = msg.content this.setState({ flows: this.state.flows }) } else if (msg.type === 'responseBody') { const flow = this.flowMgr.get(msg.id) if (!flow || !flow.response) return flow.waitIntercept = msg.waitIntercept flow.response.body = msg.content this.setState({ flows: this.state.flows }) } } this.ws.onerror = evt => { console.log('ERROR:', evt) } } renderFlow() { const { flow, flowTab } = this.state if (!flow) return null const request = flow.request const response = flow.response || {} return (
General
Request URL: {request.url}
Request Method: {request.method}
Status Code: {`${response.statusCode || '(pending)'}`}
Response Headers
{key}: {response.header[key].join(' ')}
) }) }Request Headers
{key}: {request.header[key].join(' ')}
) }) }No | Host | Path | Method | Status | Size |
---|---|---|---|---|---|
{f.no} | {host} | {path} | {request.method} | {response.statusCode || '(pending)'} | {getSize(response)} |