From bccbd1cff18a90aeca964f96ddaf8c26d147cc80 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 25 Oct 2018 06:46:38 +1100 Subject: [PATCH] CLLLEANED the forms, inputs, buttons, labels and form/button groups --- public/objects/input/Input.jsx | 94 ++++++------- .../_input.scss => objects/input/Input.scss} | 1 + public/objects/input/button/Button.jsx | 128 ++++++++---------- .../input/button/Button.scss} | 2 + public/objects/input/button/ButtonGroup.jsx | 7 +- public/objects/input/form/Form.jsx | 126 +++++++++-------- .../input/form/Form.scss} | 1 + .../group/FormGroup.jsx} | 9 +- public/objects/input/label/Label.jsx | 10 +- public/objects/layout/BoxSizer.jsx | 47 +++++-- .../layout/BoxSizer.scss} | 1 + public/objects/loading/Loader.jsx | 12 +- .../loading/Loader.scss} | 1 + public/objects/modal/Modal.jsx | 55 ++++---- .../_modal.scss => objects/modal/Modal.scss} | 1 + public/objects/typography/Heading.jsx | 23 ++-- public/objects/typography/Paragraph.jsx | 6 +- public/objects/typography/Subtitle.jsx | 7 +- public/objects/typography/Title.jsx | 9 +- public/objects/typography/Typography.jsx | 2 + .../typography/Typography.scss} | 1 + public/objects/video/Video.jsx | 43 +++--- .../_video.scss => objects/video/Video.scss} | 2 + public/pages/contact/ContactPage.jsx | 14 +- public/styles/objects/_background.scss | 26 ---- 25 files changed, 294 insertions(+), 334 deletions(-) rename public/{styles/objects/_input.scss => objects/input/Input.scss} (93%) rename public/{styles/objects/_button.scss => objects/input/button/Button.scss} (96%) rename public/{styles/objects/_form.scss => objects/input/form/Form.scss} (88%) rename public/objects/input/{group/InputGroup.jsx => form/group/FormGroup.jsx} (88%) rename public/{styles/objects/_box-sizer.scss => objects/layout/BoxSizer.scss} (87%) rename public/{styles/objects/_loader.scss => objects/loading/Loader.scss} (97%) rename public/{styles/objects/_modal.scss => objects/modal/Modal.scss} (98%) rename public/{styles/objects/_title.scss => objects/typography/Typography.scss} (95%) rename public/{styles/objects/_video.scss => objects/video/Video.scss} (96%) delete mode 100644 public/styles/objects/_background.scss diff --git a/public/objects/input/Input.jsx b/public/objects/input/Input.jsx index 7da6035..7a0beff 100644 --- a/public/objects/input/Input.jsx +++ b/public/objects/input/Input.jsx @@ -23,12 +23,14 @@ import React from 'react'; +import Styles from './Input.scss'; + +import Keyboard from '@public/keyboard/Keyboard'; + import Button from './button/Button'; import ButtonGroup from './button/ButtonGroup'; -import Form, { FormManager } from './form/Form'; -import InputGroup from './group/InputGroup'; +import Form, { FormManager, FormGroup } from './form/Form'; import Label from './label/Label'; -import Keyboard from '@public/keyboard/Keyboard'; export default class Input extends React.Component { constructor(props) { @@ -45,7 +47,8 @@ export default class Input extends React.Component { } componentDidMount() { - if(this.props.manager) this.props.manager.addInput(this); + let { manager } = this.props; + if(manager) manager.addInput(this); Keyboard.addListener(this); } @@ -85,49 +88,44 @@ export default class Input extends React.Component { } render() { - let ElementType = "input"; - let type = "text"; - let value; + let newProps = {...this.props}; + let { + value, className, type, children, style, error, danger, primary, + warning, manager + } = newProps; + + //Clear bad props + [ + "error", "danger", "primary", "warning", "manager", "style", "children" + ].forEach(e => delete newProps[e]); + + //Prop defaults + type = type || "text"; + + //Gen classes let clazzes = "o-input"; let innerClazzes = "o-input__inner"; - let style; - let props = Object.assign({}, this.props); - - //Determining - if(props.type) type = props.type; //Values - if(props.value) { - value = props.value; - } else { - value = props.children; - } + value = stateValue || value || children; //Style - if(props.style) { - style = props.style; - } else if(props.error || props.danger) { - style = "danger"; - } else if(props.warning) { - style = "warning"; - } else if(props.primary) { - style = "primary"; - } + if(primary) style = "primary"; + if(warning) style = "warning"; + if(error || danger) style = "danger"; //Classes - clazzes += " is-"+type; + clazzes += ` is-${type}`; if(style) { - clazzes += " o-input--style-"+style; - innerClazzes += " o-input--style-"+style+"__inner"; - } - if(props.className) { - clazzes += " " + props.className; - innerClazzes += " " + props.className + "-element"; + clazzes += ` o-input--style-${style}`; + innerClazzes += ` o-input--style-${style}__inner`; } - //Clear junk props - delete props.manager; + if(className) { + clazzes += ` ${className}`; + innerClazzes += ` ${className}-element`; + } //Now create the element let element; @@ -139,27 +137,15 @@ export default class Input extends React.Component { className={props.className} value={this.state.value} />); + } - } else if(type == "textarea") { - element = ( - ); + [ "onChange", "onFocus", "onBlur"].forEach(e => newProps[e] = this[e]); + //Text areas are slightly different + if(type == "textarea") { + element =