/**
 * Chapter directory data for Eagle Action.
 *
 * Add real chapters here as they are confirmed; the UI treats an empty list as
 * “nothing listed yet” on state and national pages.
 */

import type { Chapter } from "./types";

export const CHAPTERS: Chapter[] = [];

export function getChaptersByState(stateAbbr: string): Chapter[] {
  return CHAPTERS.filter((c) => c.stateAbbr === stateAbbr);
}

export function getChapterCountByState(stateAbbr: string): number {
  return CHAPTERS.filter((c) => c.stateAbbr === stateAbbr).length;
}
