-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Fix: intercept mouse selection when out of input field #42823
Conversation
Hey! I see that you made changes to our Form component. Make sure to update the docs in FORMS.md accordingly. Cheers! |
You did not even remove console.log statements? If this is still in draft please change it to draft. |
@c3024 fixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NAB: Few minor changes
src/hooks/useMouseContext.tsx
Outdated
return <MouseContext.Provider value={value}>{children}</MouseContext.Provider>; | ||
} | ||
|
||
// Custom hook to use the mouse context |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Custom hook to use the mouse context |
@@ -36,12 +37,19 @@ function BaseListItem<TItem extends ListItem>({ | |||
const theme = useTheme(); | |||
const styles = useThemeStyles(); | |||
const {hovered, bind} = useHover(); | |||
const {isMouseDownOnInput} = useMouseContext(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const {isMouseDownOnInput} = useMouseContext(); | |
const {isMouseDownOnInput, setMouseUp} = useMouseContext(); |
|
||
const pressableRef = useRef<View>(null); | ||
|
||
// Sync focus on an item | ||
useSyncFocus(pressableRef, Boolean(isFocused), shouldSyncFocus); | ||
|
||
const {setMouseUp} = useMouseContext(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const {setMouseUp} = useMouseContext(); | |
Reviewer Checklist
Screenshots/VideosAndroid: NativeinterceptMouseAndroid.mp4Android: mWeb ChromeinterceptMouseAndroidmWeb.mp4iOS: NativeinterceptMouseiOS.mp4iOS: mWeb SafariinterceptMouseiOSmWeb.mp4MacOS: Chrome / SafariinterceptMouseChrome.mp4MacOS: DesktopinterceptMouseDesktop.mp4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
🚀 Deployed to production by https://github.com/Julesssss in version: 1.4.79-11 🚀
|
Details
This PR fixes the issue when the cursor is dragged outside input and released, the user profile opens
Fixed Issues
$ #41803
PROPOSAL: #41803 (comment)
Tests
Offline tests
QA Steps
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)myBool && <MyComponent />
.src/languages/*
files and using the translation methodSTYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)Design
label and/or tagged@Expensify/design
so the design team can review the changes.ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Android: Native
NA
Android: mWeb Chrome
NA
iOS: Native
NA
iOS: mWeb Safari
NA
MacOS: Chrome / Safari
20240530_111658.mp4
MacOS: Desktop
20240530_111823.mp4