Files
thrilltrack-explorer/src/pages/Operators.tsx
2025-09-29 19:09:44 +00:00

186 lines
6.6 KiB
TypeScript

import React, { useState } from 'react';
import { useQuery } from '@tanstack/react-query';
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 { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
import { Search, Filter, Building } from 'lucide-react';
import { supabase } from '@/integrations/supabase/client';
import OperatorCard from '@/components/operators/OperatorCard';
import { Company } from '@/types/database';
const Operators = () => {
const [searchTerm, setSearchTerm] = useState('');
const [sortBy, setSortBy] = useState('name');
const [filterBy, setFilterBy] = useState('all');
const { data: operators, isLoading } = useQuery({
queryKey: ['operators'],
queryFn: async () => {
// Get companies that are park operators with park counts
const { data, error } = await supabase
.from('companies')
.select(`
*,
parks:parks!operator_id(count)
`)
.in('id',
await supabase
.from('parks')
.select('operator_id')
.not('operator_id', 'is', null)
.then(({ data }) => data?.map(park => park.operator_id) || [])
)
.order('name');
if (error) throw error;
// Transform the data to include park_count
const transformedData = data?.map(company => ({
...company,
park_count: company.parks?.[0]?.count || 0
})) || [];
return transformedData as (Company & { park_count: number })[];
},
});
const filteredAndSortedOperators = React.useMemo(() => {
if (!operators) return [];
let filtered = operators.filter(operator => {
const matchesSearch = operator.name.toLowerCase().includes(searchTerm.toLowerCase()) ||
(operator.description && operator.description.toLowerCase().includes(searchTerm.toLowerCase()));
if (filterBy === 'all') return matchesSearch;
if (filterBy === 'with-rating') return matchesSearch && operator.average_rating > 0;
if (filterBy === 'established') return matchesSearch && operator.founded_year;
return matchesSearch;
});
// Sort
filtered.sort((a, b) => {
switch (sortBy) {
case 'name':
return a.name.localeCompare(b.name);
case 'rating':
return (b.average_rating || 0) - (a.average_rating || 0);
case 'founded':
return (b.founded_year || 0) - (a.founded_year || 0);
case 'reviews':
return (b.review_count || 0) - (a.review_count || 0);
default:
return 0;
}
});
return filtered;
}, [operators, searchTerm, sortBy, filterBy]);
return (
<div className="min-h-screen bg-background">
<Header />
<main className="container mx-auto px-4 py-8">
<div className="flex items-center gap-3 mb-8">
<div className="p-2 bg-primary/10 rounded-lg">
<Building className="h-6 w-6 text-primary" />
</div>
<div>
<h1 className="text-3xl font-bold">Park Operators</h1>
<p className="text-muted-foreground">
Discover companies that operate theme parks
</p>
</div>
</div>
{/* Search and Filters */}
<div className="flex flex-col sm:flex-row gap-4 mb-8">
<div className="relative flex-1">
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 text-muted-foreground h-4 w-4" />
<Input
placeholder="Search park operators..."
value={searchTerm}
onChange={(e) => setSearchTerm(e.target.value)}
className="pl-10"
/>
</div>
<Select value={sortBy} onValueChange={setSortBy}>
<SelectTrigger className="w-full sm:w-48">
<SelectValue placeholder="Sort by" />
</SelectTrigger>
<SelectContent>
<SelectItem value="name">Name</SelectItem>
<SelectItem value="rating">Rating</SelectItem>
<SelectItem value="founded">Founded Year</SelectItem>
<SelectItem value="reviews">Review Count</SelectItem>
</SelectContent>
</Select>
<Select value={filterBy} onValueChange={setFilterBy}>
<SelectTrigger className="w-full sm:w-48">
<Filter className="h-4 w-4 mr-2" />
<SelectValue placeholder="Filter" />
</SelectTrigger>
<SelectContent>
<SelectItem value="all">All Operators</SelectItem>
<SelectItem value="with-rating">With Ratings</SelectItem>
<SelectItem value="established">Established</SelectItem>
</SelectContent>
</Select>
</div>
{/* Results Count */}
<div className="flex items-center justify-between mb-6">
<div className="flex items-center gap-2">
<Badge variant="secondary">
{filteredAndSortedOperators?.length || 0} park operators
</Badge>
{searchTerm && (
<Badge variant="outline">
Searching: "{searchTerm}"
</Badge>
)}
</div>
</div>
{/* Loading State */}
{isLoading && (
<div className="text-center py-12">
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-primary mx-auto"></div>
<p className="text-muted-foreground mt-4">Loading park operators...</p>
</div>
)}
{/* Operators Grid */}
{!isLoading && filteredAndSortedOperators && (
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
{filteredAndSortedOperators.map((operator) => (
<OperatorCard key={operator.id} company={operator} />
))}
</div>
)}
{/* Empty State */}
{!isLoading && filteredAndSortedOperators?.length === 0 && (
<div className="text-center py-12">
<Building className="h-12 w-12 text-muted-foreground mx-auto mb-4" />
<h3 className="text-lg font-semibold mb-2">No park operators found</h3>
<p className="text-muted-foreground">
{searchTerm
? "Try adjusting your search terms or filters"
: "No park operators are currently available"
}
</p>
</div>
)}
</main>
</div>
);
};
export default Operators;