mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
42 lines
994 B
JavaScript
42 lines
994 B
JavaScript
import React, {PropTypes} from 'react';
|
|
import CopyButton from '../base/CopyButton';
|
|
|
|
const ResponseHeadersViewer = ({headers}) => {
|
|
const headersString = headers.map(
|
|
h => `${h.name}: ${h.value}`
|
|
).join('\n');
|
|
|
|
return (
|
|
<div>
|
|
<table className="wide table--striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{headers.map((h, i) => (
|
|
<tr className="selectable" key={i}>
|
|
<td style={{width: '50%'}} className="force-wrap">{h.name}</td>
|
|
<td style={{width: '50%'}} className="force-wrap">{h.value}</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
<p className="pad-top">
|
|
<CopyButton
|
|
className="pull-right btn btn--clicky"
|
|
content={headersString}
|
|
/>
|
|
</p>
|
|
</div>
|
|
)
|
|
};
|
|
|
|
ResponseHeadersViewer.propTypes = {
|
|
headers: PropTypes.array.isRequired
|
|
};
|
|
|
|
export default ResponseHeadersViewer;
|