import { useMemo } from "react"; import conferencesData from "@/data/conferences.yml"; import { X, ChevronRight, Filter } from "lucide-react"; import { getAllCountries } from "@/utils/countryExtractor"; import { Popover, PopoverContent, PopoverTrigger, } from "@/components/ui/popover"; import { Button } from "@/components/ui/button"; import { Checkbox } from "@/components/ui/checkbox"; import { Conference } from "@/types/conference"; interface FilterBarProps { selectedTags: Set; selectedCountries: Set; onTagSelect: (tags: Set) => void; onCountrySelect: (countries: Set) => void; } const FilterBar = ({ selectedTags = new Set(), selectedCountries = new Set(), onTagSelect, onCountrySelect }: FilterBarProps) => { const uniqueTags = useMemo(() => { const tags = new Set(); if (Array.isArray(conferencesData)) { conferencesData.forEach(conf => { if (Array.isArray(conf.tags)) { conf.tags.forEach(tag => tags.add(tag)); } }); } return Array.from(tags).map(tag => ({ id: tag, label: tag.split("-").map(word => word.charAt(0).toUpperCase() + word.slice(1) ).join(" "), description: `${tag} Conferences` })); }, []); const isTagSelected = (tagId: string) => { return selectedTags?.has(tagId) ?? false; }; const handleTagChange = (tagId: string) => { const newSelectedTags = new Set(selectedTags); if (newSelectedTags.has(tagId)) { newSelectedTags.delete(tagId); } else { newSelectedTags.add(tagId); } onTagSelect(newSelectedTags); }; const clearAllFilters = () => { onTagSelect(new Set()); onCountrySelect(new Set()); }; return (

Tags

{uniqueTags.map(tag => (
handleTagChange(tag.id)} />
))}
{/* Clear all filters button */} {(selectedTags.size > 0 || selectedCountries.size > 0) && ( )} {/* Display selected tags */} {Array.from(selectedTags).map(tag => ( ))}
); }; export default FilterBar;