Built out form ajax requesting, needs some more testing

This commit is contained in:
2018-07-04 21:40:19 +10:00
parent e4eb653a88
commit bd77bf6696
8 changed files with 169 additions and 31 deletions

View File

@ -47,16 +47,20 @@ class App extends React.Component {
render() { render() {
let clazz = "c-app"; let clazz = "c-app";
if(this.props.menuOpen) clazz += " is-menu-open " if(this.props.menuOpen) clazz += " is-menu-open ";
return ( let children = (
<BrowserRouter>
<div className={clazz} ref="app"> <div className={clazz} ref="app">
<Header /> <Header />
<Routes onEntering={this.onEnteringBound} /> <Routes onEntering={this.onEnteringBound} />
</div> </div>
</BrowserRouter>
); );
if(true) {
return <HashRouter>{children}</HashRouter>;
} else {
return <BrowserRouter>{children}</BrowserRouter>;
}
} }
} }

View File

@ -22,21 +22,123 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react'; import React from 'react';
import Loader, { LoaderBackdrop } from './../../loading/Loader';
export default function(props) { export default class Form extends React.Component {
let clazzes = "o-form"; constructor(props) {
super(props);
if(props.className) clazzes += " " + props.className; //Prepare our initial state
let s = {
ajax: props.ajax || false,
loader: props.loader || false,
loading: false,
onSubmit: props.onSubmit,
contentType: props.contentType || props.encType || "application/x-www-form-urlencoded"
};
//Determine action and method based off the internals
if(props.action) s.action = props.action;
if(props.method) s.method = props.method;
if(props.get) {
s.action = props.get;
s.method = "GET";
}
if(props.post) {
s.action = props.post;
s.method = "POST";
}
//Write our state to the component
this.state = s;
}
onSubmit(e) {
//Is Ajax?
if(!this.state.ajax) {
return this.state.onSubmit ? this.state.onSubmit(e) : true;
}
e.preventDefault();
if(!this.state.action) return console.warning("This form has no action.");
if(this.state.submitting) return false;//Already submitting?
//Start submitting!
this.setState({
loading: true,
submitting: true
});
//Prepare our request.
fetch(this.state.action, {
method: this.state.method,
mode: this.state.mode,
headers: {
"Content-Type": this.state.contentType
}
})
.then(this.onSubmitted.bind(this))
.catch(this.onError.bind(this))
;
return false;
}
onSubmitted(response) {
if(!response.ok) {
throw Error(response.statusText);
}
if(this.props.onData) return this.props.onData(response);
//Handle the old fashioned way (expect json)
response.json().then(this.onJSON.bind(this)).catch(this.onError.bind(this));
}
onJSON(response) {
if(this.props.onJSON) return this.props.onJSON(response);
console.log(response);
}
onError(e, a, b) {
this.setState({
loading: false,
submitting: false
});
if(this.props.onError) return this.props.onError(e, a, b);
if(e) console.error(e);
if(a) console.error(a);
if(b) console.error(b);
}
render() {
let clazz = "o-form";
if(this.props.className) clazz += " " + this.props.className;
//Do I need a loader?
let loader;
if(this.state.loader && this.state.loading) {
loader = (
<LoaderBackdrop className="o-form__loader">
<Loader className="o-form__loader-spinner" />
</LoaderBackdrop>
);
}
return ( return (
<form <form
className={ clazzes } className={clazz}
method={ props.method } method={ this.state.method }
action={ props.action } autoComplete={ this.props.autoComplete }
autoComplete={ props.autoComplete } target={ this.props.target }
target={ props.target } onSubmit={ this.onSubmit.bind(this) }
> >
{ props.children } { this.props.children }
{ loader }
</form> </form>
); );
}
} }

View File

@ -125,6 +125,12 @@ module.exports = {
"contact": { "contact": {
"title": "Contact Me", "title": "Contact Me",
"heading": "Contact Me",
"paragraph": "\
Want to get in touch with me? Fill out this easy form and I should be \
in touch shortly to chat! More of a phone person? Leave a number \
and we can chat.\
",
"name": { "name": {
"label": "Name", "label": "Name",
"placeholder": "Enter your name." "placeholder": "Enter your name."

View File

@ -23,7 +23,7 @@
import React from 'react'; import React from 'react';
export default function(props) { const Loader = function(props) {
return ( return (
<span className={"o-loader"+(props.className?" "+props.className:"")}> <span className={"o-loader"+(props.className?" "+props.className:"")}>
<svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" className="o-loader__image"> <svg width="38" height="38" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" className="o-loader__image">
@ -38,3 +38,16 @@ export default function(props) {
</span> </span>
); );
} }
const LoaderBackdrop = function(props) {
return (
<div className={"o-loader__backdrop"+(props.className?" "+props.className:"")}>
{ props.children }
</div>
);
}
export default Loader;
export {
LoaderBackdrop
};

View File

@ -52,11 +52,9 @@ class ContactPage extends React.Component {
<ElementScrollFader from="left"> <ElementScrollFader from="left">
<ContentBox box className="u-text-center"> <ContentBox box className="u-text-center">
<Title>Contact Me</Title> <Title>{ Language.get("pages.contact.heading") }</Title>
<Paragraph> <Paragraph>
Want to get in touch with me? Fill out this easy form and I should be { Language.get("pages.contact.paragraph") }
in touch shortly to chat! More of a phone person? Leave a number
and we can chat.
</Paragraph> </Paragraph>
</ContentBox> </ContentBox>
</ElementScrollFader> </ElementScrollFader>
@ -66,7 +64,7 @@ class ContactPage extends React.Component {
<ElementScrollFader from="right"> <ElementScrollFader from="right">
<BodySection> <BodySection>
<Form> <Form post="/api/contact/send" ajax loader>
<InputGroup> <InputGroup>
<Label>{ Language.get("pages.contact.name.label") }</Label> <Label>{ Language.get("pages.contact.name.label") }</Label>
<Input <Input
@ -74,7 +72,6 @@ class ContactPage extends React.Component {
placeholder={ Language.get("pages.contact.name.placeholder") } placeholder={ Language.get("pages.contact.name.placeholder") }
required={ Forms.contact.name.required } required={ Forms.contact.name.required }
maxLength={ Forms.contact.name.maxLength } maxLength={ Forms.contact.name.maxLength }
/> />
</InputGroup> </InputGroup>

View File

@ -8,7 +8,9 @@
* Version: * Version:
* 1.0.0 - 2018/05/13 * 1.0.0 - 2018/05/13
*/ */
.o-form { } .o-form {
position: relative;
}
.o-form__group { .o-form__group {
+ .o-btn-group, + .o-btn-group,

View File

@ -46,4 +46,13 @@
stroke: $s-color--loader; stroke: $s-color--loader;
} }
} }
&__backdrop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.5);
}
} }

View File

@ -21,6 +21,8 @@ module.exports = {
filename: "app.js" filename: "app.js"
}, },
mode: 'development',
resolve: { resolve: {
modules: ['node_modules', './public'], modules: ['node_modules', './public'],
extensions: ['.js', '.jsx', '.css', '.scss' ] extensions: ['.js', '.jsx', '.css', '.scss' ]
@ -55,6 +57,9 @@ module.exports = {
// initialize the added webpack plugins // initialize the added webpack plugins
plugins: [ plugins: [
HTMLWebpackPluginConfig, HTMLWebpackPluginConfig,
new webpack.HotModuleReplacementPlugin() new webpack.HotModuleReplacementPlugin(),
new webpack.DefinePlugin({
DEVELOPMENT: JSON.stringify(true)
})
] ]
}; };