refactor(Scroller): childrenを依存配列から削除しResizeObserverを使用#6405
Open
AtsushiM wants to merge 4 commits into
Open
Conversation
useEffectの依存配列にchildrenが含まれていると、不安定な参照のため 頻繁に再実行される問題がありました。 ResizeObserverを使用してスクロール領域のサイズ変更を監視することで、 内容が変わってサイズが変わった際も適切に検知しつつ、 不要な再実行を防ぎます。 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
commit: |
- window resizeイベントリスナーとdebounceを削除 - ResizeObserverがScroller要素を監視することでウィンドウリサイズも検知可能 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Node環境(テスト環境)ではResizeObserverが存在しないため、 存在チェックを追加して安全に処理をスキップ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
UIライブラリとしてResizeObserverは存在する前提にし、 テスト環境でのみmockを提供するように変更 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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は参照が頻繁に変わるため、依存配列に含めると不要な再実行や無限ループの原因となる可能性があります。変更内容
childrenを削除Before
After
プロダクト側で対応が必要な事項
なし
確認方法