-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Implement Task Detailed View Redesign #20841
Conversation
… open task report LHN options
… updates for task reports, implement title and description menu items in taskview
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
App crashes when creating task https://expensify.slack.com/archives/C049HHMV9SM/p1688766194182809 |
🚀 Deployed to staging by https://github.com/thienlnam in version: 1.3.39-0 🚀
|
🚀 Deployed to production by https://github.com/francoisl in version: 1.3.39-11 🚀
|
icon={UserUtils.getAvatar( | ||
PersonalDetailsUtils.getPersonalDetailsByIDs([props.report.managerID], props.currentUserPersonalDetails.accountID)[0].avatar, | ||
props.report.managerID, | ||
)} |
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.
This caused a regression #22657. PersonalDetailsUtils.getPersonalDetailsByIDs
could return an empty array e.g. for users that you have not interacted with before (no personaldetails). Then we will be trying to access property avatar
of undefined
.
ReportUtils.isCompletedTaskReport(prevProps.report) === ReportUtils.isCompletedTaskReport(nextProps.report) && | ||
prevProps.report.managerID === nextProps.report.managerID && | ||
prevProps.report.managerEmail === nextProps.report.managerEmail && | ||
prevProps.isOnlyReportAction === nextProps.isOnlyReportAction, | ||
), |
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.
Hi ✋ Coming from #24267
We should add comparing of report.amount
to dynamically update total amount in money request view.
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.
Hmm that doesn't relate to tasks, which this PR implements, but good thinking! That seems like that would solve the problem.
|
||
return ( | ||
<View> | ||
<PressableWithSecondaryInteraction |
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.
What was reason for using PressableWithSecondaryInteraction
in TaskView
instead of just PressableWithFeedback
?
I don't see any secondary interaction.
Details
Fixed Issues
$ #19330
$ #20841
Tests/Offline tests/QA
These tests should function exactly the same when offline, since we're setting optimistic data for everything
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)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
Web
Mobile Web - Chrome
Mobile Web - Safari
Desktop
iOS
Android