-
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: Optimize the patterns dataviews by extracting the fields definition #63927
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. |
Size Change: +347 B (+0.02%) Total Size: 1.76 MB
ℹ️ View Unchanged
|
I can't comment on the code, but I don't see any regressions. |
Related #55083
What?
When working on #63923 I noticed that the dataviews fields all "remount" when the fields "render" function instance change. This was not visible for us before but it can happen very often as you filter, switch views...
What it means is that "fields" definition should ideally be a top level module variable rather than something defined within components and that creates a new instance very often. It also forces us to think about fields more consistently across layouts...
This PR optimizes the "patterns" (and template parts) dataviews by moving the fields definition outside the component and into their own file.
I'm not entirely sure that we'll see an impact on our numbers right away but I'm sure this will benefit users and the feeling of performance as you interact with the data views.
Testing Instructions
The current PR focuses on the "patterns" and "template parts" dataviews, so just ensure there's no regressions there. Especially UI/design regressions for the different fields.