BuyButton.php
3 months ago
CartMenuIcon.php
5 months ago
CollectionTag.php
1 year ago
CollectionTags.php
1 year ago
Media.php
1 year ago
PriceChoiceTemplate.php
1 year ago
PriceChooser.php
4 months ago
PriceData.php
1 year ago
Product.php
4 months ago
ProductCard.php
10 months ago
ProductContent.php
10 months ago
ProductData.php
1 year ago
ProductLineItemNote.php
10 months ago
ProductQuickAddButton.php
10 months ago
ProductReviewAverageRatingStars.php
4 months ago
ProductReviewAverageRatingValue.php
4 months ago
ProductReviewBreakdown.php
4 months ago
ProductReviewContent.php
4 months ago
ProductReviewList.php
2 months ago
ProductReviewRating.php
4 months ago
ProductReviewTotalRating.php
4 months ago
ProductReviews.php
4 months ago
Quantity.php
10 months ago
SaleBadge.php
1 year ago
SelectedPriceAdHocAmount.php
1 year ago
VariantPill.php
6 months ago
VariantPills.php
1 year ago
ProductReviewAverageRatingStars.php
165 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\Bricks\Elements; |
| 4 | |
| 5 | use SureCart\Integrations\Bricks\Concerns\ConvertsBlocks; |
| 6 | |
| 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | exit; // Exit if accessed directly. |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Product Average Rating Stars element. |
| 13 | */ |
| 14 | class ProductReviewAverageRatingStars extends \Bricks\Element { |
| 15 | use ConvertsBlocks; |
| 16 | |
| 17 | /** |
| 18 | * Element category. |
| 19 | * |
| 20 | * @var string |
| 21 | */ |
| 22 | public $category = 'SureCart Elements'; |
| 23 | |
| 24 | /** |
| 25 | * Element name. |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | public $name = 'surecart-product-review-average-rating-stars'; |
| 30 | |
| 31 | /** |
| 32 | * Element block name. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | public $block_name = 'surecart/product-review-average-rating-stars'; |
| 37 | |
| 38 | /** |
| 39 | * Element icon. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | public $icon = 'ti-star'; |
| 44 | |
| 45 | /** |
| 46 | * Get element label. |
| 47 | * |
| 48 | * @return string |
| 49 | */ |
| 50 | public function get_label() { |
| 51 | return esc_html__( 'Product Average Rating Stars', 'surecart' ); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Set controls. |
| 56 | * |
| 57 | * @return void |
| 58 | */ |
| 59 | public function set_controls() { |
| 60 | $this->controls['size'] = [ |
| 61 | 'tab' => 'content', |
| 62 | 'label' => esc_html__( 'Star Size', 'surecart' ), |
| 63 | 'type' => 'number', |
| 64 | 'units' => true, |
| 65 | 'default' => '20px', |
| 66 | 'placeholder' => '20px', |
| 67 | ]; |
| 68 | |
| 69 | $this->controls['fill_color'] = [ |
| 70 | 'tab' => 'content', |
| 71 | 'label' => esc_html__( 'Star Color', 'surecart' ), |
| 72 | 'type' => 'color', |
| 73 | 'rerender' => true, |
| 74 | 'default' => [ |
| 75 | 'hex' => 'var(--bricks-color-primary)', |
| 76 | ], |
| 77 | 'css' => [ |
| 78 | [ |
| 79 | 'property' => 'color', |
| 80 | 'selector' => 'svg', |
| 81 | ], |
| 82 | [ |
| 83 | 'property' => 'stroke', |
| 84 | 'selector' => 'svg', |
| 85 | ], |
| 86 | ], |
| 87 | ]; |
| 88 | |
| 89 | $this->controls['link_to_reviews'] = [ |
| 90 | 'tab' => 'content', |
| 91 | 'label' => esc_html__( 'Link to Reviews', 'surecart' ), |
| 92 | 'type' => 'checkbox', |
| 93 | 'default' => false, |
| 94 | ]; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Render element. |
| 99 | * |
| 100 | * @return void |
| 101 | */ |
| 102 | public function render() { |
| 103 | $size = ! empty( $this->settings['size'] ) ? $this->settings['size'] : '20px'; |
| 104 | $fill_color = $this->get_raw_color( 'fill_color' ); |
| 105 | $link_to_reviews = ! empty( $this->settings['link_to_reviews'] ); |
| 106 | |
| 107 | if ( empty( $fill_color ) ) { |
| 108 | $fill_color = 'var(--bricks-color-primary)'; |
| 109 | } |
| 110 | |
| 111 | $this->set_attribute( '_root', 'style', 'display: flex;' ); |
| 112 | |
| 113 | if ( $this->is_admin_editor() ) { |
| 114 | $this->render_preview( $size, $fill_color ); |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | // Ensure size has px unit, similar to Elementor implementation. |
| 119 | $size_value = is_numeric( $size ) ? absint( $size ) . 'px' : $size; |
| 120 | |
| 121 | echo $this->html( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 122 | [ |
| 123 | 'size' => $size_value, |
| 124 | 'fill_color' => esc_attr( $fill_color ), |
| 125 | 'link_to_reviews' => $link_to_reviews, //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 126 | ] |
| 127 | ); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Render preview in editor. |
| 132 | * |
| 133 | * @param string $size Star size. |
| 134 | * @param string $fill_color Star fill color. |
| 135 | * |
| 136 | * @return void |
| 137 | */ |
| 138 | private function render_preview( $size, $fill_color ) { |
| 139 | $stars_html = ''; |
| 140 | for ( $i = 1; $i <= 5; $i++ ) { |
| 141 | $is_full_star = $i <= 4; |
| 142 | $is_half_star = 5 === $i; |
| 143 | |
| 144 | $stars_html .= \SureCart::svg()->get( |
| 145 | $is_half_star ? 'half-star' : 'star', |
| 146 | [ |
| 147 | 'class' => 'sc-star-row__label__svg', |
| 148 | 'height' => esc_attr( $size ), |
| 149 | 'width' => esc_attr( $size ), |
| 150 | 'fill' => $is_full_star || $is_half_star ? 'currentColor' : 'none', |
| 151 | 'stroke' => 'currentColor', |
| 152 | 'stroke-width' => 2, |
| 153 | 'aria-hidden' => 'true', |
| 154 | ] |
| 155 | ); |
| 156 | } |
| 157 | |
| 158 | echo $this->preview( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 159 | $stars_html, |
| 160 | 'wp-block-surecart-product-review-average-rating-stars', |
| 161 | 'div' |
| 162 | ); |
| 163 | } |
| 164 | } |
| 165 |