From d0b4e453a3c59c8c53c26a0a02dbcedf35540108 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 8 Jul 2018 20:53:47 +1000 Subject: [PATCH] Cleaned the Input code, need to roadmap the CTRL+ENTER viability. --- public/input/Input.jsx | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/public/input/Input.jsx b/public/input/Input.jsx index 64314aa..da14906 100644 --- a/public/input/Input.jsx +++ b/public/input/Input.jsx @@ -29,6 +29,7 @@ import Form, { FormManager } from './form/Form'; import InputGroup from './group/InputGroup'; import Label from './label/Label'; + export default class Input extends React.Component { constructor(props) { super(props); @@ -39,30 +40,26 @@ export default class Input extends React.Component { } onChange(e, a, b) { - //Self explanitory - if(this.props.onChange) { - if(this.props.onChange(e) === false) return false; - } - - if(this.props.manager) { - if(this.props.manager.onChange(this, e) === false) return false; + //Try my props + if(this.props.onChange && this.props.onChange(e) === false) return false; + + //Try the form manager + if(this.props.manager && this.props.manager.onChange(this, e) === false) { + return false; } + //Try something else? this.setState({ value: e.target.value }); } componentDidMount() { - if(this.props.manager) { - this.props.manager.addInput(this); - } + if(this.props.manager) this.props.manager.addInput(this); } componentWillUnmount() { - if(this.props.manager) { - this.props.manager.removeInput(this); - } + if(this.props.manager) this.props.manager.removeInput(this); } render() {