From 23c003519a16e6dc9f5ec43b34aec221444fa067 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 31 Oct 2018 21:32:30 +1100 Subject: [PATCH] Updated contact page to be more new-code. --- public/components/page/Page.jsx | 19 +++- public/components/page/Page.scss | 12 +++ public/pages/contact/ContactPage.jsx | 110 +++++---------------- public/pages/contact/ContactPage.scss | 12 +++ public/pages/contact/form/ContactForm.jsx | 89 +++++++++++++++++ public/pages/contact/form/ContactForm.scss | 0 public/styles/common.scss | 1 - public/styles/pages/_contact-page.scss | 25 ----- 8 files changed, 152 insertions(+), 116 deletions(-) create mode 100644 public/pages/contact/ContactPage.scss create mode 100644 public/pages/contact/form/ContactForm.jsx create mode 100644 public/pages/contact/form/ContactForm.scss delete mode 100644 public/styles/pages/_contact-page.scss diff --git a/public/components/page/Page.jsx b/public/components/page/Page.jsx index a807e3d..978bf4d 100644 --- a/public/components/page/Page.jsx +++ b/public/components/page/Page.jsx @@ -26,16 +26,19 @@ import { connect } from 'react-redux'; import { Helmet } from "react-helmet"; import { withLanguage } from '@public/language/Language'; -import Styles from './Page.scss'; +import Image from '@objects/image/Image'; -//Components import PageBoundary from './boundary/PageBoundary'; -export default withLanguage(props => { - let { title, style, className, lang, children } = props; +import Styles from './Page.scss'; +export default withLanguage(props => { + let { title, style, className, lang, children, background } = props; + + //Switch classes let clazzes = `c-page ${className||""}`; + //Setup page title let titleHelmet; if((!title || !title.length) && style != "home-page") { console.exception(`This page (${style||className}) does not have a title!`); @@ -43,11 +46,19 @@ export default withLanguage(props => { titleHelmet = { title } } + //Extras + let bg; + if(background) { + bg = ; + clazzes += ' has-background'; + } + return (
{ titleHelmet } + { bg } { children }
); diff --git a/public/components/page/Page.scss b/public/components/page/Page.scss index 08cc2f5..6c31d42 100644 --- a/public/components/page/Page.scss +++ b/public/components/page/Page.scss @@ -13,6 +13,10 @@ .c-page { flex-grow: 1; + &.has-background { + position: relative; + } + &__boundary { max-width: $s-screen-boundary; margin: 0 auto; @@ -26,4 +30,12 @@ max-width: $s-screen-boundary / 2; } } + + &__background { + position: absolute; + z-index: 0; + width: 100%; + height: 100%; + object-fit: cover; + } } diff --git a/public/pages/contact/ContactPage.jsx b/public/pages/contact/ContactPage.jsx index 13ac2f7..d553b9a 100644 --- a/public/pages/contact/ContactPage.jsx +++ b/public/pages/contact/ContactPage.jsx @@ -25,34 +25,24 @@ import React from 'react'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; -import Forms from '@common/Forms'; - //Actions import { openModal } from '@public/actions/ModalActions'; //Components import Page, { PageBoundary } from '@components/page/Page'; import { withLanguage } from '@public/language/Language'; -import Section, { - BodySection, - ClearSection, - SplitSection, - Split -} from '@components/section/Section'; +import { ClearSection } from '@components/section/Section'; //Objects import ElementScrollFader from '@objects/animation/fade/ElementScrollFader'; import ContentBox from '@objects/content/box/ContentBox'; import { Title, Heading1, Paragraph } from '@objects/typography/Typography'; -import Input, { - Form, - FormManager, - FormGroup, - TextArea, - Label, - ButtonGroup -} from '@objects/input/Input'; import Modal from '@objects/modal/Modal'; +import { FormManager } from '@objects/input/Input'; + +import ContactForm from './form/ContactForm'; + +import Styles from './ContactPage.scss'; class ContactPage extends React.Component { constructor(props) { @@ -61,16 +51,12 @@ class ContactPage extends React.Component { //Form Manager (For the form and elements) this.manager = new FormManager(); - this.state = { - sent: false - }; + this.state = { sent: false }; } onSuccess(data) { if(data !== true) return this.onError(data); - this.setState({ - sent: true - }); + this.setState({ sent: true }); } onError(e, a, b) { @@ -83,16 +69,17 @@ class ContactPage extends React.Component { render() { let { lang } = this.props; + let { sent } = this.state; //Form let inners; - if(this.state.sent) { + if(sent) { //Sent Display inners = ( - { lang.pages.contact.success.heading } - { lang.pages.contact.success.paragraph } + + ); @@ -100,73 +87,27 @@ class ContactPage extends React.Component { //Form inners = ( - -
+ this.onSuccess(e) } onError={ (e) => this.onError(e) } manager={ this.manager } - > - - - - - - - - - - - - -