insomnia/packages/insomnia-app/app/ui/components/cookie-list.js
Gregory Schier 45861b6393
POC to get Insomnia networking available outside of app (#2329)
* Hacked insomnia lib package to get Insomnia's networking in tests

* Some small tweaks

* Got it mostly working

* Tweak

* Fix

* Fix pkg

* Fix some things

* Add comment

* Comment out log

* Some tweaks after doing a self code review

* Fix test

* Update app name for `insomnia-send-request`

* Update package-lock

* Update package-locks

* Fix tests

* Add gitignore

* Fix tests hopefully

* Fix accidental dep deletions

* Fix tests again

* Mock for all tests

* Update tests again

* Don't compile for Electron for tests

* Update release scripts to disable tests
2020-06-30 12:36:15 -07:00

118 lines
4.0 KiB
JavaScript

// @flow
import React from 'react';
import * as uuid from 'uuid';
import * as toughCookie from 'tough-cookie';
import autobind from 'autobind-decorator';
import { cookieToString } from 'insomnia-cookies';
import PromptButton from './base/prompt-button';
import RenderedText from './rendered-text';
import type { Cookie } from '../../models/cookie-jar';
import { Dropdown, DropdownButton, DropdownItem } from './base/dropdown/index';
type Props = {
handleCookieAdd: Function,
handleCookieDelete: Function,
handleDeleteAll: Function,
cookies: Array<Cookie>,
newCookieDomainName: string,
handleShowModifyCookieModal: Function,
handleRender: Function,
};
@autobind
class CookieList extends React.PureComponent<Props> {
_handleCookieAdd() {
const newCookie: Cookie = {
id: uuid.v4(),
key: 'foo',
value: 'bar',
domain: this.props.newCookieDomainName,
expires: null,
path: '/',
secure: false,
httpOnly: false,
};
this.props.handleCookieAdd(newCookie);
}
_handleDeleteCookie(cookie: Cookie) {
this.props.handleCookieDelete(cookie);
}
render() {
const { cookies, handleDeleteAll, handleShowModifyCookieModal, handleRender } = this.props;
return (
<div>
<table className="table--fancy cookie-table table--striped">
<thead>
<tr>
<th style={{ minWidth: '10rem' }}>Domain</th>
<th style={{ width: '90%' }}>Cookie</th>
<th style={{ width: '2rem' }} className="text-right">
<Dropdown right>
<DropdownButton
title="Add cookie"
className="btn btn--super-duper-compact btn--outlined txt-md">
Actions <i className="fa fa-caret-down" />
</DropdownButton>
<DropdownItem onClick={this._handleCookieAdd}>
<i className="fa fa-plus-circle" /> Add Cookie
</DropdownItem>
<DropdownItem onClick={handleDeleteAll} buttonClass={PromptButton}>
<i className="fa fa-trash-o" /> Delete All
</DropdownItem>
</Dropdown>
</th>
</tr>
</thead>
<tbody key={cookies.length}>
{cookies.map((cookie, i) => {
const cookieString = cookieToString(toughCookie.Cookie.fromJSON(cookie));
return (
<tr className="selectable" key={i}>
<td>
<RenderedText render={handleRender}>{cookie.domain || ''}</RenderedText>
</td>
<td className="force-wrap wide">
<RenderedText render={handleRender}>{cookieString || ''}</RenderedText>
</td>
<td onClick={null} className="text-right no-wrap">
<button
className="btn btn--super-compact btn--outlined"
onClick={e => handleShowModifyCookieModal(cookie)}
title="Edit cookie properties">
Edit
</button>{' '}
<PromptButton
className="btn btn--super-compact btn--outlined"
addIcon
confirmMessage=""
onClick={e => this._handleDeleteCookie(cookie)}
title="Delete cookie">
<i className="fa fa-trash-o" />
</PromptButton>
</td>
</tr>
);
})}
</tbody>
</table>
{cookies.length === 0 && (
<div className="pad faint italic text-center">
<p>I couldn't find any cookies for you.</p>
<p>
<button className="btn btn--clicky" onClick={e => this._handleCookieAdd()}>
Add Cookie <i className="fa fa-plus-circle" />
</button>
</p>
</div>
)}
</div>
);
}
}
export default CookieList;