import React, { Component, PropTypes } from 'react' import classnames from 'classnames' import { Key } from '../../utils' export default class ToggleInputButton extends Component { static propTypes = { name: PropTypes.string.isRequired, txt: PropTypes.string, onToggleChanged: PropTypes.func.isRequired, checked: PropTypes.bool.isRequired, placeholder: PropTypes.string.isRequired, inputType: PropTypes.string } constructor(props) { super(props) this.state = { txt: props.txt || '' } } onKeyDown(e) { e.stopPropagation() if (e.keyCode === Key.ENTER) { this.props.onToggleChanged(this.state.txt) } } render() { const {checked, onToggleChanged, name, inputType, placeholder} = this.props return (