Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | 1x 1x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 56x 56x 56x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x 7x | 'use client';
import { useState } from 'react';
import { Send, Copy, Check } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Textarea } from '@/components/ui/textarea';
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/components/ui/dialog';
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from '@/components/ui/select';
import { useToast } from '@/hooks/use-toast';
import { RELATIONSHIP_CONTEXTS } from '@/lib/testimonials/verification';
interface RequestFormProps {
onSuccess?: () => void;
}
export function RequestForm({ onSuccess }: RequestFormProps) {
const { toast } = useToast();
const [open, setOpen] = useState(false);
const [isSubmitting, setIsSubmitting] = useState(false);
const [generatedUrl, setGeneratedUrl] = useState<string | null>(null);
const [copied, setCopied] = useState(false);
// Form state
const [email, setEmail] = useState('');
const [name, setName] = useState('');
const [relationship, setRelationship] = useState('');
const [message, setMessage] = useState('');
async function handleSubmit(e: React.FormEvent) {
e.preventDefault();
if (!email.trim()) {
toast({
title: 'Error',
description: 'Email is required',
variant: 'destructive',
});
return;
}
setIsSubmitting(true);
try {
const response = await fetch('/api/testimonials/requests', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
recipient_email: email,
recipient_name: name || null,
relationship_context: relationship || null,
custom_message: message || null,
}),
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || 'Failed to create request');
}
setGeneratedUrl(data.submitUrl);
toast({
title: 'Request Created',
description: 'Share the link with your contact to collect their testimonial.',
});
onSuccess?.();
} catch (error) {
toast({
title: 'Error',
description: error instanceof Error ? error.message : 'Failed to create request',
variant: 'destructive',
});
} finally {
setIsSubmitting(false);
}
}
function copyToClipboard() {
if (generatedUrl) {
navigator.clipboard.writeText(generatedUrl);
setCopied(true);
setTimeout(() => setCopied(false), 2000);
toast({
title: 'Copied!',
description: 'Link copied to clipboard',
});
}
}
function resetForm() {
setEmail('');
setName('');
setRelationship('');
setMessage('');
setGeneratedUrl(null);
}
function handleOpenChange(newOpen: boolean) {
setOpen(newOpen);
if (!newOpen) {
resetForm();
}
}
return (
<Dialog open={open} onOpenChange={handleOpenChange}>
<DialogTrigger asChild>
<Button>
<Send className="mr-2 h-4 w-4" />
Request Testimonial
</Button>
</DialogTrigger>
<DialogContent className="max-w-md">
<DialogHeader>
<DialogTitle>Request a Testimonial</DialogTitle>
<DialogDescription>
Send a request to collect a testimonial from a client or colleague.
</DialogDescription>
</DialogHeader>
{generatedUrl ? (
<div className="space-y-4">
<div className="rounded-lg bg-muted p-4">
<p className="mb-2 text-sm font-medium">Share this link:</p>
<div className="flex gap-2">
<Input value={generatedUrl} readOnly className="text-xs" />
<Button variant="outline" size="icon" onClick={copyToClipboard}>
{copied ? (
<Check className="h-4 w-4 text-green-500" />
) : (
<Copy className="h-4 w-4" />
)}
</Button>
</div>
</div>
<p className="text-sm text-muted-foreground">
The link will expire in 30 days. You can view all pending requests in your dashboard.
</p>
<div className="flex gap-2">
<Button variant="outline" onClick={resetForm} className="flex-1">
Create Another
</Button>
<Button onClick={() => handleOpenChange(false)} className="flex-1">
Done
</Button>
</div>
</div>
) : (
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="email">Recipient Email *</Label>
<Input
id="email"
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="client@example.com"
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="name">Recipient Name</Label>
<Input
id="name"
value={name}
onChange={(e) => setName(e.target.value)}
placeholder="John Smith"
/>
</div>
<div className="space-y-2">
<Label>Relationship</Label>
<Select value={relationship} onValueChange={setRelationship}>
<SelectTrigger>
<SelectValue placeholder="Select relationship" />
</SelectTrigger>
<SelectContent>
{RELATIONSHIP_CONTEXTS.map((ctx) => (
<SelectItem key={ctx.value} value={ctx.value}>
{ctx.label}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="message">Custom Message (optional)</Label>
<Textarea
id="message"
value={message}
onChange={(e) => setMessage(e.target.value)}
placeholder="Add a personal note to your request..."
rows={3}
/>
</div>
<div className="flex gap-2">
<Button
type="button"
variant="outline"
onClick={() => handleOpenChange(false)}
className="flex-1"
>
Cancel
</Button>
<Button type="submit" disabled={isSubmitting} className="flex-1">
{isSubmitting ? 'Creating...' : 'Create Request'}
</Button>
</div>
</form>
)}
</DialogContent>
</Dialog>
);
}
|