import React, {PropTypes, PureComponent} from 'react'; import autobind from 'autobind-decorator'; import {Cookie} from 'tough-cookie'; import PromptButton from '../base/prompt-button'; import CookieInput from '../cookie-input'; import {cookieToString} from '../../../common/cookies'; import {DEBOUNCE_MILLIS} from '../../../common/constants'; @autobind class CookiesEditor extends PureComponent { _handleCookieAdd () { const newCookie = new Cookie({ key: 'foo', value: 'bar', domain: this.props.newCookieDomainName, path: '/' }); this.props.onCookieAdd(newCookie); } _handleCookieUpdate (cookie, cookieStr) { clearTimeout(this._cookieUpdateTimeout); this._cookieUpdateTimeout = setTimeout(() => { const newCookie = Cookie.parse(cookieStr); this.props.onCookieUpdate(cookie, newCookie); }, DEBOUNCE_MILLIS * 2); } _handleDeleteCookie (cookie) { this.props.onCookieDelete(cookie); } shouldComponentUpdate (nextProps, nextState) { return nextProps.cookies !== this.props.cookies; } render () { const {cookies} = this.props; return (
Domain | Cookie | |
---|---|---|
{cookie.domain} |
|
|
I couldn't find any cookies for you.