You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.0 KiB
TypeScript

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<IProps> {
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 (
<tr className={classNames.length ? classNames.join(' ') : undefined}
onClick={() => {
this.props.onShowDetail()
}}
>
<td>{fp.no}</td>
<td>{fp.method}</td>
<td>{fp.host}</td>
<td>{fp.path}</td>
<td>{fp.statusCode}</td>
<td>{fp.size}</td>
<td>{fp.costTime}</td>
</tr>
)
}
}
export default FlowPreview