insomnia/app/ui/components/viewers/ResponseCookiesViewer.js
Gregory Schier 0b9a390110 Fixed tests
2016-09-20 17:18:18 -07:00

51 lines
1.2 KiB
JavaScript

import React, {PropTypes} from 'react';
import {Cookie} from 'tough-cookie';
const ResponseCookiesViewer = ({headers, showCookiesModal}) => {
if (!headers.length) {
// Don't do anything if no cookies
return (
<span className="faint">
No cookies returned
</span>
);
}
return (
<div>
<table className="wide table--striped">
<thead>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
{headers.map((h, i) => {
const cookie = Cookie.parse(h.value);
return (
<tr className="selectable" key={i}>
<td>{cookie.key}</td>
<td className="force-wrap">{cookie.value}</td>
</tr>
);
})}
</tbody>
</table>
<p className="pad-top">
<button className="pull-right btn btn--super-compact btn--outlined"
onClick={e => showCookiesModal()}>
Manage Cookies
</button>
</p>
</div>
)
};
ResponseCookiesViewer.propTypes = {
showCookiesModal: PropTypes.func.isRequired,
headers: PropTypes.array.isRequired
};
export default ResponseCookiesViewer;