import { useMemo } from "react"; import conferencesData from "@/data/conferences.yml"; interface FilterBarProps { selectedTag: string; onTagSelect: (tag: string) => void; } const FilterBar = ({ selectedTag, 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 ["All", ...Array.from(tags)].map(tag => ({ id: tag, label: tag.split("-").map(word => word.charAt(0).toUpperCase() + word.slice(1) ).join(" "), description: tag === "All" ? "All Conferences" : `${tag} Conferences` })); }, []); return (
{uniqueTags.map((filter) => ( ))}
); }; export default FilterBar;