diff --git a/public/components/App.jsx b/public/components/App.jsx index 2aae2d0..24ea1b3 100644 --- a/public/components/App.jsx +++ b/public/components/App.jsx @@ -38,8 +38,7 @@ const AppRoutes = (props) => { import('@pages/home/HomePage') } /> - import('@pages/contact/ContactPage') } /> - + import ('@pages/contact/ContactPage') } /> import('@pages/legal/privacy/PrivacyPolicyPage') } /> diff --git a/public/components/page/boundary/PageBoundary.jsx b/public/components/page/boundary/PageBoundary.jsx index bf2f972..a4d78cb 100644 --- a/public/components/page/boundary/PageBoundary.jsx +++ b/public/components/page/boundary/PageBoundary.jsx @@ -23,7 +23,7 @@ import React from 'react'; -import Styles from './PageBoundary'; +import Styles from './PageBoundary.scss'; export default (props) => { let newProps = { ...props }; diff --git a/public/components/page/boundary/PageBoundary.scss b/public/components/page/boundary/PageBoundary.scss index 6ba810a..8afdbca 100644 --- a/public/components/page/boundary/PageBoundary.scss +++ b/public/components/page/boundary/PageBoundary.scss @@ -7,6 +7,8 @@ * Version: * 1.0.0 - 2018/10/23 */ +@import '~@styles/global'; + .c-page-boundary { max-width: $s-screen-boundary; margin: 0 auto; diff --git a/public/components/section/Section.jsx b/public/components/section/Section.jsx index ef425ae..e66d308 100644 --- a/public/components/section/Section.jsx +++ b/public/components/section/Section.jsx @@ -23,7 +23,7 @@ import React from 'react'; -import Styles from './Section'; +import Styles from './Section.scss'; export default (props) => { let newProps = {...props}; diff --git a/public/index.jsx b/public/index.jsx index 7ba39d4..1cf3c1e 100644 --- a/public/index.jsx +++ b/public/index.jsx @@ -34,7 +34,7 @@ import Keyboard from './keyboard/Keyboard'; //Import Common Elements Stylesheet -import Styles from './styles/common'; +import Styles from './styles/common.scss'; //Import Base Component import App from './components/App'; diff --git a/public/objects/animation/fade/ElementScrollFader.jsx b/public/objects/animation/fade/ElementScrollFader.jsx index fc190af..2762264 100644 --- a/public/objects/animation/fade/ElementScrollFader.jsx +++ b/public/objects/animation/fade/ElementScrollFader.jsx @@ -33,14 +33,15 @@ export default class ElementScrollFader extends React.Component { waiting: true, visible: false }; + this.onScrollBound = this.onScroll.bind(this); - this.updateRectangleBound = this.updateRectangle.bind(this); this.checkEffectBound = this.checkEffect.bind(this); this.rect = null; } componentDidMount() { + return; //Update rectangle if(this.rectTimer) clearInterval(this.rectTimer); this.rectTimer = setInterval(this.updateRectangleBound, 100); @@ -54,12 +55,13 @@ export default class ElementScrollFader extends React.Component { } componentWillUnmount() { + return; this.detachListener(); } //Used for rect calculation updateRectangle() { - if(!this.refs || !this.refs.fader) return; + if(!this.refs.fader) return; this.rect = this.refs.fader.getBoundingClientRect(); } @@ -77,22 +79,26 @@ export default class ElementScrollFader extends React.Component { } checkEffect() { + let { waiting, visible } = this.state; + let { onVisible } = this.props; + if(typeof window === typeof undefined) return; - if(!this.refs || !this.refs.fader) return; - if(this.state.waiting) { + if(!this.refs.fader) return; + if(waiting) { this.setState({ waiting: false }); } - if(this.state.visible) return this.detachListener(); - + if(visible) return this.detachListener(); if(!this.rect) this.updateRectangle(); //Get bounds var rect = this.rect; //If our top is at least half way UP the page, show - if(rect.top > window.innerHeight / 1.5) return; + var doc = document.documentElement; + var top = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0); + if(rect.top > top / 1.5) return; this.setState({ visible: true @@ -100,19 +106,20 @@ export default class ElementScrollFader extends React.Component { this.detachListener();//stop Listening - if(this.props.onVisible) { - this.props.onVisible(this.refs.fader); - } + if(onVisible) onVisible(this.refs.fader); return true; } render() { let newProps = {...this.props}; - let { from, visible, waiting, className } = this.props; + let { from, className } = this.props; + let { visible, waiting } = this.state; + + return
; from = from || "top"; - ["from","visible","waiting"].forEach(e => delete newProps[e]); + ["from"].forEach(e => delete newProps[e]); let clazz = `o-element-scroll-fader from-${from}`; if(visible || waiting) clazz += " is-visible"; diff --git a/public/objects/content/box/ContentBox.jsx b/public/objects/content/box/ContentBox.jsx index 3bd1f6b..50dc282 100644 --- a/public/objects/content/box/ContentBox.jsx +++ b/public/objects/content/box/ContentBox.jsx @@ -23,12 +23,12 @@ import React from 'react'; -import Styles from './ContentBox'; +import Styles from './ContentBox.scss'; export default (props) => { let newProps = {...props}; let { className, box } = props; - + delete newProps.box; let clazz = "o-content-box"; diff --git a/public/objects/content/box/FloatingContentBox.jsx b/public/objects/content/box/FloatingContentBox.jsx index b909226..cdb51d6 100644 --- a/public/objects/content/box/FloatingContentBox.jsx +++ b/public/objects/content/box/FloatingContentBox.jsx @@ -23,7 +23,7 @@ import React from 'react'; -import Styles from './FloatingContentBox'; +import Styles from './FloatingContentBox.scss'; import ContentBox from './ContentBox'; diff --git a/public/objects/image/LoadableImage.jsx b/public/objects/image/LoadableImage.jsx index e75177c..957ab0e 100644 --- a/public/objects/image/LoadableImage.jsx +++ b/public/objects/image/LoadableImage.jsx @@ -63,13 +63,13 @@ export default class LoadableImage extends React.Component { let newProps = {...this.props}; let { loading } = this.state; let { className, width, height } = this.props; - + ["loadable"].forEach(e => delete newProps[e]); let loader,imageSizer; let image = this.onLoad()} onError={() => this.onError()} />; diff --git a/public/objects/input/Input.jsx b/public/objects/input/Input.jsx index 7a0beff..78be290 100644 --- a/public/objects/input/Input.jsx +++ b/public/objects/input/Input.jsx @@ -37,7 +37,7 @@ export default class Input extends React.Component { super(props); this.state = { - value: props.value, + value: props.value || props.children || "", focused: false }; } @@ -90,13 +90,14 @@ export default class Input extends React.Component { render() { let newProps = {...this.props}; let { - value, className, type, children, style, error, danger, primary, + className, type, children, style, error, danger, primary, warning, manager } = newProps; //Clear bad props [ - "error", "danger", "primary", "warning", "manager", "style", "children" + "error", "danger", "primary", "warning", "manager", "style", "children", + "value" ].forEach(e => delete newProps[e]); //Prop defaults @@ -106,9 +107,6 @@ export default class Input extends React.Component { let clazzes = "o-input"; let innerClazzes = "o-input__inner"; - //Values - value = stateValue || value || children; - //Style if(primary) style = "primary"; if(warning) style = "warning"; @@ -128,29 +126,22 @@ export default class Input extends React.Component { } //Now create the element - let element; - //First we need to switch things like submit and reset - if(type == "submit" || type == "reset" || type == "button") { - return (