import React, { PropTypes } from 'react' import classnames from 'classnames' import columns from './FlowColumns' FlowRow.propTypes = { onSelect: PropTypes.func.isRequired, flow: PropTypes.object.isRequired, highlighted: PropTypes.bool, selected: PropTypes.bool, } export default function FlowRow({ flow, selected, highlighted, onSelect }) { const className = classnames({ 'selected': selected, 'highlighted': highlighted, 'intercepted': flow.intercepted, 'has-request': flow.request, 'has-response': flow.response, }) return ( onSelect(flow)}> {columns.map(Column => ( ))} ) }