mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
9e84bc4387
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
47 lines
1.2 KiB
JavaScript
47 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;
|