mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 19:51:13 -05:00
227 lines
8.5 KiB
TypeScript
227 lines
8.5 KiB
TypeScript
import { useState } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import * as z from 'zod';
|
|
import { entitySchemas } from '@/lib/entityValidationSchemas';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { Label } from '@/components/ui/label';
|
|
import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group';
|
|
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { SlugField } from '@/components/ui/slug-field';
|
|
import { FerrisWheel, Save, X } from 'lucide-react';
|
|
import { Combobox } from '@/components/ui/combobox';
|
|
import { useCompanyHeadquarters } from '@/hooks/useAutocompleteData';
|
|
import { useUserRole } from '@/hooks/useUserRole';
|
|
import { EntityMultiImageUploader, ImageAssignments } from '@/components/upload/EntityMultiImageUploader';
|
|
import { FlexibleDateInput, type DatePrecision } from '@/components/ui/flexible-date-input';
|
|
import { submitOperatorCreation, submitOperatorUpdate } from '@/lib/entitySubmissionHelpers';
|
|
import { useAuth } from '@/hooks/useAuth';
|
|
import { toast } from 'sonner';
|
|
import { useNavigate } from 'react-router-dom';
|
|
|
|
type OperatorFormData = z.infer<typeof entitySchemas.operator>;
|
|
|
|
interface OperatorFormProps {
|
|
onSubmit: (data: OperatorFormData) => void;
|
|
onCancel: () => void;
|
|
initialData?: Partial<OperatorFormData & {
|
|
id?: string;
|
|
banner_image_url?: string;
|
|
card_image_url?: string;
|
|
}>;
|
|
}
|
|
|
|
export function OperatorForm({ onSubmit, onCancel, initialData }: OperatorFormProps) {
|
|
const { isModerator } = useUserRole();
|
|
const { headquarters } = useCompanyHeadquarters();
|
|
const { user } = useAuth();
|
|
const navigate = useNavigate();
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
setValue,
|
|
watch,
|
|
formState: { errors }
|
|
} = useForm({
|
|
resolver: zodResolver(entitySchemas.operator),
|
|
defaultValues: {
|
|
name: initialData?.name || '',
|
|
slug: initialData?.slug || '',
|
|
description: initialData?.description || '',
|
|
person_type: initialData?.person_type || 'company',
|
|
website_url: initialData?.website_url || '',
|
|
founded_year: initialData?.founded_year ? String(initialData.founded_year) : '',
|
|
headquarters_location: initialData?.headquarters_location || '',
|
|
images: initialData?.images || { uploaded: [] }
|
|
}
|
|
});
|
|
|
|
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="flex items-center gap-2">
|
|
<FerrisWheel className="w-5 h-5" />
|
|
{initialData ? 'Edit Operator' : 'Create New Operator'}
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit(async (data) => {
|
|
if (!user) {
|
|
toast.error('You must be logged in to submit');
|
|
return;
|
|
}
|
|
|
|
setIsSubmitting(true);
|
|
try {
|
|
if (initialData?.id) {
|
|
await submitOperatorUpdate(initialData.id, data as unknown as OperatorFormData, user.id);
|
|
toast.success('Operator update submitted for review');
|
|
} else {
|
|
await submitOperatorCreation(data as unknown as OperatorFormData, user.id);
|
|
toast.success('Operator submitted for review');
|
|
}
|
|
onCancel();
|
|
} catch (error) {
|
|
console.error('Submission error:', error);
|
|
toast.error(error instanceof Error ? error.message : 'Failed to submit operator');
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
})} className="space-y-6">
|
|
{/* Basic Information */}
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Name *</Label>
|
|
<Input
|
|
id="name"
|
|
{...register('name')}
|
|
placeholder="Enter operator name"
|
|
/>
|
|
{errors.name && (
|
|
<p className="text-sm text-destructive">{errors.name.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<SlugField
|
|
name={watch('name')}
|
|
slug={watch('slug')}
|
|
onSlugChange={(slug) => setValue('slug', slug)}
|
|
isModerator={isModerator()}
|
|
/>
|
|
</div>
|
|
|
|
{/* Description */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description">Description</Label>
|
|
<Textarea
|
|
id="description"
|
|
{...register('description')}
|
|
placeholder="Describe the operator..."
|
|
rows={3}
|
|
/>
|
|
</div>
|
|
|
|
{/* Person Type */}
|
|
<div className="space-y-2">
|
|
<Label>Entity Type *</Label>
|
|
<RadioGroup
|
|
value={watch('person_type')}
|
|
onValueChange={(value) => setValue('person_type', value as any)}
|
|
className="grid grid-cols-2 md:grid-cols-4 gap-4"
|
|
>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="company" id="company" />
|
|
<Label htmlFor="company" className="cursor-pointer">Company</Label>
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="individual" id="individual" />
|
|
<Label htmlFor="individual" className="cursor-pointer">Individual</Label>
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="firm" id="firm" />
|
|
<Label htmlFor="firm" className="cursor-pointer">Firm</Label>
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="organization" id="organization" />
|
|
<Label htmlFor="organization" className="cursor-pointer">Organization</Label>
|
|
</div>
|
|
</RadioGroup>
|
|
</div>
|
|
|
|
{/* Additional Details */}
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="founded_year">Founded Year</Label>
|
|
<Input
|
|
id="founded_year"
|
|
type="number"
|
|
min="1800"
|
|
max={new Date().getFullYear()}
|
|
{...register('founded_year')}
|
|
placeholder="e.g. 1972"
|
|
/>
|
|
{errors.founded_year && (
|
|
<p className="text-sm text-destructive">{errors.founded_year.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="headquarters_location">Headquarters Location</Label>
|
|
<Combobox
|
|
options={headquarters}
|
|
value={watch('headquarters_location')}
|
|
onValueChange={(value) => setValue('headquarters_location', value)}
|
|
placeholder="Select or type location"
|
|
searchPlaceholder="Search locations..."
|
|
emptyText="No locations found"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Website */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="website_url">Website URL</Label>
|
|
<Input
|
|
id="website_url"
|
|
type="url"
|
|
{...register('website_url')}
|
|
placeholder="https://example.com"
|
|
/>
|
|
{errors.website_url && (
|
|
<p className="text-sm text-destructive">{errors.website_url.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
{/* Images */}
|
|
<EntityMultiImageUploader
|
|
mode={initialData ? 'edit' : 'create'}
|
|
value={watch('images') || { uploaded: [] }}
|
|
onChange={(images) => setValue('images', images)}
|
|
entityType="operator"
|
|
entityId={initialData?.id}
|
|
currentBannerUrl={initialData?.banner_image_url}
|
|
currentCardUrl={initialData?.card_image_url}
|
|
/>
|
|
|
|
{/* Actions */}
|
|
<div className="flex gap-3 justify-end">
|
|
<Button type="button" variant="outline" onClick={onCancel} disabled={isSubmitting}>
|
|
<X className="w-4 h-4 mr-2" />
|
|
Cancel
|
|
</Button>
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
<Save className="w-4 h-4 mr-2" />
|
|
{isSubmitting ? 'Submitting...' : 'Save Operator'}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|