-
Notifications
You must be signed in to change notification settings - Fork 98
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
Accurate sizes: Use block context approach #1625
base: feature/1511-incorporate-layout-constraints-from-ancestors
Are you sure you want to change the base?
Changes from 9 commits
3d61681
4396c78
8edeb67
af890e2
d9af569
b87adcf
bfdab10
97dcb8f
2cbf39d
4c7faa0
dd0e12b
fad4e87
198f2cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -139,79 +139,145 @@ function auto_sizes_get_width( string $layout_width, int $image_width ): string | |||||||||||||
} | ||||||||||||||
|
||||||||||||||
/** | ||||||||||||||
* Filter the sizes attribute for images to improve the default calculation. | ||||||||||||||
* Primes attachment into the cache with a single database query. | ||||||||||||||
* | ||||||||||||||
* @since 1.1.0 | ||||||||||||||
* @since n.e.x.t | ||||||||||||||
* | ||||||||||||||
* @param string $content The block content about to be rendered. | ||||||||||||||
* @param array{ attrs?: array{ align?: string, width?: string } } $parsed_block The parsed block. | ||||||||||||||
* @return string The updated block content. | ||||||||||||||
* @param string|mixed $content The HTML content. | ||||||||||||||
* @param string $context Optional. Additional context to pass to the filters. | ||||||||||||||
* Defaults to `current_filter()` when not set. | ||||||||||||||
* @return string The HTML content. | ||||||||||||||
*/ | ||||||||||||||
function auto_sizes_filter_image_tag( string $content, array $parsed_block ): string { | ||||||||||||||
function auto_sizes_prime_attachment_caches( $content, string $context = null ): string { | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or per below:
Suggested change
|
||||||||||||||
if ( ! is_string( $content ) ) { | ||||||||||||||
return ''; | ||||||||||||||
} | ||||||||||||||
if ( null === $context ) { | ||||||||||||||
$context = current_filter(); | ||||||||||||||
} | ||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps my above comments should be adjusted to delete the
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, as it stands right now, the 2nd parameter is never passed in anyway: add_filter( 'the_content', 'auto_sizes_prime_attachment_caches', 6 ); |
||||||||||||||
|
||||||||||||||
$processor = new WP_HTML_Tag_Processor( $content ); | ||||||||||||||
$has_image = $processor->next_tag( array( 'tag_name' => 'img' ) ); | ||||||||||||||
|
||||||||||||||
// Only update the markup if an image is found. | ||||||||||||||
if ( $has_image ) { | ||||||||||||||
$processor->set_attribute( 'data-needs-sizes-update', true ); | ||||||||||||||
if ( isset( $parsed_block['attrs']['align'] ) ) { | ||||||||||||||
$processor->set_attribute( 'data-align', $parsed_block['attrs']['align'] ); | ||||||||||||||
$images = array(); | ||||||||||||||
while ( $processor->next_tag( array( 'tag_name' => 'IMG' ) ) ) { | ||||||||||||||
$class = $processor->get_attribute( 'class' ); | ||||||||||||||
|
||||||||||||||
if ( ! is_string( $class ) ) { | ||||||||||||||
continue; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
// Resize image width. | ||||||||||||||
if ( isset( $parsed_block['attrs']['width'] ) ) { | ||||||||||||||
$processor->set_attribute( 'data-resize-width', $parsed_block['attrs']['width'] ); | ||||||||||||||
if ( preg_match( '/wp-image-([0-9]+)/i', $class, $class_id ) === 1 ) { | ||||||||||||||
mukeshpanchal27 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
$attachment_id = absint( $class_id[1] ); | ||||||||||||||
mukeshpanchal27 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
if ( $attachment_id > 0 ) { | ||||||||||||||
$images[] = $attachment_id; | ||||||||||||||
} | ||||||||||||||
} | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
// Reduce the array to unique attachment IDs. | ||||||||||||||
$attachment_ids = array_unique( array_filter( $images ) ); | ||||||||||||||
|
||||||||||||||
$content = $processor->get_updated_html(); | ||||||||||||||
if ( count( $attachment_ids ) > 1 ) { | ||||||||||||||
/* | ||||||||||||||
* Warm the object cache with post and meta information for all found | ||||||||||||||
* images to avoid making individual database calls. | ||||||||||||||
*/ | ||||||||||||||
_prime_post_caches( $attachment_ids, false, true ); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return $content; | ||||||||||||||
} | ||||||||||||||
add_filter( 'render_block_core/image', 'auto_sizes_filter_image_tag', 10, 2 ); | ||||||||||||||
add_filter( 'render_block_core/cover', 'auto_sizes_filter_image_tag', 10, 2 ); | ||||||||||||||
add_filter( 'the_content', 'auto_sizes_prime_attachment_caches', 6 ); | ||||||||||||||
|
||||||||||||||
/** | ||||||||||||||
* Filter the sizes attribute for images to improve the default calculation. | ||||||||||||||
* | ||||||||||||||
* @since 1.1.0 | ||||||||||||||
* | ||||||||||||||
* @param string $content The block content about to be rendered. | ||||||||||||||
* @param string|mixed $content The block content about to be rendered. | ||||||||||||||
* @param array{ attrs?: array{ align?: string, width?: string } } $parsed_block The parsed block. | ||||||||||||||
* @param WP_Block $block Block instance. | ||||||||||||||
* @return string The updated block content. | ||||||||||||||
*/ | ||||||||||||||
function auto_sizes_improve_image_sizes_attributes( string $content ): string { | ||||||||||||||
$processor = new WP_HTML_Tag_Processor( $content ); | ||||||||||||||
if ( ! $processor->next_tag( array( 'tag_name' => 'img' ) ) ) { | ||||||||||||||
return $content; | ||||||||||||||
function auto_sizes_filter_image_tag( $content, array $parsed_block, WP_Block $block ): string { | ||||||||||||||
if ( ! is_string( $content ) ) { | ||||||||||||||
return ''; | ||||||||||||||
} | ||||||||||||||
$processor = new WP_HTML_Tag_Processor( $content ); | ||||||||||||||
$has_image = $processor->next_tag( array( 'tag_name' => 'IMG' ) ); | ||||||||||||||
|
||||||||||||||
$remove_data_attributes = static function () use ( $processor ): void { | ||||||||||||||
$processor->remove_attribute( 'data-needs-sizes-update' ); | ||||||||||||||
$processor->remove_attribute( 'data-align' ); | ||||||||||||||
$processor->remove_attribute( 'data-resize-width' ); | ||||||||||||||
}; | ||||||||||||||
// Only update the markup if an image is found. | ||||||||||||||
if ( $has_image ) { | ||||||||||||||
|
||||||||||||||
/** | ||||||||||||||
* Callback for calculating image sizes attribute value for an image block. | ||||||||||||||
* | ||||||||||||||
* This is a workaround to use block context data when calculating the img sizes attribute. | ||||||||||||||
* | ||||||||||||||
* @param string $sizes The image sizes attribute value. | ||||||||||||||
* @param string $size The image size data. | ||||||||||||||
*/ | ||||||||||||||
$filter = static function ( $sizes, $size ) use ( $block ) { | ||||||||||||||
$id = $block->attributes['id'] ?? 0; | ||||||||||||||
$alignment = $block->attributes['align'] ?? ''; | ||||||||||||||
$width = $block->attributes['width'] ?? ''; | ||||||||||||||
|
||||||||||||||
// Hypothetical function to calculate better sizes. | ||||||||||||||
$sizes = auto_sizes_calculate_better_sizes( (int) $id, (string) $size, (string), $alignment, (string) $width ); | ||||||||||||||
mukeshpanchal27 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
return $sizes; | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
// Hook this filter early, before default filters are run. | ||||||||||||||
add_filter( 'wp_calculate_image_sizes', $filter, 9, 2 ); | ||||||||||||||
|
||||||||||||||
$sizes = wp_calculate_image_sizes( | ||||||||||||||
// If we don't have a size slug, assume the full size was used. | ||||||||||||||
$parsed_block['attrs']['sizeSlug'] ?? 'full', | ||||||||||||||
null, | ||||||||||||||
null, | ||||||||||||||
$parsed_block['attrs']['id'] ?? 0 | ||||||||||||||
); | ||||||||||||||
|
||||||||||||||
remove_filter( 'wp_calculate_image_sizes', $filter, 9 ); | ||||||||||||||
|
||||||||||||||
// Bail early if sizes are not calculated. | ||||||||||||||
if ( false === $sizes ) { | ||||||||||||||
return $content; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
$processor->set_attribute( 'sizes', $sizes ); | ||||||||||||||
|
||||||||||||||
// Bail early if the responsive images are disabled. | ||||||||||||||
if ( null === $processor->get_attribute( 'sizes' ) ) { | ||||||||||||||
$remove_data_attributes(); | ||||||||||||||
return $processor->get_updated_html(); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
// Skips second time parsing if already processed. | ||||||||||||||
if ( null === $processor->get_attribute( 'data-needs-sizes-update' ) ) { | ||||||||||||||
return $content; | ||||||||||||||
} | ||||||||||||||
return $content; | ||||||||||||||
} | ||||||||||||||
add_filter( 'render_block_core/image', 'auto_sizes_filter_image_tag', 10, 3 ); | ||||||||||||||
add_filter( 'render_block_core/cover', 'auto_sizes_filter_image_tag', 10, 3 ); | ||||||||||||||
|
||||||||||||||
/** | ||||||||||||||
* Hypothetical function to calculate better sizes. | ||||||||||||||
* | ||||||||||||||
* @param int $id The image id. | ||||||||||||||
* @param string $size The image size data. | ||||||||||||||
* @param string $align The image alignment. | ||||||||||||||
* @param string $resize_width Resize image width. | ||||||||||||||
* @return string The sizes attribute value. | ||||||||||||||
*/ | ||||||||||||||
function auto_sizes_calculate_better_sizes( int $id, string $size, string $align, string $resize_width ): string { | ||||||||||||||
$sizes = ''; | ||||||||||||||
$image = wp_get_attachment_image_src( $id, $size ); | ||||||||||||||
|
||||||||||||||
$align = $processor->get_attribute( 'data-align' ); | ||||||||||||||
if ( false === $image ) { | ||||||||||||||
return $sizes; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
// Retrieve width from the image tag itself. | ||||||||||||||
$image_width = $processor->get_attribute( 'width' ); | ||||||||||||||
if ( ! is_string( $image_width ) && ! in_array( $align, array( 'full', 'wide' ), true ) ) { | ||||||||||||||
return $content; | ||||||||||||||
} | ||||||||||||||
$image_width = '' !== $resize_width ? (int) $resize_width : $image[1]; | ||||||||||||||
|
||||||||||||||
$layout = wp_get_global_settings( array( 'layout' ) ); | ||||||||||||||
|
||||||||||||||
$sizes = null; | ||||||||||||||
// Handle different alignment use cases. | ||||||||||||||
switch ( $align ) { | ||||||||||||||
case 'full': | ||||||||||||||
|
@@ -227,28 +293,16 @@ function auto_sizes_improve_image_sizes_attributes( string $content ): string { | |||||||||||||
case 'left': | ||||||||||||||
case 'right': | ||||||||||||||
case 'center': | ||||||||||||||
// Resize image width. | ||||||||||||||
$image_width = $processor->get_attribute( 'data-resize-width' ) ?? $image_width; | ||||||||||||||
$sizes = sprintf( '(max-width: %1$dpx) 100vw, %1$dpx', $image_width ); | ||||||||||||||
$sizes = sprintf( '(max-width: %1$dpx) 100vw, %1$dpx', $image_width ); | ||||||||||||||
break; | ||||||||||||||
|
||||||||||||||
default: | ||||||||||||||
if ( array_key_exists( 'contentSize', $layout ) ) { | ||||||||||||||
// Resize image width. | ||||||||||||||
$image_width = $processor->get_attribute( 'data-resize-width' ) ?? $image_width; | ||||||||||||||
$width = auto_sizes_get_width( $layout['contentSize'], (int) $image_width ); | ||||||||||||||
$sizes = sprintf( '(max-width: %1$s) 100vw, %1$s', $width ); | ||||||||||||||
$width = auto_sizes_get_width( $layout['contentSize'], $image_width ); | ||||||||||||||
$sizes = sprintf( '(max-width: %1$s) 100vw, %1$s', $width ); | ||||||||||||||
} | ||||||||||||||
break; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
if ( is_string( $sizes ) ) { | ||||||||||||||
$processor->set_attribute( 'sizes', $sizes ); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
$remove_data_attributes(); | ||||||||||||||
|
||||||||||||||
return $processor->get_updated_html(); | ||||||||||||||
return $sizes; | ||||||||||||||
} | ||||||||||||||
// Run filter prior to auto sizes "auto_sizes_update_content_img_tag" filter. | ||||||||||||||
add_filter( 'wp_content_img_tag', 'auto_sizes_improve_image_sizes_attributes', 9 ); |
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.
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.
Or per below: