fix: support pointer events in useLongPress#2947
Open
wanxiankai wants to merge 1 commit into
Open
Conversation
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.
This is a ...
Related issue link
Fixes #2861
Background and solution
useLongPresspreviously listened to mouse and touch events only. In environments such as Tauri WebView on macOS, pointer events can be delivered while the mouse/touch path is unreliable, so long press never starts.This change uses PointerEvent listeners when they are supported and keeps the existing mouse/touch listeners as a fallback for older environments. The pointer path shares the same click/long-press-end behavior as the fallback path and also clears pending presses on pointer leave/cancel.
Changelog
useLongPresswhile preserving mouse/touch fallback behavior.useLongPress支持 PointerEvent,同时保留 mouse/touch 兜底行为。Self Check before Merge
Test
pnpm exec vitest run src/useLongPress/__tests__/index.spec.tsfrompackages/hookspnpm --filter=ahooks tscpnpm --filter=ahooks test