BlockAnchorSupportService.php
2 years ago
BlockPatternsService.php
2 years ago
BlockService.php
2 years ago
BlockServiceProvider.php
2 years ago
BlockStylesService.php
2 years ago
BlockValidationService.php
2 years ago
CartMenuIconMigrationService.php
2 years ago
CartMigrationService.php
2 years ago
FormModeSwitcherService.php
2 years ago
ProductCollectionBadgesMigrationService.php
2 years ago
ProductListMigrationService.php
2 years ago
ProductListService.php
2 years ago
ProductPriceChoicesMigrationService.php
2 years ago
ProductSelectedPriceMigrationService.php
2 years ago
ProductVariantsMigrationService.php
2 years ago
URLParamService.php
2 years ago
ProductListMigrationService.php
296 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\BlockLibrary; |
| 4 | |
| 5 | /** |
| 6 | * Provide product list migration functionality. |
| 7 | */ |
| 8 | class ProductListMigrationService { |
| 9 | /** |
| 10 | * Attributes. |
| 11 | * |
| 12 | * @var array |
| 13 | */ |
| 14 | public array $attributes = array(); |
| 15 | |
| 16 | /** |
| 17 | * Block. |
| 18 | * |
| 19 | * @var \WP_Block_Type; |
| 20 | */ |
| 21 | public ?object $block; |
| 22 | |
| 23 | /** |
| 24 | * Block HTML. |
| 25 | * |
| 26 | * @var string |
| 27 | */ |
| 28 | public string $block_html = ''; |
| 29 | |
| 30 | /** |
| 31 | * Inner Blocks. |
| 32 | * |
| 33 | * @var array |
| 34 | */ |
| 35 | public array $inner_blocks = array(); |
| 36 | |
| 37 | /** |
| 38 | * Set the initial variables. |
| 39 | * |
| 40 | * @param array $attributes Attributes. |
| 41 | * @param object $block Block. |
| 42 | */ |
| 43 | public function __construct( $attributes = array(), $block = null ) { |
| 44 | $this->attributes = $attributes; |
| 45 | $this->block = $block; |
| 46 | $default_inner_blocks = array( |
| 47 | array( |
| 48 | 'blockName' => 'surecart/product-item', |
| 49 | 'attrs' => array(), |
| 50 | 'innerBlocks' => array( |
| 51 | array( |
| 52 | 'blockName' => 'surecart/product-item-image', |
| 53 | 'attrs' => array(), |
| 54 | ), |
| 55 | array( |
| 56 | 'blockName' => 'surecart/product-item-price', |
| 57 | 'attrs' => array(), |
| 58 | ), |
| 59 | array( |
| 60 | 'blockName' => 'surecart/product-item-title', |
| 61 | 'attrs' => array(), |
| 62 | ), |
| 63 | ), |
| 64 | ), |
| 65 | ); // For Shortcodes. |
| 66 | $this->inner_blocks = $block->parsed_block['innerBlocks'] ?? $default_inner_blocks; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get the Child Blocks Attributes. |
| 71 | * |
| 72 | * @param string $block_name Block Name. |
| 73 | * @return array Child Blocks Attributes. |
| 74 | */ |
| 75 | public function getChildBlocksAttributes( $block_name ) { |
| 76 | if ( empty( $this->inner_blocks ) || empty( $this->inner_blocks[0]['innerBlocks'] ) ) { |
| 77 | return array(); |
| 78 | } |
| 79 | |
| 80 | foreach ( $this->inner_blocks[0]['innerBlocks'] as $block ) { |
| 81 | if ( $block['blockName'] === $block_name ) { |
| 82 | if ( 'surecart/product-item-title' === $block_name ) { |
| 83 | $block['attrs']['level'] = 0; |
| 84 | } |
| 85 | return $block['attrs']; |
| 86 | } |
| 87 | } |
| 88 | return array(); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Render the product list. |
| 93 | * |
| 94 | * @return void |
| 95 | */ |
| 96 | public function renderProductList(): void { |
| 97 | $this->block_html .= '<!-- wp:surecart/product-list' . ( ! empty( $this->attributes ) ? ' ' . wp_json_encode( $this->attributes ) : '' ) . ' -->'; |
| 98 | |
| 99 | $this->renderSortFilterAndSearch(); |
| 100 | |
| 101 | $this->renderFilterTags(); |
| 102 | |
| 103 | $this->renderProductTemplate(); |
| 104 | |
| 105 | $this->renderPagination(); |
| 106 | |
| 107 | $this->block_html .= '<!-- /wp:surecart/product-list -->'; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Render the sort, filter and search. |
| 112 | * |
| 113 | * @return void |
| 114 | */ |
| 115 | public function renderSortFilterAndSearch(): void { |
| 116 | $this->block_html .= '<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"10px"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->'; |
| 117 | $this->block_html .= '<div class="wp-block-group" style="margin-bottom:10px">'; |
| 118 | |
| 119 | $this->renderSortAndFilter(); |
| 120 | |
| 121 | $this->renderSearch(); |
| 122 | |
| 123 | $this->block_html .= '</div><!-- /wp:group -->'; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Render the sort and filter. |
| 128 | * |
| 129 | * @return void |
| 130 | */ |
| 131 | public function renderSortAndFilter(): void { |
| 132 | $sort_enabled = wp_validate_boolean( $this->attributes['sort_enabled'] ?? true ); |
| 133 | $collection_enabled = wp_validate_boolean( $this->attributes['collection_enabled'] ?? true ); |
| 134 | |
| 135 | if ( ! $sort_enabled && ! $collection_enabled ) { |
| 136 | return; |
| 137 | } |
| 138 | |
| 139 | $this->block_html .= '<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->'; |
| 140 | $this->block_html .= '<div class="wp-block-group">'; |
| 141 | |
| 142 | if ( $sort_enabled ) { |
| 143 | $this->block_html .= '<!-- wp:surecart/product-list-sort /-->'; |
| 144 | } |
| 145 | |
| 146 | if ( $collection_enabled ) { |
| 147 | $this->block_html .= '<!-- wp:surecart/product-list-filter /-->'; |
| 148 | } |
| 149 | |
| 150 | $this->block_html .= '</div><!-- /wp:group -->'; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Render the search. |
| 155 | * |
| 156 | * @return void |
| 157 | */ |
| 158 | public function renderSearch(): void { |
| 159 | $search_enabled = wp_validate_boolean( $this->attributes['search_enabled'] ?? true ); |
| 160 | |
| 161 | if ( ! $search_enabled ) { |
| 162 | return; |
| 163 | } |
| 164 | |
| 165 | $this->block_html .= '<!-- wp:surecart/product-list-search {"style":{"layout":{"selfStretch":"fixed","flexSize":"250px"}}} /-->'; |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Render the filter tags. |
| 170 | * |
| 171 | * @return void |
| 172 | */ |
| 173 | public function renderFilterTags(): void { |
| 174 | $collection_enabled = wp_validate_boolean( $this->attributes['collection_enabled'] ?? true ); |
| 175 | |
| 176 | if ( ! $collection_enabled ) { |
| 177 | return; |
| 178 | } |
| 179 | |
| 180 | $this->block_html .= '<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"10px"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->'; |
| 181 | $this->block_html .= '<div class="wp-block-group" style="margin-bottom:10px">'; |
| 182 | $this->block_html .= '<!-- wp:surecart/product-list-filter-tags -->'; |
| 183 | $this->block_html .= '<!-- wp:surecart/product-list-filter-tag /-->'; |
| 184 | $this->block_html .= '</div><!-- /wp:group -->'; |
| 185 | $this->block_html .= '</div><!-- /wp:group -->'; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Render the product title. |
| 190 | * |
| 191 | * @return void |
| 192 | */ |
| 193 | public function renderTitle(): void { |
| 194 | $product_title_attrs = wp_json_encode( $this->getChildBlocksAttributes( 'surecart/product-item-title' ), JSON_FORCE_OBJECT ); |
| 195 | $this->block_html .= '<!-- wp:surecart/product-title ' . $product_title_attrs . ' /-->'; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Render the product image. |
| 200 | * |
| 201 | * @return void |
| 202 | */ |
| 203 | public function renderImage(): void { |
| 204 | $product_image_attrs = wp_json_encode( $this->getChildBlocksAttributes( 'surecart/product-item-image' ), JSON_FORCE_OBJECT ); |
| 205 | $this->block_html .= '<!-- wp:surecart/product-image ' . $product_image_attrs . ' /-->'; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Render the product price. |
| 210 | * |
| 211 | * @return void |
| 212 | */ |
| 213 | public function renderPrice(): void { |
| 214 | $product_price_attrs = wp_json_encode( $this->getChildBlocksAttributes( 'surecart/product-item-price' ), JSON_FORCE_OBJECT ); |
| 215 | $this->block_html .= '<!-- wp:group {"style":{"spacing":{"blockGap":"0.5em","margin":{"top":"0px","bottom":"0px"}},"margin":{"top":"0px","bottom":"0px"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->'; |
| 216 | $this->block_html .= '<div class="wp-block-group">'; |
| 217 | $this->block_html .= '<!-- wp:surecart/product-list-price ' . $product_price_attrs . ' /-->'; |
| 218 | $this->block_html .= '<!-- wp:surecart/product-list-price-sale ' . $product_price_attrs . ' /-->'; |
| 219 | $this->block_html .= '</div>'; |
| 220 | $this->block_html .= '<!-- /wp:group -->'; |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * Render the product template. |
| 225 | * |
| 226 | * @return void |
| 227 | */ |
| 228 | public function renderProductTemplate(): void { |
| 229 | $columns = $this->attributes['columns'] ?? 3; |
| 230 | $this->block_html .= '<!-- wp:surecart/product-template {"style":{"spacing":{"blockGap":"30px"}},"layout":{"type":"grid","columnCount":' . $columns . '}} -->'; |
| 231 | $group_attrs = ! empty( $this->inner_blocks[0]['attrs'] ) ? wp_json_encode( $this->inner_blocks[0]['attrs'] ) : '{}'; |
| 232 | $group_block = parse_blocks( '<!-- wp:group ' . $group_attrs . ' -->' )[0]; |
| 233 | $group_styles = sc_get_block_styles( true, $group_block ); |
| 234 | $group_classnames = ! empty( $group_styles['classnames'] ) ? $group_styles['classnames'] : ''; |
| 235 | $group_css = ! empty( $group_styles['css'] ) ? $group_styles['css'] : ''; |
| 236 | $this->block_html .= '<!-- wp:group {"style":{"spacing":{"blockGap":"5px"}},"layout":{"type":"flex","orientation":"vertical"}} -->'; |
| 237 | $this->block_html .= '<div class="wp-block-group ' . $group_classnames . '" style="' . $group_css . '">'; |
| 238 | // Render according to the inner blocks order in old block. |
| 239 | if ( ! empty( $this->inner_blocks[0]['innerBlocks'] ) ) { |
| 240 | foreach ( $this->inner_blocks[0]['innerBlocks'] as $inner_block ) { |
| 241 | switch ( $inner_block['blockName'] ) { |
| 242 | case 'surecart/product-item-image': |
| 243 | $this->renderImage(); |
| 244 | break; |
| 245 | case 'surecart/product-item-title': |
| 246 | $this->renderTitle(); |
| 247 | break; |
| 248 | case 'surecart/product-item-price': |
| 249 | $this->renderPrice(); |
| 250 | break; |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | $this->block_html .= '</div><!-- /wp:group -->'; |
| 255 | $this->block_html .= '<!-- /wp:surecart/product-template -->'; |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Render the pagination. |
| 260 | * |
| 261 | * @return void |
| 262 | */ |
| 263 | public function renderPagination(): void { |
| 264 | $pagination_enabled = wp_validate_boolean( $this->attributes['pagination_enabled'] ?? true ); |
| 265 | |
| 266 | if ( ! $pagination_enabled ) { |
| 267 | return; |
| 268 | } |
| 269 | |
| 270 | $this->block_html .= '<!-- wp:surecart/product-pagination -->'; |
| 271 | $this->block_html .= '<!-- wp:surecart/product-pagination-previous /-->'; |
| 272 | $this->block_html .= '<!-- wp:surecart/product-pagination-numbers /-->'; |
| 273 | $this->block_html .= '<!-- wp:surecart/product-pagination-next /-->'; |
| 274 | $this->block_html .= '<!-- /wp:surecart/product-pagination -->'; |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * Render the blocks. |
| 279 | * |
| 280 | * @return string |
| 281 | */ |
| 282 | public function doBlocks(): string { |
| 283 | return do_blocks( $this->block_html ); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Render the new product list. |
| 288 | * |
| 289 | * @return string |
| 290 | */ |
| 291 | public function render(): string { |
| 292 | $this->renderProductList(); |
| 293 | return $this->doBlocks(); |
| 294 | } |
| 295 | } |
| 296 |