'admin/BlockEditor/ProductCard/ProductCardBlockEditor.jsx', 'dependencies' => ['wp-blocks', 'wp-components'] ] ]; } public function getStyles(): array { return ['admin/BlockEditor/ProductCard/style/product-card-block-editor.scss']; } public function localizeData(): array { $currencyCode = Helper::shopConfig('currency'); $currencySign = CurrenciesHelper::getCurrencySign($currencyCode); $currencyPosition = Helper::shopConfig('currency_position'); return [ $this->getLocalizationKey() => [ 'slug' => $this->slugPrefix, 'name' => static::getEditorName(), 'title' => __('Product Card', 'fluent-cart'), 'description' => __('This block will display the product card.', 'fluent-cart'), 'placeholder_image' => Vite::getAssetUrl('images/placeholder.svg'), 'currency_sign' => $currencySign, 'currency_position' => $currencyPosition ], 'fluent_cart_block_translation' => TransStrings::blockStrings(), ]; } public function render(array $shortCodeAttribute, $block = null): string { $queryType = Arr::get($shortCodeAttribute, 'query_type', 'default'); $product = null; if ($queryType === 'default') { $product = fluent_cart_get_current_product(); // TODO: Check //$product && setup_postdata($product->ID); } else { if ($productId = Arr::get($shortCodeAttribute, 'product_id', false)) { $product = Product::query()->with(['variants'])->find($productId); if ($product) { setup_postdata($product->ID); } } } if (!$product) { return ''; } return ProductCardShortCode::make([ 'product_id' => $product->ID, 'variant_id' => Arr::get($shortCodeAttribute, 'variant_id', ''), 'price_format' => Arr::get($shortCodeAttribute, 'price_format', 'starts_from'), 'card_width' => Arr::get($shortCodeAttribute, 'card_width', 216), ])->renderShortcode($block); } }