uidotdev / usehooks

A collection of modern, server-safe React hooks – from the ui.dev team

Home Page:https://usehooks.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

useIntersectionObserver can only observe one element

valerio-pescatori opened this issue · comments

First of all, thank you for this amazing library, it saved me a lot of time!

I am writing some fairly complex logic for which I need an IntersectionObserver that observes more that one element, possibly hundreds.
Now, I know I could use more IntersectionObserver instances but that would take a toll on the performances.

So I was searching for a way to observe more that one element with useIntersectionObserver but it seems it's not possible.

I think it would be a good feature and it would make this hook a better abstraction over the native API.