mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 13:18:26 -04:00
113 lines
3.2 KiB
TypeScript
113 lines
3.2 KiB
TypeScript
"use client";
|
|
|
|
import { useActionState } from "react";
|
|
import TextareaAutosize from "react-textarea-autosize";
|
|
import Turnstile from "react-turnstile";
|
|
import clsx from "clsx";
|
|
import Link from "../../components/Link";
|
|
import useTheme from "../../hooks/useTheme";
|
|
import { sendMessage } from "./actions";
|
|
import { GoCheck, GoX } from "react-icons/go";
|
|
import { SiMarkdown } from "react-icons/si";
|
|
|
|
import styles from "./form.module.css";
|
|
|
|
const ContactForm = () => {
|
|
const { theme } = useTheme();
|
|
const [formState, formAction, pending] = useActionState<
|
|
Partial<{ success: boolean; message: string; payload: FormData }>,
|
|
FormData
|
|
>(sendMessage, {});
|
|
|
|
return (
|
|
<form action={formAction}>
|
|
<input
|
|
type="text"
|
|
name="name"
|
|
placeholder="Name"
|
|
required
|
|
className={styles.input}
|
|
defaultValue={(formState.payload?.get("name") || "") as string}
|
|
disabled={formState.success}
|
|
/>
|
|
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
placeholder="Email"
|
|
required
|
|
inputMode="email"
|
|
className={styles.input}
|
|
defaultValue={(formState.payload?.get("email") || "") as string}
|
|
disabled={formState.success}
|
|
/>
|
|
|
|
<TextareaAutosize
|
|
name="message"
|
|
placeholder="Write something..."
|
|
minRows={5}
|
|
required
|
|
className={styles.input}
|
|
defaultValue={(formState.payload?.get("message") || "") as string}
|
|
disabled={formState.success}
|
|
/>
|
|
|
|
<div
|
|
style={{
|
|
fontSize: "0.825em",
|
|
lineHeight: 1.75,
|
|
}}
|
|
>
|
|
<SiMarkdown
|
|
style={{
|
|
display: "inline",
|
|
width: "1.25em",
|
|
height: "1.25em",
|
|
verticalAlign: "-0.25em",
|
|
marginRight: "0.25em",
|
|
}}
|
|
/>{" "}
|
|
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" underline={false} openInNewTab>
|
|
links
|
|
</Link>
|
|
](https://jarv.is), and <code>`code`</code>.
|
|
</div>
|
|
|
|
<Turnstile
|
|
sitekey={process.env.NEXT_PUBLIC_TURNSTILE_SITE_KEY || "1x00000000000000000000AA"}
|
|
style={{ margin: "1em 0" }}
|
|
theme={theme === "dark" ? theme : "light"}
|
|
fixedSize
|
|
/>
|
|
|
|
<div className={styles.actionRow}>
|
|
{!formState.success && (
|
|
<button type="submit" disabled={pending} className={styles.submitButton}>
|
|
{pending ? (
|
|
<span>Sending...</span>
|
|
) : (
|
|
<>
|
|
<span className={styles.submitIcon}>📤</span> <span>Send</span>
|
|
</>
|
|
)}
|
|
</button>
|
|
)}
|
|
|
|
{formState.message && (
|
|
<div className={clsx(styles.result, formState.success ? styles.success : styles.error)}>
|
|
{formState.success ? <GoCheck className={styles.resultIcon} /> : <GoX className={styles.resultIcon} />}{" "}
|
|
{formState.message}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default ContactForm;
|