-
Notifications
You must be signed in to change notification settings - Fork 91
Open
Description
I would like to use ember-in-viewport in only the horizontal direction.
The product use case here is a VERY large data table with 2000+ rows of 40+ columns, whose column headers have in-viewport checks on them that control if we should render a column's cells.
When the column headers are scrolled off-screen vertically, I don't want to cull the cells. I only want the intersection checking in the horizontal/X direction.
This is possible with IntersectionObservers, by specifying a rootMargin in % values.
This line here:
| rootMargin: `${top}px ${right}px ${bottom}px ${left}px`, |
Forces us to use pixel values. If we pass % based values, we get errors like:

I suggest we either:
- Remove the string concatenation and force the developer to specify px/% when passing a
viewportToleranceto more closely align with the IntersectionObserver API. ( would require major version bump )
- or -
- Add some code that looks for a % in the value, if so, it uses the value unmodified.
- or -
- Something more clever?
Happy to do the work, but I would like some consensus first.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels