-
Notifications
You must be signed in to change notification settings - Fork 143
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
feat: Headerに言語切替UIを実装 #4613
feat: Headerに言語切替UIを実装 #4613
Conversation
be931e7
to
5684a10
Compare
const currentLang = useMemo( | ||
() => locale || defaultLocale || Object.keys(localeMap)[0], | ||
[locale, defaultLocale, localeMap], | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LanguageSwitcher
では、選択された言語を状態として持たず、Propsから受け取るのみ。
return ( | ||
<Dropdown {...props}> | ||
<DropdownTrigger>{narrow ? NarrowTrigger : Trigger}</DropdownTrigger> | ||
<DropdownContent onKeyDown={handleKeyDown} role="presentation"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<DropdownContent>
内のキーボード操作をキャプチャするために DropdownContent
に onKeyDown
を設定。ESLintのエラー回避のために role="presentation"
を付与
75cc625
to
3e1730b
Compare
1746ea7
to
1bd4c7b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🎉
今使っているプロダクトのコンポーネントを差し替えてもそのまま使えそうでした!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
LGTM! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コードfmfmとChromaticの確認をしました!
LGTM 🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 👍 👍 👍 👍 👍 👍 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!実装超絶感謝です!
1bd4c7b
to
7c64a3b
Compare
7c64a3b
to
967a227
Compare
Related URL
Overview
What I did
<LanguageSwitcher>
コンポーネントを実装<Header>
内での利用を想定しているため、/Header
配下に作成しているが、単独でも利用できるように、単独でも export しているinvert
のスタイルを実装narrow
のスタイルを実装Capture
Storybook: Navigation(ナビゲーション) / Header / LanguageSwitcher - Docs ⋅ Storybook