-
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
Remove class component from ReportActionsList
#16613
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
15464a6
ReportActionsList
marcaaron 249a0e1
Refactor ReportActionsList to use hooks
marcaaron 4e2cf54
Fix conflicts
marcaaron 18775b4
Merge remote-tracking branch 'origin' into marcaaron-reportActionsList
marcaaron edcdd2e
clarify workaround
marcaaron a008a9b
add opacity to dependenc
marcaaron 03f8353
Merge remote-tracking branch 'origin' into marcaaron-reportActionsList
marcaaron ac43cca
Merge remote-tracking branch 'origin' into marcaaron-reportActionsList
marcaaron c108207
Merge remote-tracking branch 'origin' into marcaaron-reportActionsList
marcaaron 4618517
clean up variable and comment
marcaaron a5ef63d
move workaround to global setup
marcaaron c274425
Merge remote-tracking branch 'origin' into marcaaron-reportActionsList
marcaaron File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
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.
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.
Why this function is defined outside
ReportActionsList
Wouldn't it be better to define it inside anduseCallback
with empty dependency array.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.
We had some conversation here about it: https://expensify.slack.com/archives/C01GTK53T8Q/p1680096510744619
I don't have a strong preference though and just going with what we decided there. Can you think of some different or better arguments on why to do what you suggest?
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.
Just thought that since
keyExtractor
was a part of the class component it should still be a part of the functional component but maybe having that function a part of the class component was a "mistake" in the first place.I think having the function defined outside is slightly better e.g. If we render 100 instances of that component all will use the same function, where if we defined it inside each will use it's own function (100 functions that are all the same).