Fix: Add buttons to entity listing pages

This commit is contained in:
gpt-engineer-app[bot]
2025-09-30 13:11:14 +00:00
parent e276725e52
commit f78c60ef01
3 changed files with 226 additions and 3 deletions

View File

@@ -1,19 +1,30 @@
import React, { useState } from 'react';
import { useQuery } from '@tanstack/react-query';
import { useNavigate } from 'react-router-dom';
import { Header } from '@/components/layout/Header';
import { Input } from '@/components/ui/input';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
import { Dialog, DialogContent } from '@/components/ui/dialog';
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
import { Search, Filter, Building } from 'lucide-react';
import { Search, Filter, Building, Plus } from 'lucide-react';
import { supabase } from '@/integrations/supabase/client';
import OperatorCard from '@/components/operators/OperatorCard';
import { OperatorForm } from '@/components/admin/OperatorForm';
import { Company } from '@/types/database';
import { useAuth } from '@/hooks/useAuth';
import { useUserRole } from '@/hooks/useUserRole';
import { toast } from '@/hooks/use-toast';
import { submitCompanyCreation } from '@/lib/companyHelpers';
const Operators = () => {
const navigate = useNavigate();
const { user } = useAuth();
const { isModerator } = useUserRole();
const [searchTerm, setSearchTerm] = useState('');
const [sortBy, setSortBy] = useState('name');
const [filterBy, setFilterBy] = useState('all');
const [isCreateModalOpen, setIsCreateModalOpen] = useState(false);
const { data: operators, isLoading } = useQuery({
queryKey: ['operators'],
@@ -46,6 +57,37 @@ const Operators = () => {
},
});
const handleCreateSubmit = async (data: any) => {
try {
if (!user) {
navigate('/auth');
return;
}
const result = await submitCompanyCreation(
data,
'operator',
user.id,
isModerator()
);
toast({
title: result.submitted ? "Operator Submitted" : "Operator Created",
description: result.submitted
? "Your submission has been sent for review."
: "The operator has been created successfully."
});
setIsCreateModalOpen(false);
} catch (error: any) {
toast({
title: "Error",
description: error.message || "Failed to create operator.",
variant: "destructive"
});
}
};
const filteredAndSortedOperators = React.useMemo(() => {
if (!operators) return [];
@@ -105,6 +147,22 @@ const Operators = () => {
</Badge>
)}
</div>
<div className="flex items-center gap-2">
<Button
onClick={() => {
if (!user) {
navigate('/auth');
} else {
setIsCreateModalOpen(true);
}
}}
className="gap-2"
>
<Plus className="w-4 h-4" />
Add Operator
</Button>
</div>
</div>
</div>
@@ -178,6 +236,16 @@ const Operators = () => {
</p>
</div>
)}
{/* Create Modal */}
<Dialog open={isCreateModalOpen} onOpenChange={setIsCreateModalOpen}>
<DialogContent className="max-w-4xl max-h-[90vh] overflow-y-auto">
<OperatorForm
onSubmit={handleCreateSubmit}
onCancel={() => setIsCreateModalOpen(false)}
/>
</DialogContent>
</Dialog>
</main>
</div>
);