AdminModelEditController.php
186 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Support\Scripts; |
| 4 | |
| 5 | use SureCart\Models\Account; |
| 6 | use SureCart\Support\Currency; |
| 7 | |
| 8 | /** |
| 9 | * Class for model edit pages to extend. |
| 10 | */ |
| 11 | abstract class AdminModelEditController { |
| 12 | /** |
| 13 | * Script path. |
| 14 | * |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $path = ''; |
| 18 | |
| 19 | /** |
| 20 | * Script handle. |
| 21 | * |
| 22 | * @var string |
| 23 | */ |
| 24 | protected $handle = ''; |
| 25 | |
| 26 | /** |
| 27 | * What types of data to add the the page. |
| 28 | * |
| 29 | * @var array |
| 30 | */ |
| 31 | protected $with_data = [ 'links' ]; |
| 32 | |
| 33 | /** |
| 34 | * Additional dependencies |
| 35 | * |
| 36 | * @var array |
| 37 | */ |
| 38 | protected $dependencies = [ 'sc-core-data', 'sc-ui-data' ]; |
| 39 | |
| 40 | /** |
| 41 | * Data to pass to the page. |
| 42 | * |
| 43 | * @var array |
| 44 | */ |
| 45 | protected $data = []; |
| 46 | |
| 47 | /** |
| 48 | * Optional conditionally load. |
| 49 | */ |
| 50 | protected function condition() { |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Enqueue needed scripts |
| 56 | * |
| 57 | * @return void |
| 58 | */ |
| 59 | public function enqueueScriptDependencies() { |
| 60 | wp_enqueue_media(); |
| 61 | wp_enqueue_style( 'wp-components' ); |
| 62 | } |
| 63 | |
| 64 | public function enqueueComponents() { |
| 65 | wp_enqueue_script( 'surecart-components' ); |
| 66 | wp_enqueue_style( 'surecart-themes-default' ); |
| 67 | wp_add_inline_style( |
| 68 | 'surecart-themes-default', |
| 69 | ':root { --sc-color-primary-text: #fff; }' // this is important in case the user has a dark primary text. |
| 70 | ); |
| 71 | wp_add_inline_style( |
| 72 | 'surecart-themes-default', |
| 73 | '.sc-dragging { z-index: 1 }' // this is required for dragging. |
| 74 | ); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Enqueue scripts |
| 79 | * |
| 80 | * @return void |
| 81 | */ |
| 82 | public function enqueue() { |
| 83 | if ( ! $this->condition() ) { |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | // components are also used on index pages. |
| 88 | $this->enqueueComponents(); |
| 89 | |
| 90 | // match url query for the scripts. |
| 91 | if ( ! empty( $this->url_query ) ) { |
| 92 | foreach ( $this->url_query as $param => $value ) { |
| 93 | // phpcs:ignore |
| 94 | if ( ! isset( $_GET[ $param ] ) || $value !== sanitize_text_field( wp_unslash( $_GET[ $param ] ) ) ) { |
| 95 | return; |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | // enqueue dependencies. |
| 101 | $this->enqueueScriptDependencies(); |
| 102 | |
| 103 | // remove admin notices. |
| 104 | remove_all_actions( 'admin_notices' ); |
| 105 | |
| 106 | // fix shitty jetpack issues key hijacking issues. |
| 107 | add_filter( |
| 108 | 'admin_head', |
| 109 | function() { |
| 110 | wp_dequeue_script( 'wpcom-notes-common' ); |
| 111 | wp_dequeue_script( 'wpcom-notes-admin-bar' ); |
| 112 | wp_dequeue_style( 'wpcom-notes-admin-bar' ); |
| 113 | wp_dequeue_style( 'noticons' ); |
| 114 | }, |
| 115 | 200 |
| 116 | ); |
| 117 | |
| 118 | // automatically load dependencies and version. |
| 119 | $asset_file = include plugin_dir_path( SURECART_PLUGIN_FILE ) . "dist/$this->path.asset.php"; |
| 120 | |
| 121 | // Enqueue scripts. |
| 122 | wp_enqueue_script( |
| 123 | $this->handle, |
| 124 | trailingslashit( \SureCart::core()->assets()->getUrl() ) . "dist/$this->path.js", |
| 125 | array_merge( $asset_file['dependencies'], $this->dependencies ), |
| 126 | $asset_file['version'], |
| 127 | true |
| 128 | ); |
| 129 | |
| 130 | // pass app url. |
| 131 | $this->data['upgrade_url'] = \SureCart::config()->links->purchase; |
| 132 | $this->data['surecart_app_url'] = defined( 'SURECART_APP_URL' ) ? SURECART_APP_URL : ''; |
| 133 | $this->data['api_url'] = \SureCart::requests()->getBaseUrl(); |
| 134 | $this->data['plugin_url'] = \SureCart::core()->assets()->getUrl(); |
| 135 | $this->data['home_url'] = untrailingslashit( get_home_url() ); |
| 136 | $this->data['buy_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'buy_page' ) ); |
| 137 | $this->data['product_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'product_page' ) ); |
| 138 | $this->data['collection_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'collection_page' ) ); |
| 139 | $this->data['is_block_theme'] = \SureCart::utility()->blockTemplates()->isFSETheme(); |
| 140 | $this->data['claim_url'] = ! \SureCart::account()->claimed ? \SureCart::routeUrl( 'account.claim' ) : ''; |
| 141 | |
| 142 | if ( in_array( 'currency', $this->with_data ) ) { |
| 143 | $this->data['currency_code'] = \SureCart::account()->currency; |
| 144 | } |
| 145 | if ( in_array( 'tax_protocol', $this->with_data ) ) { |
| 146 | $this->data['tax_protocol'] = \SureCart::account()->tax_protocol; |
| 147 | } |
| 148 | if ( in_array( 'shipping_protocol', $this->with_data ) ) { |
| 149 | $this->data['shipping_protocol'] = \SureCart::account()->shipping_protocol; |
| 150 | } |
| 151 | if ( in_array( 'checkout_page_url', $this->with_data ) ) { |
| 152 | $this->data['checkout_page_url'] = \SureCart::getUrl()->checkout(); |
| 153 | } |
| 154 | if ( in_array( 'supported_currencies', $this->with_data ) ) { |
| 155 | $this->data['supported_currencies'] = Currency::getSupportedCurrencies(); |
| 156 | } |
| 157 | if ( in_array( 'links', $this->with_data ) ) { |
| 158 | $this->data['links'] = []; |
| 159 | foreach ( array_keys( \SureCart::getAdminPageNames() ) as $name ) { |
| 160 | $this->data['links'][ $name ] = esc_url_raw( add_query_arg( [ 'action' => 'edit' ], \SureCart::getUrl()->index( $name ) ) ); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | // pass entitlements to page. |
| 165 | $this->data['entitlements'] = \SureCart::account()->entitlements; |
| 166 | $this->data['get_locale'] = str_replace( '_', '-', get_locale() ); |
| 167 | |
| 168 | wp_set_script_translations( $this->handle, 'surecart' ); |
| 169 | |
| 170 | // common localizations. |
| 171 | wp_localize_script( |
| 172 | $this->handle, |
| 173 | 'scData', |
| 174 | apply_filters( "$this->handle/data", $this->data ) |
| 175 | ); |
| 176 | |
| 177 | wp_localize_script( $this->handle, 'scIcons', [ 'path' => esc_url_raw( plugin_dir_url( SURECART_PLUGIN_FILE ) . 'dist/icon-assets' ) ] ); |
| 178 | |
| 179 | // custom localizations. |
| 180 | $this->localize( $this->handle ); |
| 181 | } |
| 182 | |
| 183 | protected function localize( $handle ) { |
| 184 | } |
| 185 | } |
| 186 |