PluginProbe
Gutenberg / 23.5.3
Gutenberg v23.5.3
23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 7.4.0 All 402 releases
gutenberg / build / scripts / block-library / icon.php

icon.php in Gutenberg 23.5.3, at build/scripts/block-library/icon.php

154 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Server-side rendering of the `core/icon` block.
4 *
5 * @package WordPress
6 */
7
8 /**
9 * Renders the `core/icon` block on server.
10 *
11 * @since 7.0.0
12 *
13 * @param array $attributes The block attributes.
14 *
15 * @return string Returns the Icon.
16 */
17 function gutenberg_render_block_core_icon( $attributes ) {
18 if ( empty( $attributes['icon'] ) ) {
19 return;
20 }
21
22 $registry = WP_Icons_Registry::get_instance();
23 $icon = $registry->get_registered_icon( $attributes['icon'] );
24
25 if ( is_null( $icon ) ) {
26 return;
27 }
28
29 // Text color and background color.
30 $color_styles = array();
31
32 $preset_text_color = array_key_exists( 'textColor', $attributes ) ? "var:preset|color|{$attributes['textColor']}" : null;
33 $custom_text_color = $attributes['style']['color']['text'] ?? null;
34 $color_styles['text'] = $preset_text_color ? $preset_text_color : $custom_text_color;
35
36 $preset_background_color = array_key_exists( 'backgroundColor', $attributes ) ? "var:preset|color|{$attributes['backgroundColor']}" : null;
37 $custom_background_color = $attributes['style']['color']['background'] ?? null;
38 $color_styles['background'] = $preset_background_color ? $preset_background_color : $custom_background_color;
39
40 // Border.
41 $border_styles = array();
42 $sides = array( 'top', 'right', 'bottom', 'left' );
43
44 if ( isset( $attributes['style']['border']['radius'] ) ) {
45 $border_styles['radius'] = $attributes['style']['border']['radius'];
46 }
47 if ( isset( $attributes['style']['border']['style'] ) ) {
48 $border_styles['style'] = $attributes['style']['border']['style'];
49 }
50 if ( isset( $attributes['style']['border']['width'] ) ) {
51 $border_styles['width'] = $attributes['style']['border']['width'];
52 }
53
54 $preset_color = array_key_exists( 'borderColor', $attributes ) ? "var:preset|color|{$attributes['borderColor']}" : null;
55 $custom_color = $attributes['style']['border']['color'] ?? null;
56 $border_styles['color'] = $preset_color ? $preset_color : $custom_color;
57
58 foreach ( $sides as $side ) {
59 $border = $attributes['style']['border'][ $side ] ?? null;
60 $border_styles[ $side ] = array(
61 'color' => $border['color'] ?? null,
62 'style' => $border['style'] ?? null,
63 'width' => $border['width'] ?? null,
64 );
65 }
66
67 // Spacing (Padding).
68 $spacing_styles = array();
69 if ( isset( $attributes['style']['spacing']['padding'] ) ) {
70 $spacing_styles['padding'] = $attributes['style']['spacing']['padding'];
71 }
72
73 // Dimensions (Width).
74 $dimensions_styles = array();
75 if ( isset( $attributes['style']['dimensions']['width'] ) ) {
76 $dimensions_styles['width'] = $attributes['style']['dimensions']['width'];
77 }
78
79 // Generate styles and classes.
80 $styles = gutenberg_style_engine_get_styles(
81 array(
82 'color' => $color_styles,
83 'border' => $border_styles,
84 'spacing' => $spacing_styles,
85 'dimensions' => $dimensions_styles,
86 ),
87 );
88
89 $processor = new WP_HTML_Tag_Processor( $icon['content'] );
90 $processor->next_tag( 'svg' );
91
92 if ( ! empty( $styles['css'] ) ) {
93 $processor->set_attribute( 'style', $styles['css'] );
94 }
95 if ( ! empty( $styles['classnames'] ) ) {
96 $processor->add_class( $styles['classnames'] );
97 }
98
99 // Apply flip classes to the SVG.
100 $flip_horizontal = $attributes['flipHorizontal'] ?? false;
101 $flip_vertical = $attributes['flipVertical'] ?? false;
102
103 if ( $flip_horizontal ) {
104 $processor->add_class( 'is-flip-horizontal' );
105 }
106 if ( $flip_vertical ) {
107 $processor->add_class( 'is-flip-vertical' );
108 }
109
110 $rotation = isset( $attributes['rotation'] ) ? (int) $attributes['rotation'] : 0;
111
112 if ( $rotation ) {
113 $current_style = $processor->get_attribute( 'style' ) ?? '';
114 $rotation_css = 'rotate: ' . $rotation . 'deg;';
115 if ( $current_style ) {
116 $processor->set_attribute( 'style', $current_style . ' ' . $rotation_css );
117 } else {
118 $processor->set_attribute( 'style', $rotation_css );
119 }
120 }
121
122 $aria_label = ! empty( $attributes['ariaLabel'] ) ? $attributes['ariaLabel'] : '';
123
124 if ( ! $aria_label ) {
125 // Icon is decorative, hide it from screen readers.
126 $processor->set_attribute( 'aria-hidden', 'true' );
127 $processor->set_attribute( 'focusable', 'false' );
128 } else {
129 $processor->set_attribute( 'role', 'img' );
130 $processor->set_attribute( 'aria-label', $aria_label );
131 }
132
133 // Return the updated SVG markup.
134 $svg = $processor->get_updated_html();
135 $attributes = get_block_wrapper_attributes();
136 return sprintf( '<div %s>%s</div>', $attributes, $svg );
137 }
138
139
140 /**
141 * Registers the `core/icon` block on server.
142 *
143 * @since 7.0.0
144 */
145 function gutenberg_register_block_core_icon() {
146 register_block_type_from_metadata(
147 __DIR__ . '/icon',
148 array(
149 'render_callback' => 'gutenberg_render_block_core_icon',
150 )
151 );
152 }
153 add_action( 'init', 'gutenberg_register_block_core_icon', 20 );
154