'admin/BlockEditor/SearchBar/SearchBarBlockEditor.jsx', 'dependencies' => ['wp-blocks', 'wp-components'] ] ]; } public function getStyles(): array { return ['admin/BlockEditor/SearchBar/style/searchbar-block-editor.css']; } public function localizeData(): array { return [ $this->getLocalizationKey() => [ 'slug' => $this->slugPrefix, 'name' => static::getEditorName(), 'title' => __('Product Search', 'fluent-cart'), ], 'fluent_cart_block_editor_asset' => [ 'placeholder_image' => Vite::getAssetUrl('images/placeholder.svg'), ], 'fluent_cart_block_translation' => TransStrings::blockStrings() ]; } public function render(array $shortCodeAttribute, $block = null): string { $urlMode = Arr::get($shortCodeAttribute, 'url_mode'); $categoryMode = Arr::get($shortCodeAttribute, 'category_mode'); $linkWithShopApp = Arr::get($shortCodeAttribute, 'link_with_shop_app'); $showThumbnail = Arr::get($shortCodeAttribute, 'show_thumbnail', true); return SearchBarShortCode::make([ 'url_mode' => !empty($urlMode) ? $urlMode : 'new-tab', 'category_mode' => !empty($categoryMode) ? $categoryMode : '', 'link_with_shop_app' => !empty($linkWithShopApp) ? $linkWithShopApp : '', 'show_thumbnail' => $showThumbnail, ])->renderShortcode($block); } }