Last active
January 25, 2017 13:57
-
-
Save Bazze/81cf778d8843948977421bea5c8cdfee to your computer and use it in GitHub Desktop.
I use this class as drop-in replacement for the "Input" class after it got deprecated in react-bootstrap version 0.29.0.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { PropTypes } from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { FormGroup, ControlLabel, FormControl, HelpBlock } from 'react-bootstrap'; | |
class Input extends React.Component { | |
static propTypes = { | |
children: PropTypes.any, | |
help: PropTypes.oneOfType([PropTypes.string, PropTypes.node]), | |
id: PropTypes.string, | |
label: PropTypes.oneOfType([PropTypes.string, PropTypes.node]), | |
type: PropTypes.string.isRequired, | |
}; | |
getValue() { | |
const inputNode = ReactDOM.findDOMNode(this.refs.formControl); | |
if (this.props.type === 'select' && inputNode.multiple) { | |
return this.getMultipleSelectValues(inputNode); | |
} | |
return inputNode.value; | |
} | |
getMultipleSelectValues(selectNode) { | |
const values = []; | |
const options = selectNode.options; | |
for (let i = 0; i < options.length; i++) { | |
const opt = options[i]; | |
if (opt.selected) { | |
values.push(opt.value || opt.text); | |
} | |
} | |
return values; | |
} | |
render() { | |
const { id, label, help, children, ...props } = this.props; | |
if (props.type === 'select' || props.type === 'textarea') { | |
props.componentClass = props.type; | |
delete props.type; | |
} | |
return ( | |
<FormGroup controlId={id}> | |
{label && <ControlLabel>{label}</ControlLabel>} | |
<FormControl ref="formControl" {...props}>{children}</FormControl> | |
{help && <HelpBlock>{help}</HelpBlock>} | |
</FormGroup> | |
); | |
} | |
} | |
export default Input; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment