| 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 |
// fix shitty jetpack issues key hijacking issues. |
| 104 |
add_filter( |
| 105 |
'admin_head', |
| 106 |
function() { |
| 107 |
wp_dequeue_script( 'wpcom-notes-common' ); |
| 108 |
wp_dequeue_script( 'wpcom-notes-admin-bar' ); |
| 109 |
wp_dequeue_style( 'wpcom-notes-admin-bar' ); |
| 110 |
wp_dequeue_style( 'noticons' ); |
| 111 |
}, |
| 112 |
200 |
| 113 |
); |
| 114 |
|
| 115 |
// automatically load dependencies and version. |
| 116 |
$asset_file = include plugin_dir_path( SURECART_PLUGIN_FILE ) . "dist/$this->path.asset.php"; |
| 117 |
|
| 118 |
// Enqueue scripts. |
| 119 |
wp_enqueue_script( |
| 120 |
$this->handle, |
| 121 |
trailingslashit( \SureCart::core()->assets()->getUrl() ) . "dist/$this->path.js", |
| 122 |
array_merge( $asset_file['dependencies'], $this->dependencies ), |
| 123 |
$asset_file['version'], |
| 124 |
true |
| 125 |
); |
| 126 |
|
| 127 |
// pass app url. |
| 128 |
$this->data['upgrade_url'] = \SureCart::config()->links->purchase; |
| 129 |
$this->data['surecart_app_url'] = defined( 'SURECART_APP_URL' ) ? SURECART_APP_URL : ''; |
| 130 |
$this->data['account_id'] = \SureCart::account()->id ?? ''; |
| 131 |
$this->data['account_slug'] = \SureCart::account()->slug ?? ''; |
| 132 |
$this->data['api_url'] = \SureCart::requests()->getBaseUrl(); |
| 133 |
$this->data['plugin_url'] = \SureCart::core()->assets()->getUrl(); |
| 134 |
$this->data['home_url'] = untrailingslashit( get_home_url() ); |
| 135 |
$this->data['buy_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'buy_page' ) ); |
| 136 |
$this->data['product_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'product_page' ) ); |
| 137 |
$this->data['collection_page_slug'] = untrailingslashit( \SureCart::settings()->permalinks()->getBase( 'collection_page' ) ); |
| 138 |
$this->data['is_block_theme'] = \SureCart::utility()->blockTemplates()->isFSETheme(); |
| 139 |
$this->data['claim_url'] = ! \SureCart::account()->claimed ? \SureCart::routeUrl( 'account.claim' ) : ''; |
| 140 |
|
| 141 |
if ( in_array( 'currency', $this->with_data ) ) { |
| 142 |
$this->data['currency_code'] = \SureCart::account()->currency; |
| 143 |
} |
| 144 |
if ( in_array( 'tax_protocol', $this->with_data ) ) { |
| 145 |
$this->data['tax_protocol'] = \SureCart::account()->tax_protocol; |
| 146 |
} |
| 147 |
if ( in_array( 'shipping_protocol', $this->with_data ) ) { |
| 148 |
$this->data['shipping_protocol'] = \SureCart::account()->shipping_protocol; |
| 149 |
} |
| 150 |
if ( in_array( 'checkout_page_url', $this->with_data ) ) { |
| 151 |
$this->data['checkout_page_url'] = \SureCart::getUrl()->checkout(); |
| 152 |
} |
| 153 |
if ( in_array( 'supported_currencies', $this->with_data ) ) { |
| 154 |
$this->data['supported_currencies'] = Currency::getSupportedCurrencies(); |
| 155 |
} |
| 156 |
if ( in_array( 'links', $this->with_data ) ) { |
| 157 |
$this->data['links'] = []; |
| 158 |
foreach ( array_keys( \SureCart::getAdminPageNames() ) as $name ) { |
| 159 |
$this->data['links'][ $name ] = esc_url_raw( add_query_arg( [ 'action' => 'edit' ], \SureCart::getUrl()->index( $name ) ) ); |
| 160 |
} |
| 161 |
} |
| 162 |
|
| 163 |
// pass entitlements to page. |
| 164 |
$this->data['entitlements'] = \SureCart::account()->entitlements; |
| 165 |
$this->data['get_locale'] = str_replace( '_', '-', get_locale() ); |
| 166 |
|
| 167 |
wp_set_script_translations( $this->handle, 'surecart' ); |
| 168 |
|
| 169 |
// common localizations. |
| 170 |
wp_localize_script( |
| 171 |
$this->handle, |
| 172 |
'scData', |
| 173 |
apply_filters( "$this->handle/data", $this->data ) |
| 174 |
); |
| 175 |
|
| 176 |
wp_localize_script( $this->handle, 'scIcons', [ 'path' => esc_url_raw( plugin_dir_url( SURECART_PLUGIN_FILE ) . 'dist/icon-assets' ) ] ); |
| 177 |
|
| 178 |
// custom localizations. |
| 179 |
$this->localize( $this->handle ); |
| 180 |
} |
| 181 |
|
| 182 |
protected function localize( $handle ) { |
| 183 |
} |
| 184 |
} |
| 185 |
|