mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 06:38:30 -04:00
195 lines
6.4 KiB
TypeScript
195 lines
6.4 KiB
TypeScript
import { useState } from "react";
|
|
import classNames from "classnames/bind";
|
|
import { Formik, Form, Field } from "formik";
|
|
import TextareaAutosize from "react-textarea-autosize";
|
|
import Link from "../Link/Link";
|
|
import Captcha from "../Captcha/Captcha";
|
|
import { SendIcon, CheckOcticon, XOcticon } from "../Icons";
|
|
import type { FormikHelpers } from "formik";
|
|
|
|
import styles from "./ContactForm.module.css";
|
|
const cx = classNames.bind(styles);
|
|
|
|
type Values = {
|
|
name: string;
|
|
email: string;
|
|
message: string;
|
|
"h-captcha-response": string;
|
|
};
|
|
|
|
type ContactFormProps = {
|
|
className?: string;
|
|
};
|
|
|
|
const ContactForm = ({ className }: ContactFormProps) => {
|
|
// status/feedback:
|
|
const [submitted, setSubmitted] = useState(false);
|
|
const [success, setSuccess] = useState(null);
|
|
const [feedback, setFeedback] = useState("");
|
|
|
|
const handleSubmit = (values: Values, { setSubmitting }: FormikHelpers<Values>) => {
|
|
// once a user attempts a submission, this is true and stays true whether or not the next attempt(s) are successful
|
|
setSubmitted(true);
|
|
|
|
// if we've gotten here then all data is (or should be) valid and ready to post to API
|
|
fetch("/api/contact/", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Accept: "application/json",
|
|
},
|
|
body: JSON.stringify(values),
|
|
})
|
|
.then((response) => response.json())
|
|
.then((data) => {
|
|
if (data.success === true) {
|
|
// handle successful submission
|
|
// disable submissions, hide the send button, and let user know we were successful
|
|
setSuccess(true);
|
|
setFeedback("Thanks! You should hear from me soon.");
|
|
} else {
|
|
// pass on any error sent by the server to the catch block below
|
|
throw new Error(data.message);
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
setSuccess(false);
|
|
|
|
if (error.message === "USER_MISSING_DATA") {
|
|
// this should be validated client-side but it's also checked server-side just in case someone slipped past
|
|
setFeedback("Please make sure that all fields are properly filled in.");
|
|
} else if (error.message === "USER_INVALID_CAPTCHA") {
|
|
// missing/invalid captcha
|
|
setFeedback("Did you complete the CAPTCHA? (If you're human, that is...)");
|
|
} else {
|
|
// something else went wrong, and it's probably my fault...
|
|
setFeedback("Internal server error... Try again later or shoot me an old-fashioned email?");
|
|
}
|
|
})
|
|
.finally(() => setSubmitting(false));
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
onSubmit={handleSubmit}
|
|
initialValues={{
|
|
name: "",
|
|
email: "",
|
|
message: "",
|
|
"h-captcha-response": "",
|
|
}}
|
|
validate={(values: Values) => {
|
|
const errors: { name?: boolean; email?: boolean; message?: boolean; "h-captcha-response"?: boolean } = {};
|
|
|
|
errors.name = !values.name;
|
|
errors.email = !values.email; // also loosely validated that it's email-like via browser (not foolproof)
|
|
errors.message = !values.message;
|
|
errors["h-captcha-response"] = !values["h-captcha-response"];
|
|
|
|
if (!errors.name && !errors.email && !errors.message && !errors["h-captcha-response"]) {
|
|
setFeedback("");
|
|
return null;
|
|
} else {
|
|
setSuccess(false);
|
|
setFeedback("Please make sure that all fields are properly filled in.");
|
|
}
|
|
|
|
return errors;
|
|
}}
|
|
>
|
|
{({ setFieldValue, isSubmitting }) => (
|
|
<Form className={className} name="contact">
|
|
<Field name="name">
|
|
{({ field, meta }) => (
|
|
<input
|
|
type="text"
|
|
className={cx(styles.input, { missing: meta.error && meta.touched })}
|
|
placeholder="Name"
|
|
disabled={success}
|
|
{...field}
|
|
/>
|
|
)}
|
|
</Field>
|
|
|
|
<Field name="email">
|
|
{({ field, meta }) => (
|
|
<input
|
|
type="email"
|
|
inputMode="email"
|
|
className={cx(styles.input, { missing: meta.error && meta.touched })}
|
|
placeholder="Email"
|
|
disabled={success}
|
|
{...field}
|
|
/>
|
|
)}
|
|
</Field>
|
|
|
|
<Field name="message">
|
|
{({ field, meta }) => (
|
|
<TextareaAutosize
|
|
className={cx(styles.input, styles.textarea, { missing: meta.error && meta.touched })}
|
|
placeholder="Write something..."
|
|
minRows={5}
|
|
disabled={success}
|
|
{...field}
|
|
/>
|
|
)}
|
|
</Field>
|
|
|
|
<div className={styles.markdown_tip}>
|
|
Basic{" "}
|
|
<Link href="https://commonmark.org/help/" title="Markdown reference sheet" style={{ fontWeight: 600 }}>
|
|
Markdown syntax
|
|
</Link>{" "}
|
|
is allowed here, e.g.: <strong>**bold**</strong>, <em>_italics_</em>, [
|
|
<Link href="https://jarv.is" forceNewWindow>
|
|
links
|
|
</Link>
|
|
](https://jarv.is), and <code>`code`</code>.
|
|
</div>
|
|
|
|
<div className={styles.captcha}>
|
|
<Captcha onVerify={(token) => setFieldValue("h-captcha-response", token)} />
|
|
</div>
|
|
|
|
<div className={styles.action_row}>
|
|
<button
|
|
className={cx(styles.btn_submit, { hidden: success })}
|
|
type="submit"
|
|
title="Send Message"
|
|
aria-label="Send Message"
|
|
onClick={() => setSubmitted(true)}
|
|
disabled={isSubmitting}
|
|
>
|
|
{isSubmitting ? (
|
|
<span>Sending...</span>
|
|
) : (
|
|
<>
|
|
<SendIcon className={classNames(styles.send_icon)} /> <span>Send</span>
|
|
</>
|
|
)}
|
|
</button>
|
|
|
|
<span
|
|
className={cx({
|
|
result_success: success,
|
|
result_error: !success,
|
|
hidden: !submitted || !feedback || isSubmitting,
|
|
})}
|
|
>
|
|
{success ? (
|
|
<CheckOcticon className={styles.result_icon} fill="CurrentColor" />
|
|
) : (
|
|
<XOcticon className={styles.result_icon} fill="CurrentColor" />
|
|
)}{" "}
|
|
{feedback}
|
|
</span>
|
|
</div>
|
|
</Form>
|
|
)}
|
|
</Formik>
|
|
);
|
|
};
|
|
|
|
export default ContactForm;
|