From 17a68aeaf1043483182144faeb563d6ea8277c92 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Mon, 9 Jul 2018 08:41:50 +1000 Subject: [PATCH] Added more keyboard options, testing some CTRL+ENTER --- public/index.jsx | 4 ++ public/input/Input.jsx | 38 +++++++++++++++--- public/input/form/Form.jsx | 33 +++++++++++++--- public/keyboard/Keyboard.jsx | 74 ++++++++++++++++++++++++++++++++---- public/modal/Modal.jsx | 10 ++--- 5 files changed, 134 insertions(+), 25 deletions(-) diff --git a/public/index.jsx b/public/index.jsx index 07d120e..fd9dd7c 100644 --- a/public/index.jsx +++ b/public/index.jsx @@ -28,6 +28,7 @@ import ReactDOM from 'react-dom'; import { createStore, applyMiddleware } from 'redux'; import { Provider } from 'react-redux'; import RootReducer from './reducers/RootReducer' +import Keyboard from './keyboard/Keyboard'; //Import Stylesheet import Styles from './styles/index'; @@ -41,6 +42,9 @@ const unsubscribe = store.subscribe(() => { console.log(store.getState()); }); +//Start listening for key events +Keyboard.register(); + ReactDOM.render( ( diff --git a/public/input/Input.jsx b/public/input/Input.jsx index da14906..84907d0 100644 --- a/public/input/Input.jsx +++ b/public/input/Input.jsx @@ -28,17 +28,39 @@ import ButtonGroup from './button/ButtonGroup'; import Form, { FormManager } from './form/Form'; import InputGroup from './group/InputGroup'; import Label from './label/Label'; - +import Keyboard from './../keyboard/Keyboard'; export default class Input extends React.Component { constructor(props) { super(props); this.state = { - value: props.value + value: props.value, + focused: false }; } + isFocused() { + return this.state && this.state.focused === true; + } + + componentDidMount() { + if(this.props.manager) this.props.manager.addInput(this); + Keyboard.addListener(this); + } + + componentWillUnmount() { + if(this.props.manager) this.props.manager.removeInput(this); + Keyboard.removeListener(this); + } + + onKeyUp(e, k) { + if(!this.props.manager) return; + if(!this.isFocused()) return; + if(!k.isSubmit()) return; + this.props.manager.submit(); + } + onChange(e, a, b) { //Try my props if(this.props.onChange && this.props.onChange(e) === false) return false; @@ -54,12 +76,12 @@ export default class Input extends React.Component { }); } - componentDidMount() { - if(this.props.manager) this.props.manager.addInput(this); + onFocus() { + this.setState({ focused: true }); } - componentWillUnmount() { - if(this.props.manager) this.props.manager.removeInput(this); + onBlur() { + this.setState({ focused: false }); } render() { @@ -119,6 +141,8 @@ export default class Input extends React.Component { {...this.props} className={innerClazzes} onChange={this.onChange.bind(this)} + onFocus={this.onFocus.bind(this)} + onBlur={this.onBlur.bind(this)} >{ this.state.value } ); @@ -126,6 +150,8 @@ export default class Input extends React.Component { element = (