Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CMPT] Switch to hosted Contact web form #1033

Merged
merged 1 commit into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ module.exports = {
roles: ["tabpanel"],
},
],
"jsx-a11y/label-has-associated-control": [ 2, {
"labelComponents": ["label"],
"labelAttributes": ["htmlFor"],
"controlComponents": ["input"]
}],
"react/jsx-filename-extension": [1, { extensions: [".js", ".jsx"] }],
},
};
2 changes: 2 additions & 0 deletions client/Routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Reports from '@components/main/Reports';
import Privacy from '@components/main/Privacy';
import Faqs from '@components/main/Faqs';
import Blog from '@components/main/Blog';
import ContactForm from '@components/main/ContactForm';

export default function Routes() {
return (
Expand All @@ -14,6 +15,7 @@ export default function Routes() {
<Route path="/privacy" component={Privacy} />
<Route path="/faqs" component={Faqs} />
<Route path="/blog" component={Blog} />
<Route path="/contact" component={ContactForm} />
<Route path="/">
<Redirect to="map" />
</Route>
Expand Down
3 changes: 3 additions & 0 deletions client/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ const Header = () => {
<Link to="/privacy">
<Button className={classes.button}>Privacy</Button>
</Link>
<Link to="/contact">
<Button className={classes.button}>Contact</Button>
</Link>
</Toolbar>
</AppBar>
);
Expand Down
99 changes: 99 additions & 0 deletions client/components/main/ContactForm.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import React from 'react';
import { useForm } from '@formspree/react';
import {
makeStyles,
Container,
Grid,
Button,
} from '@material-ui/core';

const useStyles = makeStyles({
root: {
color: 'black',
backgroundColor: 'white',
minHeight: '40em',
padding: '2em',
'& h1': {
fontSize: '2.5em',
},
'& img': {
maxWidth: '100%',
height: 'auto',
display: 'block',
marginLeft: 'auto',
marginRight: 'auto',
},
'& label': {
marginTop: '1em',
fontWeight: 500,
display: 'block',
width: '20em',
},
'& input': {
width: '40em',
padding: '0.5em',
},
'& textarea': {
width: '40em',
padding: '0.5em',
},
},
});

const FORMSPREE_FORM_ID = 'xknkwwez';

const ContactForm = () => {
const [state, handleSubmit] = useForm(FORMSPREE_FORM_ID);
const classes = useStyles();

React.useEffect(() => {
console.log(state);
});

return (
<Container className={classes.root} maxWidth="md">
<Grid container spacing={2}>
<Grid item xs={9}>
<h1>Contact Us</h1>
{ state.succeeded
&& (
<div>
Thank you for signing up! We will get back to you in 2-3 business days.
</div>
)}
{ !state.succeeded
&& (
<>
<div>
Don&apos;t See What You Need?
We want to build a tool that works for you.
We are open to suggestions and feedback and would love the opportunity
to get connected.
Feel free to input your information in the contact form below
and we will be sure to get back to you within 2-3 business days.
</div>
<form id="fs-frm" onSubmit={handleSubmit} name="simple-contact-form">
<div>
<label htmlFor="full-name">Full Name</label>
<input type="text" name="name" id="full-name" placeholder="First and Last" />
</div>
<div>
<label htmlFor="email-address">Email Address</label>
<input type="email" name="_replyto" id="email-address" placeholder="[email protected]" required="" />
</div>
<div>
<label htmlFor="message">Message</label>
<textarea rows="5" name="message" id="message" placeholder="Your message here" required="" />
</div>
<input type="hidden" name="_subject" id="email-subject" value="Contact Form Submission" />
<Button variant="contained" color="primary" type="submit" disabled={state.submitting}>Send Message</Button>
</form>
</>
)}
</Grid>
</Grid>
</Container>
);
};

export default ContactForm;
36 changes: 36 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"homepage": "https://www.311-data.org/",
"dependencies": {
"@formspree/react": "^2.2.3",
"@mapbox/mapbox-gl-geocoder": "^4.7.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
Expand Down