mirror of
https://github.com/Dokploy/website.git
synced 2026-06-24 16:45:23 +02:00
- Removed 'other' option from inquiryType in ContactFormData interfaces across contact form and API. - Updated email recipient logic to use a single variable for clarity. - Adjusted related components to reflect the changes in inquiryType options.
421 lines
11 KiB
TypeScript
421 lines
11 KiB
TypeScript
"use client";
|
|
|
|
import { trackGAEvent } from "@/components/analitycs";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { useState } from "react";
|
|
|
|
interface ContactFormData {
|
|
inquiryType: "" | "support" | "sales";
|
|
deploymentType: "" | "cloud" | "self-hosted";
|
|
firstName: string;
|
|
lastName: string;
|
|
email: string;
|
|
company: string;
|
|
message: string;
|
|
}
|
|
|
|
interface ContactFormProps {
|
|
defaultInquiryType?: "" | "support" | "sales";
|
|
onSuccess?: () => void;
|
|
onCancel?: () => void;
|
|
showCancelButton?: boolean;
|
|
hideInquiryType?: boolean;
|
|
}
|
|
|
|
export function ContactForm({
|
|
defaultInquiryType = "",
|
|
onSuccess,
|
|
onCancel,
|
|
showCancelButton = false,
|
|
hideInquiryType = false,
|
|
}: ContactFormProps) {
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [isSubmitted, setIsSubmitted] = useState(false);
|
|
const [formData, setFormData] = useState<ContactFormData>({
|
|
inquiryType: defaultInquiryType || "",
|
|
deploymentType: "",
|
|
firstName: "",
|
|
lastName: "",
|
|
email: "",
|
|
company: "",
|
|
message: "",
|
|
});
|
|
const [errors, setErrors] = useState<Record<string, string>>({});
|
|
|
|
const validateForm = (): boolean => {
|
|
const newErrors: Record<string, string> = {};
|
|
|
|
if (!hideInquiryType && !formData.inquiryType) {
|
|
newErrors.inquiryType = "Please select what we can help you with";
|
|
}
|
|
if (formData.inquiryType === "support" && !formData.deploymentType) {
|
|
newErrors.deploymentType = "Please select your deployment type";
|
|
}
|
|
if (!formData.firstName.trim()) {
|
|
newErrors.firstName = "First name is required";
|
|
}
|
|
if (!formData.lastName.trim()) {
|
|
newErrors.lastName = "Last name is required";
|
|
}
|
|
if (!formData.email.trim()) {
|
|
newErrors.email = "Email is required";
|
|
} else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(formData.email)) {
|
|
newErrors.email = "Please enter a valid email address";
|
|
}
|
|
if (!formData.company.trim()) {
|
|
newErrors.company = "Company name is required";
|
|
}
|
|
if (!formData.message.trim()) {
|
|
newErrors.message = "Message is required";
|
|
}
|
|
|
|
setErrors(newErrors);
|
|
return Object.keys(newErrors).length === 0;
|
|
};
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
|
|
if (!validateForm()) {
|
|
return;
|
|
}
|
|
|
|
// Prevent submission for self-hosted support requests
|
|
if (
|
|
formData.inquiryType === "support" &&
|
|
formData.deploymentType === "self-hosted"
|
|
) {
|
|
return;
|
|
}
|
|
|
|
setIsSubmitting(true);
|
|
|
|
try {
|
|
const response = await fetch("/api/contact", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(formData),
|
|
});
|
|
|
|
if (response.ok) {
|
|
trackGAEvent({
|
|
action: "Contact Form Submitted",
|
|
category: "Contact",
|
|
label: formData.inquiryType,
|
|
});
|
|
|
|
setFormData({
|
|
inquiryType: defaultInquiryType || "",
|
|
deploymentType: "",
|
|
firstName: "",
|
|
lastName: "",
|
|
email: "",
|
|
company: "",
|
|
message: "",
|
|
});
|
|
setErrors({});
|
|
setIsSubmitted(true);
|
|
if (onSuccess) {
|
|
onSuccess();
|
|
}
|
|
} else {
|
|
throw new Error("Failed to submit form");
|
|
}
|
|
} catch (error) {
|
|
console.error("Error submitting form:", error);
|
|
alert("There was an error sending your message. Please try again.");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
const handleInputChange = (field: keyof ContactFormData, value: any) => {
|
|
setFormData((prev) => {
|
|
const updated = { ...prev, [field]: value };
|
|
// Reset deploymentType when inquiryType changes and is not support
|
|
if (field === "inquiryType" && value !== "support") {
|
|
updated.deploymentType = "";
|
|
}
|
|
return updated;
|
|
});
|
|
if (errors[field]) {
|
|
setErrors((prev) => {
|
|
const newErrors = { ...prev };
|
|
delete newErrors[field];
|
|
return newErrors;
|
|
});
|
|
}
|
|
};
|
|
|
|
if (isSubmitted) {
|
|
return (
|
|
<div className="text-center">
|
|
<h2 className="text-2xl font-bold tracking-tight text-foreground sm:text-3xl">
|
|
Thank you for contacting us!
|
|
</h2>
|
|
<p className="mt-4 text-lg leading-8 text-muted-foreground">
|
|
We've received your message and will get back to you as soon as
|
|
possible.
|
|
</p>
|
|
{onCancel && (
|
|
<div className="mt-6">
|
|
<Button onClick={onCancel} variant="outline">
|
|
Close
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
{!hideInquiryType && (
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="inquiryType"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
What can we help you with today?{" "}
|
|
<span className="text-red-500">*</span>
|
|
</label>
|
|
<Select
|
|
value={formData.inquiryType}
|
|
onValueChange={(value) =>
|
|
handleInputChange(
|
|
"inquiryType",
|
|
value as "support" | "sales",
|
|
)
|
|
}
|
|
>
|
|
<SelectTrigger className="bg-input">
|
|
<SelectValue placeholder="Select an option" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="support">Support</SelectItem>
|
|
<SelectItem value="sales">Sales</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
{errors.inquiryType && (
|
|
<p className="text-sm text-red-600">{errors.inquiryType}</p>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{formData.inquiryType === "support" && (
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="deploymentType"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
What version of Dokploy are you using?{" "}
|
|
<span className="text-red-500">*</span>
|
|
</label>
|
|
<Select
|
|
value={formData.deploymentType}
|
|
onValueChange={(value) =>
|
|
handleInputChange(
|
|
"deploymentType",
|
|
value as "cloud" | "self-hosted",
|
|
)
|
|
}
|
|
>
|
|
<SelectTrigger className="bg-input">
|
|
<SelectValue placeholder="Select deployment type" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="cloud">Cloud Version</SelectItem>
|
|
<SelectItem value="self-hosted">Self Hosted</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
{errors.deploymentType && (
|
|
<p className="text-sm text-red-600">
|
|
{errors.deploymentType}
|
|
</p>
|
|
)}
|
|
|
|
{formData.deploymentType === "self-hosted" && (
|
|
<div className="mt-4 rounded-lg border border-amber-500/50 bg-amber-500/10 p-4">
|
|
<h3 className="mb-2 text-sm font-semibold text-amber-500">
|
|
Self-Hosted Support
|
|
</h3>
|
|
<p className="mb-3 text-sm text-muted-foreground">
|
|
We currently don't provide direct support for self-hosted
|
|
deployments through this form. However, our community is here to
|
|
help!
|
|
</p>
|
|
<div className="space-y-2 text-sm">
|
|
<p className="text-muted-foreground">
|
|
Please use one of these channels to get assistance:
|
|
</p>
|
|
<ul className="ml-4 list-disc space-y-1 text-muted-foreground">
|
|
<li>
|
|
Join our{" "}
|
|
<a
|
|
href="https://discord.gg/2tBnJ3jDJc"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-primary underline hover:text-primary/80"
|
|
>
|
|
Discord community
|
|
</a>{" "}
|
|
for real-time help
|
|
</li>
|
|
<li>
|
|
Open a discussion on{" "}
|
|
<a
|
|
href="https://github.com/Dokploy/dokploy/discussions"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-primary underline hover:text-primary/80"
|
|
>
|
|
GitHub Discussions
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
<div className="grid grid-cols-1 gap-6 sm:grid-cols-2">
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="firstName"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
First Name <span className="text-red-500">*</span>
|
|
</label>
|
|
<Input
|
|
id="firstName"
|
|
type="text"
|
|
value={formData.firstName}
|
|
onChange={(e) =>
|
|
handleInputChange("firstName", e.target.value)
|
|
}
|
|
placeholder="Your first name"
|
|
/>
|
|
{errors.firstName && (
|
|
<p className="text-sm text-red-600">{errors.firstName}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="lastName"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
Last Name <span className="text-red-500">*</span>
|
|
</label>
|
|
<Input
|
|
id="lastName"
|
|
type="text"
|
|
value={formData.lastName}
|
|
onChange={(e) =>
|
|
handleInputChange("lastName", e.target.value)
|
|
}
|
|
placeholder="Your last name"
|
|
/>
|
|
{errors.lastName && (
|
|
<p className="text-sm text-red-600">{errors.lastName}</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="email"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
Email <span className="text-red-500">*</span>
|
|
</label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
value={formData.email}
|
|
onChange={(e) => handleInputChange("email", e.target.value)}
|
|
placeholder="your.email@company.com"
|
|
/>
|
|
{errors.email && (
|
|
<p className="text-sm text-red-600">{errors.email}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="company"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
Company Name <span className="text-red-500">*</span>
|
|
</label>
|
|
<Input
|
|
id="company"
|
|
type="text"
|
|
value={formData.company}
|
|
onChange={(e) => handleInputChange("company", e.target.value)}
|
|
placeholder="Your company name"
|
|
/>
|
|
{errors.company && (
|
|
<p className="text-sm text-red-600">{errors.company}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label
|
|
htmlFor="message"
|
|
className="block text-sm font-medium text-foreground"
|
|
>
|
|
How can we help? <span className="text-red-500">*</span>
|
|
</label>
|
|
<textarea
|
|
id="message"
|
|
value={formData.message}
|
|
onChange={(e) => handleInputChange("message", e.target.value)}
|
|
placeholder="Tell us more about your inquiry..."
|
|
rows={6}
|
|
className="flex w-full resize-none rounded-md border border-input bg-background bg-input px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
|
|
/>
|
|
{errors.message && (
|
|
<p className="text-sm text-red-600">{errors.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="flex justify-end gap-2">
|
|
{showCancelButton && onCancel && (
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={onCancel}
|
|
disabled={isSubmitting}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
)}
|
|
<Button
|
|
type="submit"
|
|
disabled={
|
|
isSubmitting ||
|
|
(formData.inquiryType === "support" &&
|
|
formData.deploymentType === "self-hosted")
|
|
}
|
|
className="min-w-[120px]"
|
|
>
|
|
{isSubmitting ? "Sending..." : "Send Message"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|
|
|