import { useMemo } from "react"; import conferencesData from "@/data/conferences.yml"; import { X } from "lucide-react"; interface FilterBarProps { selectedTags: Set; onTagSelect: (tags: Set) => void; } const FilterBar = ({ selectedTags = new Set(), onTagSelect }: 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; }; return (
{uniqueTags.map((filter) => ( ))} {selectedTags?.size > 0 && ( )}
); }; export default FilterBar;