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

chore: Dropdownコンポーネント内のロジックを整理する #5304

Open
wants to merge 16 commits into
base: master
Choose a base branch
from

Conversation

AtsushiM
Copy link
Member

関連URL

概要

変更内容

確認方法

Comment on lines -77 to +76
tabbablesInContent.some((inner) => {
for (const inner of tabbable(wrapperRef.current)) {
Copy link
Member Author

@AtsushiM AtsushiM Jan 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

元々のコードではsomeでループされていましたが、副作用の有るコードであり、returnされる値は利用されていませんでした。
また全ての要素を捜査する必要があるわけではなく 特定の値が存在すれば、関数を呼び出す という意図の処理でした。
これらから 特定のアイテムが見つかれば実行する ことをわかりやすくし、処理自体を早期終了できるよう、for ofに変更しています
(tabbablesInContent.find(....) でも意図が伝えやすそうですが、for of とbreakのほうが処理早いしまぁ... 位の気持ちで採用しています。)

}

if (e.target && e.target === dummyFocusRef.current) {
const trigger = getFirstTabbable(triggerElementRef)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ifの順序が変更されていますが、どちらもonClickCloserを呼び出すだけなので結果の変更はありません。
またgetFirstTabbableはロジックが別ファイルに隠蔽されているため、呼び出し順を変えることで多少の効率化が図れます

const triggers = tabbable(triggerElementRef.current)
const trigger = triggers[triggers.length - 1]

const trigger = tabbable(triggerElementRef.current).at(-1)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

実は 配列を一度変数化し、xxx.lengthを参照する方法よりatで指定するほうが、ブラウザにもよりますが大体5倍位速度が違います
(それでも十分高速ですが)

atのほうが読みやすいこともあり、修正しました。
一応atを使った場合のデメリットとして、3年以上前のブラウザは対応していない場合がある、というものがありますが、対応範囲外のため強気に修正しています

onClickCloser()
return
}
} else if (KEY_ESCAPE.test(e.key)) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

複数回の比較を行うより、正規表現一回のほうが高速の場合が多いため置き換えています

Comment on lines +21 to +29
if (!parent) {
return false
}

const path = e.composedPath()
if (path.length === 0 || !parent) return false

if (path.length === 0) {
return false
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

e.composedPath() の呼び出しは不要な場合がありえるため、ifを分割しました

Comment on lines +48 to +50
{includeDisabledTrigger(children)
? children
: React.Children.map(children, (child) => {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

このmap自体がonClickに追加処理を差し込むためのものですが、そもそも子がdisabledな場合はその追加処理自体が不要になるため、map外でチェックするようにロジックを修正しました

triggers.forEach((trigger) => {
trigger.setAttribute('aria-expanded', String(active))
trigger.setAttribute('aria-expanded', active.toString())
Copy link
Member Author

@AtsushiM AtsushiM Jan 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String#%E6%96%87%E5%AD%97%E5%88%97%E5%A4%89%E6%8F%9B

Stringは内部的にtoStringを呼び出すため、基本的にtoStringを呼び出すほうが文字列変換ロジックとしては高速です。
またStringは

  • Symbolを変換できる唯一のビルトインの文字列変換ロジックであること
    • そのためここでSymbolが渡されてくる可能性があるのか?などの思考が派生する可能性がある
  • new Stringで処理すると歴史的経緯で大変バグりやすく、一瞬考えてしまう
    • newをつけるとObjectになってしまう

など、混乱を生む可能性があるのでtoStringに置き換えました。

Comment on lines -66 to -67
className: contentInner({ isActive, className }),
style: {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

classNameとstyleが同じobjectに格納されつつmemo化されていますが、それぞれ依存する変数が違うため、memo化の効率が悪くなっています。
コードの距離的にも近いため、ここでまとめるメリットが少ないのでそれぞれ別でmemo化するように修正しています

Comment on lines +101 to +116
const onClickTrigger = useCallback((rect: Rect) => {
const newActive = !active

setActive(newActive)

if (newActive) {
setTriggerRect(rect)
}
}, [])

const onClickCloser = useCallback(() => {
setActive(false)

// return focus to the Trigger
getFirstTabbable(triggerElementRef)?.focus()
}, [])
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

完全にこのコンポーネント内のhookにしか依存していないため、関数の再作成は不要でした。
useCallbackでmemo化するよう修正しています

@yagimushi yagimushi force-pushed the chore-refactoring-Dropdown branch from 59c7e36 to ec47900 Compare January 20, 2025 06:14
Copy link

pkg-pr-new bot commented Jan 20, 2025

Open in Stackblitz

npm i https://pkg.pr.new/kufu/smarthr-ui@5304

commit: 94ebff1

@yagimushi yagimushi force-pushed the chore-refactoring-Dropdown branch from ec47900 to 94ebff1 Compare January 20, 2025 06:17
@AtsushiM AtsushiM marked this pull request as ready for review January 21, 2025 05:46
@AtsushiM AtsushiM requested a review from a team as a code owner January 21, 2025 05:46
@AtsushiM AtsushiM requested review from oti and yuzuru-akiyama and removed request for a team January 21, 2025 05:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant