Cleaned the Input code, need to roadmap the CTRL+ENTER viability.
This commit is contained in:
@ -29,6 +29,7 @@ import Form, { FormManager } from './form/Form';
|
|||||||
import InputGroup from './group/InputGroup';
|
import InputGroup from './group/InputGroup';
|
||||||
import Label from './label/Label';
|
import Label from './label/Label';
|
||||||
|
|
||||||
|
|
||||||
export default class Input extends React.Component {
|
export default class Input extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
@ -39,30 +40,26 @@ export default class Input extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onChange(e, a, b) {
|
onChange(e, a, b) {
|
||||||
//Self explanitory
|
//Try my props
|
||||||
if(this.props.onChange) {
|
if(this.props.onChange && this.props.onChange(e) === false) return false;
|
||||||
if(this.props.onChange(e) === false) return false;
|
|
||||||
}
|
//Try the form manager
|
||||||
|
if(this.props.manager && this.props.manager.onChange(this, e) === false) {
|
||||||
if(this.props.manager) {
|
return false;
|
||||||
if(this.props.manager.onChange(this, e) === false) return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Try something else?
|
||||||
this.setState({
|
this.setState({
|
||||||
value: e.target.value
|
value: e.target.value
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
if(this.props.manager) {
|
if(this.props.manager) this.props.manager.addInput(this);
|
||||||
this.props.manager.addInput(this);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
if(this.props.manager) {
|
if(this.props.manager) this.props.manager.removeInput(this);
|
||||||
this.props.manager.removeInput(this);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
Reference in New Issue
Block a user