import React from 'react' import { IFlowPreview } from '../message' import { shallowEqual } from '../utils' interface IProps { flow: IFlowPreview isSelected: boolean onShowDetail: () => void } class FlowPreview extends React.Component { shouldComponentUpdate(nextProps: IProps) { if (nextProps.isSelected === this.props.isSelected && shallowEqual(nextProps.flow, this.props.flow)) { return false } return true } render() { const fp = this.props.flow const classNames = [] if (this.props.isSelected) classNames.push('tr-selected') if (fp.waitIntercept) classNames.push('tr-wait-intercept') return ( { this.props.onShowDetail() }} > {fp.no} {fp.method} {fp.host} {fp.path} {fp.statusCode} {fp.size} {fp.costTime} ) } } export default FlowPreview