Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
add a comment on get_markup_with_classes_by_attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed Dec 23, 2021
1 parent 7a755d8 commit 274c858
Showing 1 changed file with 30 additions and 9 deletions.
39 changes: 30 additions & 9 deletions src/BlockTypes/LegacyTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ class LegacyTemplate extends AbstractDynamicBlock {
*/
protected $api_version = '2';

/**
* List of archive legacy template.
*
* @var array
*/
protected $archive_templates = array( 'archive-product', 'taxonomy-product_cat', 'taxonomy-product_tag' );

/**
* Initialize this block.
Expand Down Expand Up @@ -53,11 +59,9 @@ protected function render( $attributes, $content ) {
$frontend_scripts::load_scripts();
}

$archive_templates = array( 'archive-product', 'taxonomy-product_cat', 'taxonomy-product_tag' );

if ( 'single-product' === $attributes['template'] ) {
return $this->render_single_product();
} elseif ( in_array( $attributes['template'], $archive_templates, true ) ) {
} elseif ( in_array( $attributes['template'], $this->archive_templates, true ) ) {
return $this->render_archive_product();
} else {
ob_start();
Expand Down Expand Up @@ -194,23 +198,40 @@ protected function render_archive_product() {

/**
* Get HTML markup with the right classes by attributes.
* This function appends the classname at the first element that have the class attribute.
* Based on the experience, all the wrapper elements have a class attribute.
*
* @param string $content Block content.
* @param array $block Parsed block data.
* @return string Rendered block type output.
*/
public function get_markup_with_classes_by_attributes( string $content, array $block ) {
$pattern = '/(?<=class=\")[^"]+(?=\")/';
$attributes = (array) $block['attrs'];
$align_class = StyleAttributesUtils::get_align_class_and_style( $attributes );
$matches = array();
if ( ! $this->is_legacy_template( $block ) ) {
return $content;
}

$pattern = '/(?<=class=\")[^"]+(?=\")/';
$attributes = (array) $block['attrs'];
$align_class_and_style = StyleAttributesUtils::get_align_class_and_style( $attributes );
$matches = array();
preg_match( $pattern, $content, $matches );

if ( ! isset( $matches[0] ) ) {
if ( ! isset( $matches[0] ) || ! isset( $align_class_and_style['class'] ) ) {
return $content;
}

return preg_replace( $pattern, $matches[0] . ' ' . $align_class['class'], $content, 1 );
return preg_replace( $pattern, $matches[0] . ' ' . $align_class_and_style['class'], $content, 1 );
}

/**
* Check if the block is a legacy template.
*
* @param array $block Parsed block data.
* @return boolean
*/
protected function is_legacy_template( $block ) {
$attributes = (array) $block['attrs'];
return isset( $attributes['template'] ) && ( in_array( $attributes['template'], $this->archive_templates, true ) || 'single-product' === $attributes['template'] );
}

}

0 comments on commit 274c858

Please sign in to comment.