-
Notifications
You must be signed in to change notification settings - Fork 141
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(DropdownTrigger): Dropdown triggerでtooltipを表示できるようにする #5291
base: master
Are you sure you want to change the base?
feat(DropdownTrigger): Dropdown triggerでtooltipを表示できるようにする #5291
Conversation
commit: |
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.
変更の方向性は良いと思いました!細かい部分でコメント入れてます〜
import type { FC, JSX, ReactNode } from 'react' | ||
|
||
type Props = { | ||
shouldWrapContent: boolean | ||
wrapper: (children: ReactNode) => JSX.Element | ||
children: ReactNode | ||
} | ||
|
||
/** | ||
* 条件付きでラッパをレンダリングする | ||
*/ | ||
export const ConditionalWrapper: FC<Props> = ({ shouldWrapContent, wrapper, children }) => | ||
shouldWrapContent ? wrapper(children) : children |
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.
現状DropdownTriggerからしかimportされていないようなので、ほかで使用する予定がなければDropdownTriggerの中 (もしくはDropdownの中) におさめてほしい気がしました!
* s true undefined | ||
* s false undefined | ||
* default true undefined | ||
* s true 指定あり | ||
* default false udnefined | ||
* default false undefined |
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.
👍
@@ -86,6 +88,7 @@ export const FilterDropdown: FC<Props & ElementProps> = ({ | |||
decorators, | |||
responseMessage, | |||
triggerSize, | |||
onlyIconTrigger = false, |
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.
Buttonに合わせてsquare propsでも良いかもと思いました!
@@ -7,7 +7,7 @@ import ts from 'typescript' | |||
const readFile = util.promisify(fs.readFile) | |||
const readdir = util.promisify(fs.readdir) | |||
|
|||
const IGNORE_COMPONENTS = ['Experimental'] | |||
const IGNORE_COMPONENTS = ['Experimental', 'ConditionalWrapper'] |
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.
ConditioinalWrapperを移動すると消していいかも、と思いました!
関連URL
https://smarthr.atlassian.net/browse/SHRUI-1209
概要
Dropdownメニューのトリガーボタンにツールチップでラベルを表示させたい場合、DropdownMenuButton・FilterDropdownコンポーネントをTooltipでラップすると、ドロップダウンメニューのコンテンツまでラップされてしまい、pointerenter/pointerleaveイベントの挙動が想定通りにならないため(ツールチップのトリガー以外の要素でもイベントが発火したり、しなかったりしまいます)。
この問題を解消するため、DropdownTriggerにツールチップ表示用のpropsを追加し、条件付きでツールチップでラップできるように修正しました。
Use case
Dropdown/FilterDropdown menuのtriggerがアイコンのみの場合、操作を可視ラベルとして表示したい
変更内容
BEFORE
[現在発生している問題]: TooltipでDropdownMenuButton / FilterDropdownをラップして表示することしかできませんでしたので、Tooltipの表示・非表示を処理するポインターイベントがDropdownContentでも発火されて、tooltipが表示されたり、されなかったりになっていました
397699260-516f8667-188a-4d3e-94f5-27865fbb279e.mov
AFTER
DropdownMenuButton / FilterDropdownにprops渡して条件付きでdropdown trigger buttonのみをtooltipでラップするように修正し、Tooltipの表示・非表示を処理するポインターイベントがdropdown trigger buttonのみで発火するようになります
Screen.Recording.2025-01-20.at.9.59.00.mov
確認方法
Storybook や Chromatic で確認いただけます
プロダクト側で確認済みです