UNPKG

password-show-hide-field-react

Version:
63 lines (54 loc) 1.49 kB
import React from 'react'; class PasswordField extends React.Component { constructor(props) { super(props); this.state = { showText: 0 } } changeField() { this.state.showText ? this.setState({ showText: 0 }) : this.setState({ showText: 1 }) } render() { const btn = ( <button style={this.props.buttonStyle} onClick={this.changeField.bind(this)}>{(this.state.showText) ? this.props.hideBtnName : this.props.showBtnName} </button> ); return ( <div> { this.state.showText ? <input type='text' name={this.props.name} style={this.props.fieldStyle}/> : <input type='password' name={this.props.name} style={this.props.fieldStyle}/> } {(this.props.showBtn) ? btn : null} </div> ); } } // Set Default Props Values PasswordField.defaultProps = { name: 'password', showBtn: true, showBtnName: 'Show', hideBtnName: 'Hide', buttonStyle: null, fieldStyle: null } export default PasswordField;