| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Block Service Provider |
| 5 |
*/ |
| 6 |
|
| 7 |
namespace SureCart\BlockLibrary; |
| 8 |
|
| 9 |
use SureCart\BlockLibrary\BlockService; |
| 10 |
use SureCartCore\ServiceProviders\ServiceProviderInterface; |
| 11 |
|
| 12 |
/** |
| 13 |
* Block Service Provider Class |
| 14 |
* Registers block service used throughout the plugin |
| 15 |
* |
| 16 |
* @author SureCart <andre@surecart.com> |
| 17 |
* @since 1.0.0 |
| 18 |
* @license GPL |
| 19 |
*/ |
| 20 |
class BlockServiceProvider implements ServiceProviderInterface { |
| 21 |
/** |
| 22 |
* Cached components from kses.json |
| 23 |
* |
| 24 |
* @var array |
| 25 |
*/ |
| 26 |
private static $components = []; |
| 27 |
|
| 28 |
/** |
| 29 |
* {@inheritDoc} |
| 30 |
* |
| 31 |
* @param \Pimple\Container $container Service Container. |
| 32 |
*/ |
| 33 |
public function register( $container ) { |
| 34 |
$app = $container[ SURECART_APPLICATION_KEY ]; |
| 35 |
|
| 36 |
$container['block'] = fn () => new BlockService( $app ); |
| 37 |
|
| 38 |
$container['block.support.anchor'] = fn () => new BlockAnchorSupportService(); |
| 39 |
$container['block.support.currency'] = fn () => new BlockCurrencyConversionSupportService(); |
| 40 |
$container['blocks.quick_view'] = fn () => new ProductQuickViewService(); |
| 41 |
$container['blocks.patterns'] = fn () => new BlockPatternsService( $app ); |
| 42 |
$container['blocks.mode_switcher'] = fn () => new FormModeSwitcherService( $app ); |
| 43 |
$container['blocks.validations'] = fn () => new BlockValidationService( |
| 44 |
apply_filters( |
| 45 |
'surecart_block_validators', |
| 46 |
array( |
| 47 |
new \SureCart\BlockValidator\VariantChoice(), |
| 48 |
) |
| 49 |
) |
| 50 |
); |
| 51 |
|
| 52 |
$app->alias( 'block', 'block' ); |
| 53 |
|
| 54 |
// Register blocks. |
| 55 |
include plugin_dir_path( SURECART_PLUGIN_FILE ) . 'packages/blocks-next/index.php'; |
| 56 |
} |
| 57 |
|
| 58 |
/** |
| 59 |
* {@inheritDoc} |
| 60 |
* |
| 61 |
* @param \Pimple\Container $container Service Container. |
| 62 |
* |
| 63 |
* @return void |
| 64 |
* |
| 65 |
* phpcs:disable Generic.CodeAnalysis.UnusedFunctionParameter |
| 66 |
*/ |
| 67 |
public function bootstrap( $container ) { |
| 68 |
$container['blocks.patterns']->bootstrap(); |
| 69 |
$container['blocks.validations']->bootstrap(); |
| 70 |
$container['blocks.mode_switcher']->bootstrap(); |
| 71 |
$container['block.support.anchor']->bootstrap(); |
| 72 |
$container['block.support.currency']->bootstrap(); |
| 73 |
|
| 74 |
// allow design tokens in css. |
| 75 |
add_filter( |
| 76 |
'safe_style_css', |
| 77 |
function ( $styles ) { |
| 78 |
return array_merge( |
| 79 |
array( |
| 80 |
'--spacing', |
| 81 |
'--font-weight', |
| 82 |
'--line-height', |
| 83 |
'--font-size', |
| 84 |
'--text-align', |
| 85 |
'--color', |
| 86 |
'--sc-input-label-color', |
| 87 |
'--primary-background', |
| 88 |
'--primary-color', |
| 89 |
'--sc-color-primary-text', |
| 90 |
'--sc-color-primary-500', |
| 91 |
'--sc-focus-ring-color-primary', |
| 92 |
'--sc-input-border-color-focus', |
| 93 |
), |
| 94 |
$styles |
| 95 |
); |
| 96 |
} |
| 97 |
); |
| 98 |
// allow our web components in wp_kses contexts. |
| 99 |
add_filter( 'wp_kses_allowed_html', array( $this, 'ksesComponents' ) ); |
| 100 |
// register our blocks. |
| 101 |
add_action( 'init', array( $this, 'registerBlocks' ) ); |
| 102 |
// register our category. |
| 103 |
add_action( 'block_categories_all', array( $this, 'registerBlockCategories' ) ); |
| 104 |
} |
| 105 |
|
| 106 |
/** |
| 107 |
* Register our custom block category. |
| 108 |
* |
| 109 |
* @param array $categories Array of categories. |
| 110 |
* @return array |
| 111 |
*/ |
| 112 |
public function registerBlockCategories( $categories ) { |
| 113 |
return array( |
| 114 |
...array( |
| 115 |
array( |
| 116 |
'slug' => 'surecart', |
| 117 |
'title' => esc_html__( 'Checkout', 'surecart' ), |
| 118 |
), |
| 119 |
array( |
| 120 |
'slug' => 'surecart-customer-dashboard', |
| 121 |
'title' => esc_html__( 'Customer Dashboard', 'surecart' ), |
| 122 |
), |
| 123 |
array( |
| 124 |
'slug' => 'surecart-cart', |
| 125 |
'title' => esc_html__( 'Cart', 'surecart' ), |
| 126 |
), |
| 127 |
array( |
| 128 |
'slug' => 'surecart-product-list', |
| 129 |
'title' => esc_html__( 'Shop', 'surecart' ), |
| 130 |
), |
| 131 |
array( |
| 132 |
'slug' => 'surecart-product-page', |
| 133 |
'title' => esc_html__( 'Product', 'surecart' ), |
| 134 |
), |
| 135 |
array( |
| 136 |
'slug' => 'surecart-upsell-page', |
| 137 |
'title' => esc_html__( 'Upsells', 'surecart' ), |
| 138 |
), |
| 139 |
), |
| 140 |
...$categories, |
| 141 |
); |
| 142 |
} |
| 143 |
|
| 144 |
/** |
| 145 |
* Add iFrame to allowed wp_kses_post tags |
| 146 |
* |
| 147 |
* @param array $tags Allowed tags, attributes, and/or entities. |
| 148 |
* |
| 149 |
* @return array |
| 150 |
*/ |
| 151 |
public function ksesComponents( $tags ) { |
| 152 |
if ( empty( self::$components ) ) { |
| 153 |
self::$components = json_decode( file_get_contents( plugin_dir_path( SURECART_PLUGIN_FILE ) . 'app/src/Support/kses.json' ), true ); |
| 154 |
} |
| 155 |
|
| 156 |
// add slot to defaults. |
| 157 |
$tags['span']['slot'] = true; |
| 158 |
$tags['div']['slot'] = true; |
| 159 |
$tags['sc-spinner']['data-*'] = true; |
| 160 |
|
| 161 |
return array_merge( self::$components, $tags ); |
| 162 |
} |
| 163 |
|
| 164 |
/** |
| 165 |
* Register blocks from config |
| 166 |
* |
| 167 |
* @return void |
| 168 |
*/ |
| 169 |
public function registerBlocks() { |
| 170 |
$service = \SureCart::resolve( SURECART_CONFIG_KEY ); |
| 171 |
if ( ! empty( $service['blocks'] ) ) { |
| 172 |
foreach ( $service['blocks'] as $block ) { |
| 173 |
( new $block() )->register(); |
| 174 |
} |
| 175 |
} |
| 176 |
} |
| 177 |
} |
| 178 |
|