ShortcodesBlockConversionService.php
3 years ago
ShortcodesService.php
2 years ago
ShortcodesServiceProvider.php
2 years ago
ShortcodesService.php
200 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\WordPress\Shortcodes; |
| 4 | |
| 5 | use SureCart\WordPress\Assets\BlockAssetsLoadService; |
| 6 | /** |
| 7 | * The shortcodes service. |
| 8 | */ |
| 9 | class ShortcodesService { |
| 10 | |
| 11 | /** |
| 12 | * Old Shortcode block names which we want to not render through interactivity. |
| 13 | * |
| 14 | * @var array |
| 15 | */ |
| 16 | protected $old_shortcode_block_names = [ |
| 17 | 'surecart/product-buy-button-old', |
| 18 | 'surecart/product-price-choices', |
| 19 | 'surecart/product-title-old', |
| 20 | 'surecart/product-price', |
| 21 | 'surecart/product-description-old', |
| 22 | 'surecart/product-variant-choices', |
| 23 | 'surecart/product-quantity-old', |
| 24 | 'surecart/product-media-old', |
| 25 | ]; |
| 26 | |
| 27 | /** |
| 28 | * Convert the block |
| 29 | * |
| 30 | * @param string $name Block name. |
| 31 | * @param string $block Block block. |
| 32 | * @param array $defaults Default attributes. |
| 33 | * |
| 34 | * @return void |
| 35 | */ |
| 36 | public function registerBlockShortcode( $name, $block, $defaults = array() ) { |
| 37 | add_shortcode( |
| 38 | $name, |
| 39 | function ( $attributes, $content ) use ( $name, $block, $defaults ) { |
| 40 | return ( new ShortcodesBlockConversionService( $attributes, $content ) )->convert( |
| 41 | $name, |
| 42 | $block, |
| 43 | $defaults |
| 44 | ); |
| 45 | }, |
| 46 | 10, |
| 47 | 2 |
| 48 | ); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Render shortcode notice |
| 53 | * |
| 54 | * @param string $name Name. |
| 55 | * |
| 56 | * @return string |
| 57 | */ |
| 58 | public function renderShortcodeNotice( $name ) { |
| 59 | return sprintf( |
| 60 | '<h5 style="%s">%s</h5>', |
| 61 | 'background: #F1F1F1; color: #434242; padding: 2em; border-radius: 0.5em;', |
| 62 | esc_html( |
| 63 | sprintf( |
| 64 | /* translators: %s: shortcode name */ |
| 65 | __( 'Please visit the frontend of your page builder to view the %s shortcode contents.', 'surecart' ), |
| 66 | esc_html( $name ) |
| 67 | ) |
| 68 | ) |
| 69 | ); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Check if shortcode should render itself |
| 74 | * |
| 75 | * @param string $name Name of the shortcode. |
| 76 | * @return boolean |
| 77 | */ |
| 78 | public function cannotRenderShortcode( $name ) { |
| 79 | if ( 'sc_product_list' !== $name ) { // If the shortcode is not Product List, return false. |
| 80 | return false; |
| 81 | } |
| 82 | |
| 83 | $assets_service = new BlockAssetsLoadService(); |
| 84 | |
| 85 | return $assets_service->isUsingPageBuilder(); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Register shortcode by name |
| 90 | * |
| 91 | * @param string $name Name of the shortcode. |
| 92 | * @param string $block_name The registered block name. |
| 93 | * @param array $defaults Default attributes. |
| 94 | * |
| 95 | * @return void |
| 96 | */ |
| 97 | public function registerBlockShortcodeByName( $name, $block_name, $defaults = array() ) { |
| 98 | add_shortcode( |
| 99 | $name, |
| 100 | function ( $attributes, $content ) use ( $name, $block_name, $defaults ) { |
| 101 | if ( empty( $block_name ) ) { |
| 102 | return ''; |
| 103 | } |
| 104 | if ( $this->cannotRenderShortcode( $name ) ) { // If we are in the editor of any Page Builders & Block is Product List, render the shortcode itself. |
| 105 | return $this->renderShortcodeNotice( $name ); |
| 106 | } |
| 107 | |
| 108 | add_filter( 'should_load_separate_core_block_assets', '__return_false', 11 ); // Disable loading separate core block assets. |
| 109 | wp_enqueue_global_styles(); // Enqueue global styles. |
| 110 | |
| 111 | // convert comma separated attributes to array. |
| 112 | if ( is_array( $attributes ) ) { |
| 113 | foreach ( $attributes as $key => $value ) { |
| 114 | if ( strpos( $value, ',' ) !== 0 && isset( $defaults[ $key ] ) && is_array( $defaults[ $key ] ) ) { |
| 115 | $attributes[ $key ] = explode( ',', $value ); |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | $shortcode_attrs = wp_parse_args( |
| 121 | $attributes, |
| 122 | $defaults |
| 123 | ); |
| 124 | |
| 125 | $shortcode_attrs = apply_filters( "shortcode_atts_{$name}", $shortcode_attrs, $shortcode_attrs, $shortcode_attrs, $name ); |
| 126 | |
| 127 | if ( in_array( $block_name, $this->old_shortcode_block_names, true ) && ! empty( $shortcode_attrs['id'] ) ) { |
| 128 | // translators: %s is the shortcode name. |
| 129 | wp_trigger_error( '', sprintf( esc_html__( 'Passing an id to the [%s] shortcode is deprecated. Please use these shortcodes on product pages directly.', 'surecart' ), $name ) ); |
| 130 | $block = new \WP_Block( |
| 131 | [ |
| 132 | 'blockName' => $block_name, |
| 133 | 'attrs' => $shortcode_attrs, |
| 134 | 'innerContent' => do_shortcode( $content ), |
| 135 | ] |
| 136 | ); |
| 137 | return $block->render(); |
| 138 | } |
| 139 | |
| 140 | // we need to remove this since this is processed twice for some blocks. |
| 141 | add_filter( 'doing_it_wrong_trigger_error', [ $this, 'removeInteractivityDoingItWrong' ], 10, 2 ); |
| 142 | |
| 143 | $content = $this->processBlock( $block_name, $shortcode_attrs, $content ); |
| 144 | |
| 145 | remove_filter( 'doing_it_wrong_trigger_error', [ $this, 'removeInteractivityDoingItWrong' ], 10 ); |
| 146 | |
| 147 | return $content; |
| 148 | } |
| 149 | ); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Process the block |
| 154 | * |
| 155 | * @param string $block_name Block name. |
| 156 | * @param array $shortcode_attrs Shortcode attributes. |
| 157 | * @param string $content Content. |
| 158 | * |
| 159 | * @return string |
| 160 | */ |
| 161 | public function processBlock( $block_name, $shortcode_attrs, $content ) { |
| 162 | switch ( $block_name ) { |
| 163 | case 'surecart/product-list': |
| 164 | case 'surecart/product-collection': |
| 165 | return wp_interactivity_process_directives( \SureCart::block()->productListMigration( $shortcode_attrs )->render() ); |
| 166 | |
| 167 | case 'surecart/product-collection-tags': |
| 168 | return wp_interactivity_process_directives( \SureCart::block()->productCollectionBadgesMigration( $shortcode_attrs )->render() ); |
| 169 | |
| 170 | case 'surecart/product-price': |
| 171 | return wp_interactivity_process_directives( \SureCart::block()->productSelectedPriceMigration( $shortcode_attrs )->render() ); |
| 172 | |
| 173 | case 'surecart/product-price-choices': |
| 174 | return wp_interactivity_process_directives( \SureCart::block()->productPriceChoicesMigration( $shortcode_attrs )->render() ); |
| 175 | |
| 176 | case 'surecart/product-variant-choices': |
| 177 | return wp_interactivity_process_directives( \SureCart::block()->productVariantsMigration( $shortcode_attrs )->render() ); |
| 178 | } |
| 179 | |
| 180 | return wp_interactivity_process_directives( |
| 181 | do_blocks( '<!-- wp:' . $block_name . ' ' . wp_json_encode( $shortcode_attrs, JSON_FORCE_OBJECT ) . ' -->' . do_shortcode( $content ) . '<!-- /wp:' . $block_name . ' -->' ) |
| 182 | ); |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Remove interactivity doing it wrong |
| 187 | * |
| 188 | * @param string $trigger Trigger. |
| 189 | * @param string $function_name Function name. |
| 190 | * |
| 191 | * @return string|false |
| 192 | */ |
| 193 | public function removeInteractivityDoingItWrong( $trigger, $function_name ) { |
| 194 | if ( 'WP_Interactivity_API::evaluate' !== $function_name ) { |
| 195 | return $trigger; |
| 196 | } |
| 197 | return false; |
| 198 | } |
| 199 | } |
| 200 |