BlockPatternsService.php
3 years ago
BlockService.php
3 years ago
BlockServiceProvider.php
2 years ago
BlockValidationService.php
2 years ago
FormModeSwitcherService.php
2 years ago
FormModeSwitcherService.php
230 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace SureCart\BlockLibrary; |
| 6 | |
| 7 | /** |
| 8 | * Provide general block-related functionality. |
| 9 | */ |
| 10 | class FormModeSwitcherService { |
| 11 | /** |
| 12 | * Whether the ui has been rendered. |
| 13 | * |
| 14 | * @var bool |
| 15 | */ |
| 16 | protected $rendered = false; |
| 17 | |
| 18 | /** |
| 19 | * The mode. |
| 20 | * |
| 21 | * @var string |
| 22 | */ |
| 23 | protected $mode = 'live'; |
| 24 | |
| 25 | /** |
| 26 | * Bootstrap the service. |
| 27 | * |
| 28 | * @return void |
| 29 | */ |
| 30 | public function bootstrap(): void { |
| 31 | // add the admin bar menu. |
| 32 | add_action( 'admin_bar_menu', [ $this, 'addAdminBarMenu' ], 99 ); |
| 33 | // add the script to confirm changing the cart. |
| 34 | add_action( 'wp_after_admin_bar_render', [ $this, 'confirmScript' ] ); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Get the menu title. |
| 39 | * |
| 40 | * @return string |
| 41 | */ |
| 42 | public function getMenuTitle() { |
| 43 | ob_start(); ?> |
| 44 | |
| 45 | <span style="color: #fff;"> |
| 46 | <?php echo esc_html__( 'Checkout Form', 'surecart' ); ?> |
| 47 | </span> |
| 48 | <span style="color: <?php echo 'live' === $this->mode ? 'var(--sc-color-success-900, #21382a)' : 'var(--sc-color-warning-900, #4d3d11)'; ?>; display: inline-block; background-color: <?php echo 'live' === $this->mode ? 'var(--sc-color-success-400, #49de80)' : 'var(--sc-color-warning-400, #fbbf24)'; ?>; font-size: 10px; line-height: 1; border-radius: 999px; padding: 3px 6px; margin: 0 5px; text-transform: uppercase; font-weight: bold; vertical-align: text-bottom;"> |
| 49 | <?php echo 'live' === $this->mode ? esc_html__( 'Live Mode', 'surecart' ) : esc_html__( 'Test Mode', 'surecart' ); ?> |
| 50 | </span> |
| 51 | |
| 52 | <?php |
| 53 | return ob_get_clean(); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Get the menu item. |
| 58 | * |
| 59 | * @param string $mode The mode. |
| 60 | * |
| 61 | * @return string |
| 62 | */ |
| 63 | public function getMenuItem( $mode = 'live' ) { |
| 64 | ob_start(); |
| 65 | ?> |
| 66 | <span style="display: flex; justify-content: space-between;"> |
| 67 | <span> |
| 68 | <span style="color: <?php echo 'live' === $mode ? 'var(--sc-color-success-400, #21382a)' : 'var(--sc-color-warning-400, #4d3d11)'; ?>; font-weight: bold; font-size: 16px; line-height: 1;">• </span> |
| 69 | <span style="color: <?php echo 'live' === $mode ? 'var(--sc-color-success-100, #49de80)' : 'var(--sc-color-warning-100, #fbbf24)'; ?>;"> |
| 70 | <?php echo 'live' === $mode ? esc_html__( 'Live Mode', 'surecart' ) : esc_html__( 'Test Mode', 'surecart' ); ?> |
| 71 | </span> |
| 72 | </span> |
| 73 | <span> |
| 74 | <?php echo $this->mode === $mode ? ' ✓' : ''; ?> |
| 75 | </span> |
| 76 | </span> |
| 77 | <?php |
| 78 | return ob_get_clean(); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Add admin bar menu. |
| 83 | * |
| 84 | * @param \WP_Admin_Bar $wp_admin_bar The admin bar. |
| 85 | * |
| 86 | * @return void |
| 87 | */ |
| 88 | public function addAdminBarMenu( $wp_admin_bar ): void { |
| 89 | // We don't want to show this in admin area. |
| 90 | if ( is_admin() ) { |
| 91 | return; |
| 92 | } |
| 93 | |
| 94 | // The form post. |
| 95 | $form_post = \SureCart::post()->getFormPostFromBlock( get_post() ); |
| 96 | if ( empty( $form_post->post_content ) ) { |
| 97 | return; |
| 98 | } |
| 99 | |
| 100 | // Get the checkout form block. |
| 101 | $checkout_form_block = wp_get_first_block( parse_blocks( $form_post->post_content ), 'surecart/form' ); |
| 102 | if ( empty( $checkout_form_block ) ) { |
| 103 | return; |
| 104 | } |
| 105 | |
| 106 | // get the mode from the block. |
| 107 | $this->mode = $checkout_form_block['attrs']['mode'] ?? 'live'; |
| 108 | |
| 109 | // build the url to change the mode. |
| 110 | $url = add_query_arg( |
| 111 | [ |
| 112 | 'sc_checkout_change_mode' => $form_post->ID, |
| 113 | 'sc_checkout_post' => get_the_ID(), |
| 114 | 'nonce' => wp_create_nonce( 'update_checkout_mode' ), |
| 115 | ], |
| 116 | get_home_url( null, 'surecart/change-checkout-mode' ) |
| 117 | ); |
| 118 | |
| 119 | // add the top level menu item. |
| 120 | $wp_admin_bar->add_menu( |
| 121 | [ |
| 122 | 'id' => 'sc_change_checkout_mode', |
| 123 | 'title' => $this->getMenuTitle(), |
| 124 | ] |
| 125 | ); |
| 126 | |
| 127 | // add the live mode menu item. |
| 128 | $wp_admin_bar->add_menu( |
| 129 | [ |
| 130 | 'parent' => 'sc_change_checkout_mode', |
| 131 | 'id' => 'sc_live_mode', |
| 132 | 'title' => $this->getMenuItem( 'live' ), |
| 133 | 'href' => 'live' === $this->mode ? '#' : $url, |
| 134 | ] |
| 135 | ); |
| 136 | |
| 137 | // add the test mode menu item. |
| 138 | $wp_admin_bar->add_menu( |
| 139 | [ |
| 140 | 'parent' => 'sc_change_checkout_mode', |
| 141 | 'id' => 'sc_test_mode', |
| 142 | 'title' => $this->getMenuItem( 'test' ), |
| 143 | 'href' => 'test' === $this->mode ? '#' : $url, |
| 144 | ], |
| 145 | ); |
| 146 | |
| 147 | // Mark as rendered. |
| 148 | $this->rendered = true; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Confirm script. |
| 153 | * |
| 154 | * @return void |
| 155 | */ |
| 156 | public function confirmScript() { |
| 157 | if ( ! $this->rendered ) { |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | $mode = 'test' === $this->mode ? esc_html__( 'live mode', 'surecart' ) : esc_html__( 'test mode', 'surecart' ); |
| 162 | |
| 163 | // translators: %s: live mode or test mode. |
| 164 | $message = sprintf( esc_html__( "Are you sure you want to change this form to %1\$s? \n\nThis will change the form to %2\$s for EVERYONE, and %3\$s cart contents will be used - your cart contents may not transfer.", 'surecart' ), $mode, $mode, $mode ); |
| 165 | ?> |
| 166 | |
| 167 | <script> |
| 168 | const items = document.querySelectorAll('#wp-admin-bar-sc_change_checkout_mode a:not([href="#"])'); |
| 169 | (items || []).forEach(item => { |
| 170 | item.addEventListener('click', function(e) { |
| 171 | if (!confirm('<?php echo esc_js( $message ); ?>')) { |
| 172 | e.preventDefault(); |
| 173 | } |
| 174 | }) |
| 175 | }); |
| 176 | </script> |
| 177 | |
| 178 | <?php |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Get checkout form post. |
| 183 | * |
| 184 | * @return object|null |
| 185 | */ |
| 186 | public function getCheckoutFormPost() { |
| 187 | $post = get_post(); |
| 188 | |
| 189 | if ( ! $post ) { |
| 190 | return null; |
| 191 | } |
| 192 | |
| 193 | // Check post has block surecart/checkout-form and then check the attributes. |
| 194 | $blocks = parse_blocks( $post->post_content ); |
| 195 | |
| 196 | if ( ! has_block( 'surecart/checkout-form', $post ) ) { |
| 197 | return null; |
| 198 | } |
| 199 | |
| 200 | $checkout_form_block = wp_get_first_block( $blocks, 'surecart/checkout-form' ); |
| 201 | |
| 202 | // Get the form post id. |
| 203 | $checkout_form_post_id = $checkout_form_block['attrs']['id'] ?? null; |
| 204 | |
| 205 | if ( ! $checkout_form_post_id ) { |
| 206 | return null; |
| 207 | } |
| 208 | |
| 209 | return get_post( $checkout_form_post_id ) ?? null; |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * Get block from post. |
| 214 | * |
| 215 | * @param \WP_Post $checkout_form_post The checkout form post. |
| 216 | * |
| 217 | * @return array|null |
| 218 | */ |
| 219 | public function getBlockFromPost( $checkout_form_post ) { |
| 220 | if ( ! $checkout_form_post ) { |
| 221 | return null; |
| 222 | } |
| 223 | |
| 224 | $checkout_form_inner_block = parse_blocks( $checkout_form_post->post_content ); |
| 225 | |
| 226 | // Find the surecart/form block. |
| 227 | return wp_get_first_block( $checkout_form_inner_block, 'surecart/form' ); |
| 228 | } |
| 229 | } |
| 230 |