import React, { Component } from 'react' import PropTypes from 'prop-types' 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 (
onToggleChanged(this.state.txt)}>
  {name}
this.setState({ txt: e.target.value })} onKeyDown={e => this.onKeyDown(e)} />
) } }