Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

チェックボックス<Checkbox>, <PrefectureCheckbox>を実装した #15

Merged
merged 5 commits into from
May 25, 2024

Conversation

ReoHakase
Copy link
Owner

概要

<Checkbox>

独自の見た目を持つa11y対応のチェックボックスです。
スクリーンリーダーにのみ見える<input type="checkbox">と、<label for="...">で実装しています。
キーボードでフォーカスされても、正しくフォーカスリングを表示できます。

export type CheckboxProps = Omit<ComponentPropsWithoutRef<'input'>, 'type'> & {
  id: string; // <label>で擬似的なチェックボックスを作るために必要
  'aria-labelledby': string; // 実際にラベルテキストを含む<label>のidを必ず指定する
};

<PrefectureCheckbox>

都道府県のチェックボックスコンポーネント。
値が変更されると、それに合わせてsearchParamsを更新します。

export type PrefectureCheckboxProps = Omit<CheckboxProps, 'id' | 'aria-labelledby' | 'checked'> & {
  prefCode: PrefCode;
  prefLocale: string;
};

@ReoHakase ReoHakase self-assigned this May 25, 2024
Copy link

vercel bot commented May 25, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
simple-resas-app-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 25, 2024 3:44am

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨ feat 機能の実装。 🧪 test テストの追加・更新
Projects
None yet
Development

Successfully merging this pull request may close these issues.

チェックボックス<Checkbox>を実装する
1 participant