-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
DataViews: Expand typing more components #61654
Conversation
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
if ( ! totalItems || ! totalPages ) { | ||
return null; | ||
} | ||
const currentPage = view.page ?? 1; |
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.
I suspect that this might fix some subtle bugs where the "page" was undefined in views so next/previous buttons might have had bad behavior.
@@ -50,7 +50,7 @@ interface ListViewProps { | |||
id: string; | |||
isLoading: boolean; | |||
onSelectionChange: ( selection: Item[] ) => void; | |||
selection: Item[]; | |||
selection: string[]; |
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.
I think the selection objects holds just the ids of the items but it's weird that the onSelectionChange
receives the whole objects. It's not consistent but it's the way it is for now.
Size Change: +23 B (0%) Total Size: 1.75 MB
ℹ️ View Unchanged
|
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.
The changes seem reasonable 👍
Related #55083
Follow-up to #61185
What?
The DataViews package is a types heavy package. There's a lot of structures that need to be documented properly. So this continues the effort to add explicit types to the package. This PR focuses on typing the Pagination and SingleSelectionCheckbox components
Testing instructions
There's no functional change, it's essentially a code quality + documentation change.