refactor(DropdownTrigger): childrenを依存配列から削除しMutationObserverを使用#6408
Open
AtsushiM wants to merge 1 commit into
Open
refactor(DropdownTrigger): childrenを依存配列から削除しMutationObserverを使用#6408AtsushiM wants to merge 1 commit into
AtsushiM wants to merge 1 commit into
Conversation
useEffectの依存配列にchildrenが含まれていると、不安定な参照のため 頻繁に再実行される問題がありました。 MutationObserverを使用してtrigger要素のDOM構造の変更を監視することで、 内容が変わった際も適切に検知しつつ、不要な再実行を防ぎます。 また、onClickTriggerをmemoizedOnClickTriggerにリネームすることで、 この関数がuseCallbackでメモ化されていることを明示し、 将来のメンテナンス時に設計意図を明確にしました。 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
commit: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
関連URL
なし
概要
eslint-config-smarthr@14.7.0で追加された
smarthr/best-practice-for-unstable-dependenciesルールにより、useEffectの依存配列に不安定な参照であるchildrenが含まれていることが警告されるようになりました。childrenは参照が頻繁に変わるため、依存配列に含めると不要な再実行や無限ループの原因となる可能性があります。変更内容
1. childrenを依存配列から削除しMutationObserverを使用
childrenを削除2. onClickTriggerをmemoizedOnClickTriggerにリネーム
Dropdown.tsxのonClickTriggerをmemoizedOnClickTriggerにリネームBefore
After
プロダクト側で対応が必要な事項
なし
確認方法