TanStack / virtual

🤖 Headless UI for Virtualizing Large Element Lists in JS/TS, React, Solid, Vue and Svelte

Home Page:https://tanstack.com/virtual

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Request Fullscreen Issue in Desktop Safari

thedivac opened this issue · comments

Describe the bug

I am rendering a long list of content using useWindowVirtualizer.
Each list can be shown in full screen mode by clicking a button using domElement.requestFullscreen().
When I scroll down and request fullscreen on an item that is not rendered initially, the full screen pops up and closes immediately.
I assume this happens because the virtualizer thinks we just scrolled to the top as soon as the full screen is shown, then unmounts the element that we are displaying in full screen (because it's not visible when the list is scrolled to the top) which then closes the full screen again.
See codesandbox for an example. It works in Chrome, but fails in Safari.

Your minimal, reproducible example

https://c9l4ym-5173.csb.app

Steps to reproduce

Open the code sandbox on desktop safari in a new tab, scroll down and click request full screen.

Expected behavior

The element should be shown in full screen.

How often does this bug happen?

Every time

Screenshots or Videos

No response

Platform

Desktop Safari

tanstack-virtual version

3.0.1

TypeScript version

No response

Additional context

No response

Terms & Code of Conduct

  • I agree to follow this project's Code of Conduct
  • I understand that if my bug cannot be reliable reproduced in a debuggable environment, it will probably not be fixed and this issue may even be closed.

@thedivac could share a link to codesandbox to checkout the implementation