Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v9-rc.7: Pointer events in portals ignore the layout #3454

Closed
vinkovsky opened this issue Feb 9, 2025 · 12 comments · Fixed by #3462
Closed

v9-rc.7: Pointer events in portals ignore the layout #3454

vinkovsky opened this issue Feb 9, 2025 · 12 comments · Fixed by #3462
Labels
bug Something isn't working

Comments

@vinkovsky
Copy link

Image

pointer-issue.zip

@vinkovsky
Copy link
Author

vinkovsky commented Feb 9, 2025

Discussed here #3437

@vinkovsky
Copy link
Author

vinkovsky commented Feb 9, 2025

I probably fixed this by setting the size of the state

const setSize = useThree((state) => state.setSize) 

setSize(width, height, 0, 0)

But this requires manually observing the mutation of the canvas width and height.

@vinkovsky
Copy link
Author

vinkovsky commented Feb 9, 2025

Oh, found a solution

<Canvas eventPrefix="layer" />

@ryantbrown
Copy link

I have been beating my head against the wall for 2 hours trying to figure out why the pointer coordinates were not accurate. Thank you for <Canvas eventPrefix="layer" /> that fixed it.

@vinkovsky
Copy link
Author

@ryantbrown glad to be helpful! Unfortunately, this doesnt work for some components from the drei lib with portals under the hood.
pmndrs/drei#2342

@vinkovsky
Copy link
Author

vinkovsky commented Feb 17, 2025

@CodyJasonBennett
Should I reopen this issue? I think the problem is not in the drei itself.

Here is the updated code snippet

pointer-issue-2.zip

@CodyJasonBennett
Copy link
Member

How did you determine that? Is this an issue in R3F v8 or can you reproduce without Drei?

@vinkovsky
Copy link
Author

vinkovsky commented Feb 17, 2025

@CodyJasonBennett Here’s my test case with v9 without drei.

portal-pointer-issue.zip

Image

@vinkovsky
Copy link
Author

vinkovsky commented Feb 17, 2025

@CodyJasonBennett Everything is fine in v8, but the eventPrefix value appears to have no effect

pointer-issue-v8.zip

Image

@vinkovsky vinkovsky reopened this Feb 17, 2025
@vinkovsky vinkovsky changed the title v9-rc.7: Pointer event coordinates don't respect layout v9-rc.7: Pointer events in portals ignore the layout Feb 17, 2025
@CodyJasonBennett
Copy link
Member

Does this work with eventPrefix="client" in v9? #3462 should contain a fix. The default behavior went out of band, as we technically override this when eventPrefix is present.

@CodyJasonBennett
Copy link
Member

Released that in 9.0.0-rc.9 which fixes issues I found in Drei.

@CodyJasonBennett CodyJasonBennett added the bug Something isn't working label Feb 18, 2025
@vinkovsky
Copy link
Author

Thanks! Now it works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants