'admin/BlockEditor/BuySection/BuySectionBlockEditor.jsx', 'dependencies' => ['wp-blocks', 'wp-components'] ] ]; } public function getStyles(): array { return [ 'admin/BlockEditor/BuySection/style/buy-section-block-editor.scss' ]; } public function localizeData(): array { return [ $this->getLocalizationKey() => [ 'slug' => $this->slugPrefix, 'name' => static::getEditorName(), 'title' => __('Buy Section', 'fluent-cart'), 'description' => __('This block will display the buy section.', 'fluent-cart'), 'placeholder_image' => Vite::getAssetUrl('images/placeholder.svg'), ], 'fluent_cart_block_translation' => TransStrings::blockStrings(), ]; } public function render(array $shortCodeAttribute, $block = null) { AssetLoader::loadSingleProductAssets(); $product = null; $insideProductInfo = Arr::get($shortCodeAttribute, 'inside_product_info', 'no'); $queryType = Arr::get($shortCodeAttribute, 'query_type', 'default'); if ($insideProductInfo === 'yes' || $queryType === 'default') { $product = fluent_cart_get_current_product(); } else { $productId = Arr::get($shortCodeAttribute, 'product_id', false); if ($productId) { $product = Product::query()->with(['variants'])->find($productId); } } if (!$product) { return ''; } // The Buy Section renders the single-product purchase UI, including // Pro's advanced-variation selector — fire the asset hook so Pro // enqueues the selector CSS/JS (without it the selector is unstyled and // its price/variant JS never wires up). Pro dedupes by enqueue handle. do_action('fluent_cart/advanced_variation/enqueue_assets'); ob_start(); (new ProductRenderer($product))->renderBuySection(); return ob_get_clean(); } }