ProductScriptsController.php
1 week ago
ProductsController.php
6 days ago
ProductsListTable.php
6 days ago
ProductScriptsController.php
228 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Controllers\Admin\Products; |
| 4 | |
| 5 | use SureCart\Support\Scripts\AdminModelEditController; |
| 6 | |
| 7 | /** |
| 8 | * Product Page |
| 9 | */ |
| 10 | class ProductScriptsController extends AdminModelEditController { |
| 11 | /** |
| 12 | * What types of data to add the the page. |
| 13 | * |
| 14 | * @var array |
| 15 | */ |
| 16 | protected $with_data = [ 'currency', 'supported_currencies', 'tax_protocol', 'checkout_page_url' ]; |
| 17 | |
| 18 | /** |
| 19 | * Script handle. |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | protected $handle = 'surecart/scripts/admin/product'; |
| 24 | |
| 25 | /** |
| 26 | * Script path. |
| 27 | * |
| 28 | * @var string |
| 29 | */ |
| 30 | protected $path = 'admin/products'; |
| 31 | |
| 32 | /** |
| 33 | * Opt into the dataviews stylesheet enqueue (handled by the parent). |
| 34 | * |
| 35 | * @var bool |
| 36 | */ |
| 37 | protected $needs_dataviews_style = true; |
| 38 | |
| 39 | /** |
| 40 | * Add the app url to the data. |
| 41 | */ |
| 42 | public function __construct() { |
| 43 | $this->data['api_url'] = \SureCart::requests()->getBaseUrl(); |
| 44 | } |
| 45 | |
| 46 | public function enqueue() { |
| 47 | $available_templates = wp_get_theme()->get_page_templates( null, 'sc_product' ); |
| 48 | $available_templates[''] = apply_filters( 'default_page_template_title', __( 'Theme Layout', 'surecart' ), 'rest-api' ); |
| 49 | $this->data['availableTemplates'] = $available_templates; |
| 50 | $this->data['bulk_delete_nonce'] = wp_create_nonce( 'bulk_delete_nonce' ); |
| 51 | parent::enqueue(); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Enqueue needed scripts. |
| 56 | * |
| 57 | * @return void |
| 58 | */ |
| 59 | public function enqueueScriptDependencies() { |
| 60 | parent::enqueueScriptDependencies(); |
| 61 | |
| 62 | // Editor & media. |
| 63 | wp_enqueue_style( 'wp-edit-blocks' ); |
| 64 | wp_enqueue_editor(); |
| 65 | |
| 66 | // Format library. |
| 67 | wp_enqueue_style( 'wp-format-library' ); |
| 68 | wp_enqueue_script( 'wp-format-library' ); |
| 69 | |
| 70 | global $editor_styles; |
| 71 | wp_add_inline_script( |
| 72 | 'wp-blocks', |
| 73 | 'wp.blocks && wp.blocks.unstable__bootstrapServerSideBlockDefinitions && wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');' |
| 74 | ); |
| 75 | |
| 76 | $block_editor_context = new \WP_Block_Editor_Context( array( 'name' => 'surecart/block-editor' ) ); |
| 77 | |
| 78 | $indexed_template_types = array(); |
| 79 | foreach ( get_default_block_template_types() as $slug => $template_type ) { |
| 80 | $template_type['slug'] = (string) $slug; |
| 81 | $indexed_template_types[] = $template_type; |
| 82 | } |
| 83 | |
| 84 | $custom_settings = array( |
| 85 | 'siteUrl' => site_url(), |
| 86 | 'postsPerPage' => get_option( 'posts_per_page' ), |
| 87 | 'styles' => get_block_editor_theme_styles(), |
| 88 | 'defaultTemplateTypes' => $indexed_template_types, |
| 89 | 'defaultTemplatePartAreas' => get_allowed_block_template_part_areas(), |
| 90 | 'supportsLayout' => wp_theme_has_theme_json(), |
| 91 | 'supportsTemplatePartsMode' => ! wp_is_block_theme() && current_theme_supports( 'block-template-parts' ), |
| 92 | ); |
| 93 | |
| 94 | $custom_settings['__experimentalAdditionalBlockPatterns'] = \WP_Block_Patterns_Registry::get_instance()->get_all_registered( true ); |
| 95 | $custom_settings['__experimentalAdditionalBlockPatternCategories'] = \WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered( true ); |
| 96 | |
| 97 | // Get block editor settings. |
| 98 | $editor_settings = get_block_editor_settings( $custom_settings, $block_editor_context ); |
| 99 | |
| 100 | // Debug registered patterns before getting them. |
| 101 | $patterns = \WP_Block_Patterns_Registry::get_instance()->get_all_registered(); |
| 102 | $pattern_categories = \WP_Block_Pattern_Categories_Registry::get_instance()->get_all_registered(); |
| 103 | |
| 104 | // Add patterns in both locations to ensure compatibility. |
| 105 | $editor_settings['__experimentalBlockPatterns'] = $patterns; |
| 106 | $editor_settings['__experimentalBlockPatternCategories'] = $pattern_categories; |
| 107 | |
| 108 | wp_add_inline_script( |
| 109 | 'surecart-components', |
| 110 | sprintf( 'wp.blocks?.setCategories( %s );', wp_json_encode( $editor_settings['blockCategories'] ) ), |
| 111 | 'before' |
| 112 | ); |
| 113 | |
| 114 | wp_localize_script( |
| 115 | 'surecart-components', |
| 116 | 'surecartBlockEditorSettings', |
| 117 | $editor_settings |
| 118 | ); |
| 119 | |
| 120 | $active_global_styles_id = \WP_Theme_JSON_Resolver::get_user_global_styles_post_id(); |
| 121 | $active_theme = get_stylesheet(); |
| 122 | |
| 123 | $navigation_rest_route = rest_get_route_for_post_type_items( |
| 124 | 'wp_navigation' |
| 125 | ); |
| 126 | |
| 127 | $preload_paths = array( |
| 128 | array( '/wp/v2/media', 'OPTIONS' ), |
| 129 | '/wp/v2/types?context=view', |
| 130 | '/wp/v2/types/wp_template?context=edit', |
| 131 | '/wp/v2/types/wp_template-part?context=edit', |
| 132 | '/wp/v2/templates?context=edit&per_page=-1', |
| 133 | '/wp/v2/template-parts?context=edit&per_page=-1', |
| 134 | '/wp/v2/themes?context=edit&status=active', |
| 135 | '/wp/v2/global-styles/' . $active_global_styles_id . '?context=edit', |
| 136 | '/wp/v2/global-styles/' . $active_global_styles_id, |
| 137 | '/wp/v2/global-styles/themes/' . $active_theme, |
| 138 | array( $navigation_rest_route, 'OPTIONS' ), |
| 139 | array( |
| 140 | add_query_arg( |
| 141 | array( |
| 142 | 'context' => 'edit', |
| 143 | 'per_page' => 100, |
| 144 | 'order' => 'desc', |
| 145 | 'orderby' => 'date', |
| 146 | // array indices are required to avoid query being encoded and not matching in cache . |
| 147 | 'status[0]' => 'publish', |
| 148 | 'status[1]' => 'draft', |
| 149 | ), |
| 150 | $navigation_rest_route |
| 151 | ), |
| 152 | 'GET', |
| 153 | ), |
| 154 | ); |
| 155 | |
| 156 | block_editor_rest_api_preload( $preload_paths, $block_editor_context ); |
| 157 | |
| 158 | wp_add_inline_script( |
| 159 | 'wp-edit-site', |
| 160 | sprintf( |
| 161 | 'wp.domReady( function() { wp.editSite.initializeEditor( "site-editor", %s ); } );', |
| 162 | wp_json_encode( $editor_settings ) |
| 163 | ) |
| 164 | ); |
| 165 | |
| 166 | // Preload server-registered block schemas. |
| 167 | wp_add_inline_script( |
| 168 | 'wp-blocks', |
| 169 | 'wp.blocks.unstable__bootstrapServerSideBlockDefinitions(' . wp_json_encode( get_block_editor_server_block_settings() ) . ');' |
| 170 | ); |
| 171 | |
| 172 | wp_add_inline_script( |
| 173 | 'wp-blocks', |
| 174 | sprintf( 'wp.blocks?.setCategories( %s );', wp_json_encode( isset( $editor_settings['blockCategories'] ) ? $editor_settings['blockCategories'] : array() ) ), |
| 175 | 'after' |
| 176 | ); |
| 177 | |
| 178 | if ( |
| 179 | current_theme_supports( 'wp-block-styles' ) && |
| 180 | ( ! is_array( $editor_styles ) || count( $editor_styles ) === 0 ) |
| 181 | ) { |
| 182 | wp_enqueue_style( 'wp-block-library-theme' ); |
| 183 | } |
| 184 | |
| 185 | // Global styles. |
| 186 | wp_register_style( 'sc-global-presets', false ); // phpcs:ignore |
| 187 | wp_add_inline_style( 'sc-global-presets', wp_get_global_stylesheet( array( 'presets' ) ) ); |
| 188 | wp_enqueue_style( 'sc-global-presets' ); |
| 189 | |
| 190 | /** |
| 191 | * Filters the arguments used to register a block type. |
| 192 | */ |
| 193 | add_filter( 'register_block_type_args', array( $this, 'registerMetadataAttribute' ) ); |
| 194 | |
| 195 | /** |
| 196 | * Fires after block editor assets have been enqueued. |
| 197 | */ |
| 198 | do_action( 'enqueue_block_editor_assets' ); |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Registers the metadata block attribute for all block types. |
| 203 | * This is a fallback/temporary solution until |
| 204 | * the Gutenberg core version registers the metadata attribute. |
| 205 | * |
| 206 | * @see https://github.com/WordPress/gutenberg/blob/6aaa3686ae67adc1a6a6b08096d3312859733e1b/lib/compat/wordpress-6.5/blocks.php#L27-L47 |
| 207 | * To do: Remove this method once the Gutenberg core version registers the metadata attribute. |
| 208 | * |
| 209 | * @param array $args Array of arguments for registering a block type. |
| 210 | * @return array $args |
| 211 | */ |
| 212 | public function registerMetadataAttribute( $args ): array { |
| 213 | // Setup attributes if needed. |
| 214 | if ( ! isset( $args['attributes'] ) || ! is_array( $args['attributes'] ) ) { |
| 215 | $args['attributes'] = array(); |
| 216 | } |
| 217 | |
| 218 | // Add metadata attribute if it doesn't exist. |
| 219 | if ( ! array_key_exists( 'metadata', $args['attributes'] ) ) { |
| 220 | $args['attributes']['metadata'] = array( |
| 221 | 'type' => 'object', |
| 222 | ); |
| 223 | } |
| 224 | |
| 225 | return $args; |
| 226 | } |
| 227 | } |
| 228 |