Media & Text: Optimize block editor store subscriptions#68290
Media & Text: Optimize block editor store subscriptions#68290
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. |
| const { image } = useSelect( | ||
| ( select ) => { | ||
| return { | ||
| image: | ||
| mediaId && isSelected | ||
| ? select( coreStore ).getMedia( mediaId, { | ||
| context: 'view', | ||
| } ) | ||
| : null, | ||
| }; | ||
| }, | ||
| [ isSelected, mediaId ] | ||
| ); |
There was a problem hiding this comment.
Just a cosmetic change collocates "similar" hooks.
|
Size Change: +61 B (0%) Total Size: 1.84 MB
ℹ️ View Unchanged
|
|
Flaky tests detected in 6f3cc52. 🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/12493546312
|
| return ( | ||
| <ResolutionTool | ||
| value={ value } | ||
| defaultValue={ DEFAULT_MEDIA_SIZE_SLUG } |
There was a problem hiding this comment.
Ensures value is correctly reset.
|
This is a pretty straightforward change. I'll merge it. |
What?
Similar to #56967.
PR updates the Media & Text block to only subscribe to media resolution settings for the selected block.
Why?
This is a micro-optimization. Every useSelect added to a frequently used block degrades the load and type bit. Since block usage is project-specific, it's better to promote best practices.
Testing Instructions
Testing Instructions for Keyboard
Same.
Screenshots or screencast