-
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
[No QA] [TS migration] Migrate 'useDragAndDrop.js' hook to TypeScript #29257
[No QA] [TS migration] Migrate 'useDragAndDrop.js' hook to TypeScript #29257
Conversation
src/hooks/useDragAndDrop.ts
Outdated
const isFocused = useIsFocused(); | ||
const [isDraggingOver, setIsDraggingOver] = useState(false); | ||
|
||
// This solution is borrowed from this SO: https://stackoverflow.com/questions/7110353/html5-dragleave-fired-when-hovering-a-child-element | ||
// This is necessary because dragging over children will cause dragleave to execute on the parent. | ||
// You can think of this counter as a stack. When a child is hovered over we push an element onto the stack. | ||
// Then we only process the dragleave event if the count is 0, because it means that the last element (the parent) has been popped off the stack. | ||
const dragCounter = useRef(0); | ||
const dragCounter = useRef<number>(0); |
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 dragCounter = useRef<number>(0); | |
const dragCounter = useRef(0); |
No need to explicitly set the type here.
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.
@s77rt Updated
Reviewer Checklist
Screenshots/VideosWebweb.movMobile Web - ChromeMobile Web - SafariDesktopdesktop.moviOSAndroid |
We did not find an internal engineer to review this PR, trying to assign a random engineer to #24943 as well as to this PR... Please reach out for help on Slack if no one gets assigned! |
Please test everywhere in the app where drag and drop can be used |
Just retested on the receipt selector (initial and replace flows) and the report screen (drop attachments). Working as expected. |
Thank you |
@cead22 looks like this was merged without a test passing. Please add a note explaining why this was done and remove the |
✋ 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 staging by https://github.com/cead22 in version: 1.3.84-0 🚀
|
🚀 Deployed to production by https://github.com/francoisl in version: 1.3.84-10 🚀
|
🚀 Deployed to production by https://github.com/francoisl in version: 1.3.84-10 🚀
|
🚀 Deployed to staging by https://github.com/cead22 in version: 1.3.85-0 🚀
|
🚀 Deployed to production by https://github.com/francoisl in version: 1.3.85-4 🚀
|
Details
[TS migration] Migrate 'useDragAndDrop.js' hook to TypeScript
Fixed Issues
$ #24943
PROPOSAL: N/A
Tests
Offline tests
N/A
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 methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)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
MacOS: Chrome / Safari
Web.google.mov
Web.safari.mov
MacOS: Desktop
Desktop.mov