diff --git a/public/input/Input.jsx b/public/input/Input.jsx index 724d721..64314aa 100644 --- a/public/input/Input.jsx +++ b/public/input/Input.jsx @@ -25,13 +25,44 @@ import React from 'react'; import Button from './button/Button'; import ButtonGroup from './button/ButtonGroup'; -import Form from './form/Form'; +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); + + this.state = { + value: props.value + }; + } + + 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; + } + + this.setState({ + value: e.target.value + }); + } + + componentDidMount() { + if(this.props.manager) { + this.props.manager.addInput(this); + } + } + + componentWillUnmount() { + if(this.props.manager) { + this.props.manager.removeInput(this); + } } render() { @@ -80,11 +111,28 @@ export default class Input extends React.Component { //First we need to switch things like submit and reset if(type == "submit" || type == "reset" || type == "button") { - return ); + } + + //Inner divs + let heading,body,footer; + if(this.props.title) { + heading = ( +
+ + { this.props.title } + +
+ ); + } + + if(this.props.children) { + body = ( +
+ { this.props.children } +
+ ); + } + + if(buttons) { + footer = ( +
+ { buttons } +
+ ); + } //Create our modal contents let contents = (
+ {/* Provides both a good overlay, and a nice clickable area */}
-
-
-
-
- { junk } -
-
- -
- { buttons } -
-
+ {/* Box itself, has a background and a shadow */} +
+ { heading } + { body } + { footer }
@@ -96,7 +143,8 @@ class Modal extends React.Component { const mapStateToProps = (state) => { return { - modal: state.modal + modal: state.modal, + language: state.language }; } diff --git a/public/page/contact/ContactPage.jsx b/public/page/contact/ContactPage.jsx index aec3058..2e641a7 100644 --- a/public/page/contact/ContactPage.jsx +++ b/public/page/contact/ContactPage.jsx @@ -23,33 +23,142 @@ import React from 'react'; import { connect } from 'react-redux'; +import { bindActionCreators } from 'redux'; import Page, { PageBoundary } from './../Page'; -import Input, { Form, InputGroup, TextArea, Label, ButtonGroup } from './../../input/Input'; import Language from './../../language/Language'; import ElementScrollFader from './../../animation/fade/ElementScrollFader'; import ContentBox from './../../content/ContentBox'; -import { Title, Paragraph } from './../../typography/Typography'; +import { Title, Heading1, Paragraph } from './../../typography/Typography'; import Forms from './../../../common/Forms'; +import Input, { + Form, + FormManager, + InputGroup, + TextArea, + Label, + ButtonGroup +} from './../../input/Input'; import Section, { BodySection, ClearSection, SplitSection, Split } from './../../section/Section'; +import { openModal } from './../../actions/ModalActions'; +import Modal from './../../modal/Modal'; class ContactPage extends React.Component { constructor(props) { super(props); + + //Form Manager (For the form and elements) + this.manager = new FormManager(); + + this.state = { + sent: false + }; + } + + onSuccess(data) { + if(data !== true) return this.onError(data); + this.setState({ + sent: true + }); + } + + onError(e, a, b) { + this.props.openModal( + + { e } + + ); } render() { + + //Form + let inners; + if(this.state.sent) { + //Sent Display + inners = ( + + + { Language.get("pages.contact.success.heading") } + { Language.get("pages.contact.success.paragraph") } + + + ); + } else { + //Form + inners = ( + + +
+ + + + + + + + + + + + +