button.php
320 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Button Block. |
| 4 | * |
| 5 | * @since 8.5.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions\Button; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Jetpack_Gutenberg; |
| 14 | |
| 15 | const FEATURE_NAME = 'button'; |
| 16 | const BLOCK_NAME = 'jetpack/' . FEATURE_NAME; |
| 17 | |
| 18 | /** |
| 19 | * Registers the block for use in Gutenberg |
| 20 | * This is done via an action so that we can disable |
| 21 | * registration if we need to. |
| 22 | */ |
| 23 | function register_block() { |
| 24 | Blocks::jetpack_register_block( |
| 25 | BLOCK_NAME, |
| 26 | array( |
| 27 | 'render_callback' => __NAMESPACE__ . '\render_block', |
| 28 | 'uses_context' => array( 'jetpack/parentBlockWidth' ), |
| 29 | 'selectors' => array( |
| 30 | 'border' => '.wp-block-jetpack-button .wp-block-button__link', |
| 31 | ), |
| 32 | ) |
| 33 | ); |
| 34 | } |
| 35 | add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 36 | |
| 37 | /** |
| 38 | * Button block render callback. |
| 39 | * |
| 40 | * @param array $attributes Array containing the Button block attributes. |
| 41 | * @param string $content The Button block content. |
| 42 | * |
| 43 | * @return string |
| 44 | */ |
| 45 | function render_block( $attributes, $content ) { |
| 46 | $save_in_post_content = get_attribute( $attributes, 'saveInPostContent' ); |
| 47 | |
| 48 | // The Jetpack Button block depends on the core button block styles. |
| 49 | // The following ensures that those styles are enqueued when rendering this block. |
| 50 | enqueue_existing_button_style_dependency( 'core/button' ); |
| 51 | enqueue_existing_button_style_dependency( 'core/buttons' ); |
| 52 | |
| 53 | Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME ); |
| 54 | |
| 55 | if ( $save_in_post_content || ! class_exists( 'DOMDocument' ) ) { |
| 56 | return $content; |
| 57 | } |
| 58 | |
| 59 | $element = get_attribute( $attributes, 'element' ); |
| 60 | $text = wp_kses_post( get_attribute( $attributes, 'text' ) ); |
| 61 | $unique_id = get_attribute( $attributes, 'uniqueId' ); |
| 62 | $url = get_attribute( $attributes, 'url' ); |
| 63 | $classes = Blocks::classes( FEATURE_NAME, $attributes, array( 'wp-block-button' ) ); |
| 64 | |
| 65 | $button_classes = get_button_classes( $attributes ); |
| 66 | $button_styles = get_button_styles( $attributes ); |
| 67 | $wrapper_styles = get_button_wrapper_styles( $attributes ); |
| 68 | |
| 69 | $wrapper_attributes = sprintf( ' class="%s" style="%s"', esc_attr( $classes ), esc_attr( $wrapper_styles ) ); |
| 70 | $button_attributes = sprintf( ' class="%s" style="%s"', esc_attr( $button_classes ), esc_attr( $button_styles ) ); |
| 71 | |
| 72 | if ( empty( $unique_id ) ) { |
| 73 | $button_attributes .= ' data-id-attr="placeholder"'; |
| 74 | } else { |
| 75 | $button_attributes .= sprintf( ' data-id-attr="%1$s" id="%1$s"', esc_attr( $unique_id ) ); |
| 76 | } |
| 77 | |
| 78 | if ( ! in_array( $element, array( 'a', 'button', 'input' ), true ) ) { |
| 79 | $element = 'a'; |
| 80 | } |
| 81 | |
| 82 | if ( 'a' === $element ) { |
| 83 | $button_attributes .= sprintf( ' href="%s" target="_blank" role="button" rel="noopener noreferrer"', esc_url( $url ) ); |
| 84 | } elseif ( 'button' === $element ) { |
| 85 | $button_attributes .= ' type="submit"'; |
| 86 | } elseif ( 'input' === $element ) { |
| 87 | $button_attributes .= sprintf( ' type="submit" value="%s"', esc_attr( wp_strip_all_tags( $text, true ) ) ); |
| 88 | } |
| 89 | |
| 90 | $button = 'input' === $element |
| 91 | ? '<' . $element . $button_attributes . ' />' |
| 92 | : '<' . $element . $button_attributes . '>' . $text . '</' . $element . '>'; |
| 93 | |
| 94 | // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 95 | return '<div' . $wrapper_attributes . '>' . $button . '</div>'; |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Get the Button block classes. |
| 100 | * |
| 101 | * @param array $attributes Array containing the block attributes. |
| 102 | * |
| 103 | * @return string |
| 104 | */ |
| 105 | function get_button_classes( $attributes ) { |
| 106 | $classes = array( 'wp-block-button__link' ); |
| 107 | $has_class_name = array_key_exists( 'className', $attributes ); |
| 108 | $has_named_text_color = array_key_exists( 'textColor', $attributes ); |
| 109 | $has_custom_text_color = array_key_exists( 'customTextColor', $attributes ); |
| 110 | $has_named_background_color = array_key_exists( 'backgroundColor', $attributes ); |
| 111 | $has_custom_background_color = array_key_exists( 'customBackgroundColor', $attributes ); |
| 112 | $has_named_gradient = array_key_exists( 'gradient', $attributes ); |
| 113 | $has_custom_gradient = array_key_exists( 'customGradient', $attributes ); |
| 114 | $has_border_radius = array_key_exists( 'borderRadius', $attributes ); |
| 115 | $has_font_size = array_key_exists( 'fontSize', $attributes ); |
| 116 | $has_named_border_color = array_key_exists( 'borderColor', $attributes ); |
| 117 | |
| 118 | if ( $has_font_size ) { |
| 119 | $classes[] = 'has-' . $attributes['fontSize'] . '-font-size'; |
| 120 | $classes[] = 'has-custom-font-size'; |
| 121 | } |
| 122 | |
| 123 | if ( $has_class_name ) { |
| 124 | $classes[] = $attributes['className']; |
| 125 | } |
| 126 | |
| 127 | if ( $has_named_text_color || $has_custom_text_color ) { |
| 128 | $classes[] = 'has-text-color'; |
| 129 | } |
| 130 | if ( $has_named_text_color ) { |
| 131 | $classes[] = sprintf( 'has-%s-color', $attributes['textColor'] ); |
| 132 | } |
| 133 | |
| 134 | if ( $has_named_border_color ) { |
| 135 | $classes[] = sprintf( 'has-%s-border-color', $attributes['borderColor'] ); |
| 136 | } |
| 137 | |
| 138 | if ( |
| 139 | $has_named_background_color || |
| 140 | $has_custom_background_color || |
| 141 | $has_named_gradient || |
| 142 | $has_custom_gradient |
| 143 | ) { |
| 144 | $classes[] = 'has-background'; |
| 145 | } |
| 146 | if ( $has_named_background_color && ! $has_custom_gradient ) { |
| 147 | $classes[] = sprintf( 'has-%s-background-color', $attributes['backgroundColor'] ); |
| 148 | } |
| 149 | if ( $has_named_gradient ) { |
| 150 | $classes[] = sprintf( 'has-%s-gradient-background', $attributes['gradient'] ); |
| 151 | } |
| 152 | |
| 153 | // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual |
| 154 | if ( $has_border_radius && 0 == $attributes['borderRadius'] ) { |
| 155 | $classes[] = 'no-border-radius'; |
| 156 | } |
| 157 | |
| 158 | return implode( ' ', $classes ); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Get the Button block styles. |
| 163 | * |
| 164 | * @param array $attributes Array containing the block attributes. |
| 165 | * |
| 166 | * @return string |
| 167 | */ |
| 168 | function get_button_styles( $attributes ) { |
| 169 | $styles = array(); |
| 170 | $has_named_text_color = array_key_exists( 'textColor', $attributes ); |
| 171 | $has_custom_text_color = array_key_exists( 'customTextColor', $attributes ); |
| 172 | $has_named_background_color = array_key_exists( 'backgroundColor', $attributes ); |
| 173 | $has_custom_background_color = array_key_exists( 'customBackgroundColor', $attributes ); |
| 174 | $has_named_gradient = array_key_exists( 'gradient', $attributes ); |
| 175 | $has_custom_gradient = array_key_exists( 'customGradient', $attributes ); |
| 176 | $has_border_radius = array_key_exists( 'borderRadius', $attributes ); |
| 177 | $has_font_family = array_key_exists( 'fontFamily', $attributes ); |
| 178 | $has_typography_styles = array_key_exists( 'style', $attributes ) && array_key_exists( 'typography', $attributes['style'] ); |
| 179 | $has_custom_font_size = $has_typography_styles && array_key_exists( 'fontSize', $attributes['style']['typography'] ); |
| 180 | $has_custom_text_transform = $has_typography_styles && array_key_exists( 'textTransform', $attributes['style']['typography'] ); |
| 181 | $border_styles = array(); |
| 182 | $border_attribute = $attributes['style']['border'] ?? null; |
| 183 | $is_border_style_array = is_array( $border_attribute ); |
| 184 | |
| 185 | $has_custom_border_color = $is_border_style_array && isset( $border_attribute['color'] ); |
| 186 | $has_border_style = $is_border_style_array && isset( $border_attribute['style'] ); |
| 187 | $has_border_width = $is_border_style_array && isset( $border_attribute['width'] ); |
| 188 | $has_individual_borders = $is_border_style_array && ( |
| 189 | isset( $border_attribute['top'] ) || |
| 190 | isset( $border_attribute['right'] ) || |
| 191 | isset( $border_attribute['bottom'] ) || |
| 192 | isset( $border_attribute['left'] ) |
| 193 | ); |
| 194 | |
| 195 | if ( $has_font_family ) { |
| 196 | $styles[] = sprintf( 'font-family: %s;', $attributes['fontFamily'] ); |
| 197 | } |
| 198 | |
| 199 | if ( $has_custom_font_size ) { |
| 200 | $styles[] = sprintf( 'font-size: %s;', $attributes['style']['typography']['fontSize'] ); |
| 201 | } |
| 202 | |
| 203 | if ( $has_custom_text_transform ) { |
| 204 | $styles[] = sprintf( 'text-transform: %s;', $attributes['style']['typography']['textTransform'] ); |
| 205 | } |
| 206 | |
| 207 | if ( ! $has_named_text_color && $has_custom_text_color ) { |
| 208 | $styles[] = sprintf( 'color: %s;', $attributes['customTextColor'] ); |
| 209 | } |
| 210 | |
| 211 | if ( ! $has_named_background_color && ! $has_named_gradient && $has_custom_gradient ) { |
| 212 | $styles[] = sprintf( 'background: %s;', $attributes['customGradient'] ); |
| 213 | } |
| 214 | |
| 215 | if ( |
| 216 | $has_custom_background_color && |
| 217 | ! $has_named_background_color && |
| 218 | ! $has_named_gradient && |
| 219 | ! $has_custom_gradient |
| 220 | ) { |
| 221 | $styles[] = sprintf( 'background-color: %s;', $attributes['customBackgroundColor'] ); |
| 222 | } |
| 223 | |
| 224 | // phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual |
| 225 | if ( $has_border_radius && 0 != $attributes['borderRadius'] ) { |
| 226 | $styles[] = sprintf( 'border-radius: %spx;', $attributes['borderRadius'] ); |
| 227 | } |
| 228 | |
| 229 | if ( $has_custom_border_color ) { |
| 230 | $border_styles['color'] = $attributes['style']['border']['color']; |
| 231 | } |
| 232 | |
| 233 | if ( $has_border_style ) { |
| 234 | $border_styles['style'] = $attributes['style']['border']['style']; |
| 235 | } |
| 236 | |
| 237 | if ( $has_border_width ) { |
| 238 | $border_styles['width'] = $attributes['style']['border']['width']; |
| 239 | } |
| 240 | |
| 241 | if ( $has_individual_borders ) { |
| 242 | foreach ( array( 'top', 'right', 'bottom', 'left' ) as $side ) { |
| 243 | $border = $attributes['style']['border'][ $side ] ?? null; |
| 244 | if ( is_array( $border ) ) { |
| 245 | $border_side_values = array( |
| 246 | 'width' => $border['width'] ?? null, |
| 247 | 'color' => $border['color'] ?? null, |
| 248 | 'style' => $border['style'] ?? null, |
| 249 | ); |
| 250 | $border_styles[ $side ] = $border_side_values; |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | $border_styles = wp_style_engine_get_styles( array( 'border' => $border_styles ) ); |
| 256 | if ( isset( $border_styles['css'] ) ) { |
| 257 | $styles[] = $border_styles['css']; |
| 258 | } |
| 259 | |
| 260 | return implode( ' ', $styles ); |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Get the Button wrapper block styles. |
| 265 | * |
| 266 | * @param array $attributes Array containing the block attributes. |
| 267 | * |
| 268 | * @return string |
| 269 | */ |
| 270 | function get_button_wrapper_styles( $attributes ) { |
| 271 | $styles = array(); |
| 272 | $has_width = array_key_exists( 'width', $attributes ); |
| 273 | |
| 274 | if ( $has_width ) { |
| 275 | $styles[] = sprintf( 'width: %s;', $attributes['width'] ); |
| 276 | } |
| 277 | |
| 278 | return implode( ' ', $styles ); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Get filtered attributes. |
| 283 | * |
| 284 | * @param array $attributes Array containing the Button block attributes. |
| 285 | * @param string $attribute_name String containing the attribute name to get. |
| 286 | * |
| 287 | * @return string |
| 288 | */ |
| 289 | function get_attribute( $attributes, $attribute_name ) { |
| 290 | if ( isset( $attributes[ $attribute_name ] ) ) { |
| 291 | return $attributes[ $attribute_name ]; |
| 292 | } |
| 293 | |
| 294 | $default_attributes = array( |
| 295 | 'url' => '#', |
| 296 | 'element' => 'a', |
| 297 | 'saveInPostContent' => false, |
| 298 | ); |
| 299 | |
| 300 | if ( isset( $default_attributes[ $attribute_name ] ) ) { |
| 301 | return $default_attributes[ $attribute_name ]; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * Enqueue style for an existing block. |
| 307 | * |
| 308 | * The Jetpack Button block depends on styles from the core button block. |
| 309 | * In case that block is not already within the post content, we can use |
| 310 | * this function to ensure the block's style assets are enqueued. |
| 311 | * |
| 312 | * @param string $block_name Block type name including namespace. |
| 313 | */ |
| 314 | function enqueue_existing_button_style_dependency( $block_name ) { |
| 315 | $existing_block = \WP_Block_Type_Registry::get_instance()->get_registered( $block_name ); |
| 316 | if ( isset( $existing_block ) && ! empty( $existing_block->style ) ) { |
| 317 | wp_enqueue_style( $existing_block->style ); |
| 318 | } |
| 319 | } |
| 320 |