Created
April 17, 2019 00:16
-
-
Save Frithir/d463b0bc0d2be00f717a4f6ae2fbfb84 to your computer and use it in GitHub Desktop.
netlify recapture sample form example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { navigateTo } from "gatsby-link"; | |
import Recaptcha from "react-google-recaptcha"; | |
const RECAPTCHA_KEY = process.env.SITE_RECAPTCHA_KEY; | |
function encode(data) { | |
return Object.keys(data) | |
.map(key => encodeURIComponent(key) + "=" + encodeURIComponent(data[key])) | |
.join("&"); | |
} | |
export default class Contact extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = {}; | |
} | |
handleChange = e => { | |
this.setState({ [e.target.name]: e.target.value }); | |
}; | |
handleRecaptcha = value => { | |
this.setState({ "g-recaptcha-response": value }); | |
}; | |
handleSubmit = e => { | |
e.preventDefault(); | |
const form = e.target; | |
fetch("/", { | |
method: "POST", | |
headers: { "Content-Type": "application/x-www-form-urlencoded" }, | |
body: encode({ | |
"form-name": form.getAttribute("name"), | |
...this.state | |
}) | |
}) | |
.then(() => navigateTo(form.getAttribute("action"))) | |
.catch(error => alert(error)); | |
}; | |
render() { | |
return ( | |
<div> | |
<h1>reCAPTCHA 2</h1> | |
<form | |
name="contact-recaptcha" | |
method="post" | |
action="/thanks/" | |
data-netlify="true" | |
data-netlify-recaptcha="true" | |
onSubmit={this.handleSubmit} | |
> | |
<noscript> | |
<p>This form won’t work with Javascript disabled</p> | |
</noscript> | |
<p> | |
<label> | |
Your name:<br /> | |
<input type="text" name="name" onChange={this.handleChange} /> | |
</label> | |
</p> | |
<p> | |
<label> | |
Your email:<br /> | |
<input type="email" name="email" onChange={this.handleChange} /> | |
</label> | |
</p> | |
<p> | |
<label> | |
Message:<br /> | |
<textarea name="message" onChange={this.handleChange} /> | |
</label> | |
</p> | |
<Recaptcha | |
ref="recaptcha" | |
sitekey={RECAPTCHA_KEY} | |
onChange={this.handleRecaptcha} | |
/> | |
<p> | |
<button type="submit">Send</button> | |
</p> | |
</form> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment