Logger
11 months ago
Patterns
11 months ago
PersonalizationTags
2 days ago
Renderer
2 days ago
Templates
4 months ago
class-assets-manager.php
5 months ago
class-dependency-check.php
11 months ago
class-email-api-controller.php
6 months ago
class-email-editor.php
2 days ago
class-email-styles-schema.php
11 months ago
class-personalizer.php
2 days ago
class-send-preview-email.php
5 months ago
class-settings-controller.php
3 months ago
class-site-style-sync-controller.php
4 months ago
class-theme-controller.php
3 months ago
class-user-theme.php
11 months ago
content-editor.css
2 weeks ago
content-shared.css
11 months ago
index.php
11 months ago
theme.json
3 months ago
class-assets-manager.php
148 lines
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | namespace Automattic\WooCommerce\EmailEditor\Engine; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use Automattic\WooCommerce\EmailEditor\Engine\Logger\Email_Editor_Logger; |
| 6 | class Assets_Manager { |
| 7 | private Settings_Controller $settings_controller; |
| 8 | private Theme_Controller $theme_controller; |
| 9 | private User_Theme $user_theme; |
| 10 | private string $assets_path = ''; |
| 11 | private string $assets_url = ''; |
| 12 | private Email_Editor_Logger $logger; |
| 13 | public function __construct( |
| 14 | Settings_Controller $settings_controller, |
| 15 | Theme_Controller $theme_controller, |
| 16 | User_Theme $user_theme, |
| 17 | Email_Editor_Logger $logger |
| 18 | ) { |
| 19 | $this->settings_controller = $settings_controller; |
| 20 | $this->theme_controller = $theme_controller; |
| 21 | $this->user_theme = $user_theme; |
| 22 | $this->logger = $logger; |
| 23 | } |
| 24 | public function set_assets_path( string $assets_path ): void { |
| 25 | $this->assets_path = $assets_path; |
| 26 | } |
| 27 | public function set_assets_url( string $assets_url ): void { |
| 28 | $this->assets_url = $assets_url; |
| 29 | } |
| 30 | public function initialize(): void { |
| 31 | add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) ); |
| 32 | } |
| 33 | public function enqueue_admin_styles(): void { |
| 34 | // Calling action that loads registered blockTypes. |
| 35 | do_action( 'enqueue_block_editor_assets' ); |
| 36 | // Load CSS from Post Editor. |
| 37 | wp_enqueue_style( 'wp-edit-post' ); |
| 38 | // Load CSS for the format library - used for example in popover. |
| 39 | wp_enqueue_style( 'wp-format-library' ); |
| 40 | // Enqueue CSS containing --wp--preset variables. |
| 41 | wp_enqueue_global_styles_css_custom_properties(); |
| 42 | // Enqueue media library scripts. |
| 43 | wp_enqueue_media(); |
| 44 | } |
| 45 | public function render_email_editor_html( string $element_id = 'woocommerce-email-editor' ): void { |
| 46 | // @phpstan-ignore-next-line -- PHPStan tried to check if the file exists. |
| 47 | require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 48 | echo '<div id="' . esc_attr( $element_id ) . '" class="block-editor block-editor__container hide-if-no-js"></div>'; |
| 49 | } |
| 50 | public function load_editor_assets( $edited_item, string $script_name ): void { |
| 51 | $post_type = $edited_item instanceof \WP_Post ? $edited_item->post_type : 'wp_template'; |
| 52 | $post_id = $edited_item instanceof \WP_Post ? $edited_item->ID : $edited_item->id; |
| 53 | $email_editor_assets_path = rtrim( $this->assets_path, '/' ) . '/'; |
| 54 | $email_editor_assets_url = rtrim( $this->assets_url, '/' ) . '/'; |
| 55 | $assets_file = $email_editor_assets_path . 'style.asset.php'; |
| 56 | if ( ! file_exists( $assets_file ) ) { |
| 57 | $this->logger->error( 'Email editor assets file does not exist.', array( 'path' => $assets_file ) ); |
| 58 | } else { |
| 59 | $assets_file = require $assets_file; |
| 60 | wp_enqueue_style( |
| 61 | 'wc-admin-email-editor-integration', |
| 62 | $email_editor_assets_url . 'style.css', |
| 63 | array(), |
| 64 | $assets_file['version'] |
| 65 | ); |
| 66 | } |
| 67 | // The get_block_categories() function expects a WP_Post or WP_Block_Editor_Context object. |
| 68 | // Therefore, we need to create an instance of WP_Block_Editor_Context when $edited_item is an instance of WP_Block_Template. |
| 69 | if ( $edited_item instanceof \WP_Block_Template ) { |
| 70 | $context = new \WP_Block_Editor_Context( |
| 71 | array( |
| 72 | 'post' => $edited_item, |
| 73 | ) |
| 74 | ); |
| 75 | } else { |
| 76 | $context = $edited_item; |
| 77 | } |
| 78 | // The email editor needs to load block categories to avoid warning and missing category names. |
| 79 | // See: https://github.com/WordPress/WordPress/blob/753817d462955eb4e40a89034b7b7c375a1e43f3/wp-admin/edit-form-blocks.php#L116-L120. |
| 80 | wp_add_inline_script( |
| 81 | 'wp-blocks', |
| 82 | sprintf( 'wp.blocks.setCategories( %s );', wp_json_encode( get_block_categories( $context ), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ), |
| 83 | 'after' |
| 84 | ); |
| 85 | // Preload server-registered block schemas to avoid warning about missing block titles. |
| 86 | // See: https://github.com/WordPress/WordPress/blob/753817d462955eb4e40a89034b7b7c375a1e43f3/wp-admin/edit-form-blocks.php#L144C1-L148C3. |
| 87 | wp_add_inline_script( |
| 88 | 'wp-blocks', |
| 89 | sprintf( 'wp.blocks.unstable__bootstrapServerSideBlockDefinitions( %s );', wp_json_encode( get_block_editor_server_block_settings(), JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ) |
| 90 | ); |
| 91 | $localization_data = array( |
| 92 | 'current_post_type' => $post_type, |
| 93 | 'current_post_id' => $post_id, |
| 94 | 'current_wp_user_email' => wp_get_current_user()->user_email, |
| 95 | 'editor_settings' => $this->settings_controller->get_settings(), |
| 96 | 'editor_theme' => $this->theme_controller->get_base_theme()->get_raw_data(), |
| 97 | 'user_theme_post_id' => $this->user_theme->get_user_theme_post()->ID, |
| 98 | 'urls' => array( |
| 99 | 'listings' => admin_url( 'admin.php?page=wc-settings&tab=email' ), |
| 100 | 'send' => admin_url( 'admin.php?page=wc-settings&tab=email' ), |
| 101 | 'back' => admin_url( 'admin.php?page=wc-settings&tab=email' ), |
| 102 | 'createCoupon' => admin_url( 'post-new.php?post_type=shop_coupon' ), |
| 103 | ), |
| 104 | ); |
| 105 | wp_localize_script( |
| 106 | $script_name, |
| 107 | 'WooCommerceEmailEditor', |
| 108 | apply_filters( 'woocommerce_email_editor_script_localization_data', $localization_data ) |
| 109 | ); |
| 110 | $this->preload_rest_api_data( $post_id, $post_type ); |
| 111 | } |
| 112 | private function preload_rest_api_data( $post_id, string $post_type ): void { |
| 113 | $email_post_type = $post_type; |
| 114 | $user_theme_post_id = $this->user_theme->get_user_theme_post()->ID; |
| 115 | $template_slug = get_post_meta( (int) $post_id, '_wp_page_template', true ); |
| 116 | $routes = array( |
| 117 | "/wp/v2/{$email_post_type}/" . intval( $post_id ) . '?context=edit', |
| 118 | "/wp/v2/types/{$email_post_type}?context=edit", |
| 119 | '/wp/v2/global-styles/' . intval( $user_theme_post_id ) . '?context=view', // Global email styles. |
| 120 | '/wp/v2/block-patterns/patterns', |
| 121 | '/wp/v2/templates?context=view', |
| 122 | '/wp/v2/block-patterns/categories', |
| 123 | '/wp/v2/settings', |
| 124 | '/wp/v2/types?context=view', |
| 125 | '/wp/v2/taxonomies?context=view', |
| 126 | ); |
| 127 | if ( is_string( $template_slug ) ) { |
| 128 | $routes[] = '/wp/v2/templates/lookup?slug=' . $template_slug; |
| 129 | } else { |
| 130 | $routes[] = "/wp/v2/{$email_post_type}?context=edit&per_page=30&status=publish,sent"; |
| 131 | } |
| 132 | // Preload the data for the specified routes. |
| 133 | $preload_data = array_reduce( |
| 134 | $routes, |
| 135 | 'rest_preload_api_request', |
| 136 | array() |
| 137 | ); |
| 138 | // Add inline script to set up preloading middleware. |
| 139 | wp_add_inline_script( |
| 140 | 'wp-blocks', |
| 141 | sprintf( |
| 142 | 'wp.apiFetch.use( wp.apiFetch.createPreloadingMiddleware( %s ) );', |
| 143 | wp_json_encode( $preload_data, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) |
| 144 | ) |
| 145 | ); |
| 146 | } |
| 147 | } |
| 148 |