PluginProbe
Gutenberg / 23.6.0
Gutenberg v23.6.0
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 / style-engine / class-wp-style-engine-gutenberg.php

class-wp-style-engine-gutenberg.php in Gutenberg 23.6.0, at build/scripts/style-engine/class-wp-style-engine-gutenberg.php

744 lines 28.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WP_Style_Engine_Gutenberg
4 *
5 * Generates classnames and block styles.
6 *
7 * @package gutenberg
8 */
9
10 if ( ! class_exists( 'WP_Style_Engine_Gutenberg' ) ) {
11
12 /**
13 * Class WP_Style_Engine_Gutenberg.
14 *
15 * The Style Engine aims to provide a consistent API for rendering styling for blocks across both client-side and server-side applications.
16 *
17 * This class is for internal Core usage and is not supposed to be used by extenders (plugins and/or themes).
18 * This class is final and should not be extended.
19 * This is a low-level API that may need to do breaking changes. Please, use wp_style_engine_get_styles instead.
20 *
21 * @access private
22 */
23 final class WP_Style_Engine_Gutenberg {
24 /**
25 * Style definitions that contain the instructions to parse/output valid Gutenberg styles from a block's attributes.
26 *
27 * For every style definition, the following properties are valid:
28 *
29 * - classnames => (array) an array of classnames to be returned for block styles. The key is a classname or pattern.
30 * A value of `true` means the classname should be applied always. Otherwise, a valid CSS property (string)
31 * to match the incoming value, e.g., "color" to match var:preset|color|somePresetSlug.
32 * - css_vars => (array) an array of key value pairs used to generate CSS var values.
33 * The key should be the CSS property name that matches the second element of the preset string value,
34 * i.e., "color" in var:preset|color|somePresetSlug. The value is a CSS var pattern (e.g. `--wp--preset--color--$slug`),
35 * whose `$slug` fragment will be replaced with the preset slug, which is the third element of the preset string value,
36 * i.e., `somePresetSlug` in var:preset|color|somePresetSlug.
37 * - property_keys => (array) array of keys whose values represent a valid CSS property, e.g., "margin" or "border".
38 * - path => (array) a path that accesses the corresponding style value in the block style object.
39 * - value_func => (string) the name of a function to generate a CSS definition array for a particular style object. The output of this function should be `array( "$property" => "$value", ... )`.
40 *
41 * @var array
42 */
43 const BLOCK_STYLE_DEFINITIONS_METADATA = array(
44 'background' => array(
45 'backgroundImage' => array(
46 'property_keys' => array(
47 'default' => 'background-image',
48 ),
49 'value_func' => array( self::class, 'get_url_or_value_css_declaration' ),
50 'path' => array( 'background', 'backgroundImage' ),
51 ),
52 'backgroundPosition' => array(
53 'property_keys' => array(
54 'default' => 'background-position',
55 ),
56 'path' => array( 'background', 'backgroundPosition' ),
57 ),
58 'backgroundRepeat' => array(
59 'property_keys' => array(
60 'default' => 'background-repeat',
61 ),
62 'path' => array( 'background', 'backgroundRepeat' ),
63 ),
64 'backgroundSize' => array(
65 'property_keys' => array(
66 'default' => 'background-size',
67 ),
68 'path' => array( 'background', 'backgroundSize' ),
69 ),
70 'backgroundAttachment' => array(
71 'property_keys' => array(
72 'default' => 'background-attachment',
73 ),
74 'path' => array( 'background', 'backgroundAttachment' ),
75 ),
76 'gradient' => array(
77 'property_keys' => array(
78 'default' => 'background-image',
79 ),
80 'css_vars' => array(
81 'gradient' => '--wp--preset--gradient--$slug',
82 ),
83 'path' => array( 'background', 'gradient' ),
84 'classnames' => array(
85 'has-background' => true,
86 ),
87 ),
88 ),
89 'color' => array(
90 'text' => array(
91 'property_keys' => array(
92 'default' => 'color',
93 ),
94 'path' => array( 'color', 'text' ),
95 'css_vars' => array(
96 'color' => '--wp--preset--color--$slug',
97 ),
98 'classnames' => array(
99 'has-text-color' => true,
100 'has-$slug-color' => 'color',
101 ),
102 ),
103 'background' => array(
104 'property_keys' => array(
105 'default' => 'background-color',
106 ),
107 'path' => array( 'color', 'background' ),
108 'css_vars' => array(
109 'color' => '--wp--preset--color--$slug',
110 ),
111 'classnames' => array(
112 'has-background' => true,
113 'has-$slug-background-color' => 'color',
114 ),
115 ),
116 'gradient' => array(
117 'property_keys' => array(
118 'default' => 'background',
119 ),
120 'css_vars' => array(
121 'gradient' => '--wp--preset--gradient--$slug',
122 ),
123 'path' => array( 'color', 'gradient' ),
124 'classnames' => array(
125 'has-background' => true,
126 'has-$slug-gradient-background' => 'gradient',
127 ),
128 ),
129 ),
130 'border' => array(
131 'color' => array(
132 'property_keys' => array(
133 'default' => 'border-color',
134 'individual' => 'border-%s-color',
135 ),
136 'path' => array( 'border', 'color' ),
137 'classnames' => array(
138 'has-border-color' => true,
139 'has-$slug-border-color' => 'color',
140 ),
141 ),
142 'radius' => array(
143 'property_keys' => array(
144 'default' => 'border-radius',
145 'individual' => 'border-%s-radius',
146 ),
147 'path' => array( 'border', 'radius' ),
148 'css_vars' => array(
149 'border-radius' => '--wp--preset--border-radius--$slug',
150 ),
151 ),
152 'style' => array(
153 'property_keys' => array(
154 'default' => 'border-style',
155 'individual' => 'border-%s-style',
156 ),
157 'path' => array( 'border', 'style' ),
158 ),
159 'width' => array(
160 'property_keys' => array(
161 'default' => 'border-width',
162 'individual' => 'border-%s-width',
163 ),
164 'path' => array( 'border', 'width' ),
165 ),
166 'top' => array(
167 'value_func' => array( self::class, 'get_individual_property_css_declarations' ),
168 'path' => array( 'border', 'top' ),
169 'css_vars' => array(
170 'color' => '--wp--preset--color--$slug',
171 ),
172 ),
173 'right' => array(
174 'value_func' => array( self::class, 'get_individual_property_css_declarations' ),
175 'path' => array( 'border', 'right' ),
176 'css_vars' => array(
177 'color' => '--wp--preset--color--$slug',
178 ),
179 ),
180 'bottom' => array(
181 'value_func' => array( self::class, 'get_individual_property_css_declarations' ),
182 'path' => array( 'border', 'bottom' ),
183 'css_vars' => array(
184 'color' => '--wp--preset--color--$slug',
185 ),
186 ),
187 'left' => array(
188 'value_func' => array( self::class, 'get_individual_property_css_declarations' ),
189 'path' => array( 'border', 'left' ),
190 'css_vars' => array(
191 'color' => '--wp--preset--color--$slug',
192 ),
193 ),
194 ),
195 'shadow' => array(
196 'shadow' => array(
197 'property_keys' => array(
198 'default' => 'box-shadow',
199 ),
200 'path' => array( 'shadow' ),
201 'css_vars' => array(
202 'shadow' => '--wp--preset--shadow--$slug',
203 ),
204 ),
205 ),
206 'dimensions' => array(
207 'aspectRatio' => array(
208 'property_keys' => array(
209 'default' => 'aspect-ratio',
210 ),
211 'path' => array( 'dimensions', 'aspectRatio' ),
212 'classnames' => array(
213 'has-aspect-ratio' => true,
214 ),
215 ),
216 'height' => array(
217 'property_keys' => array(
218 'default' => 'height',
219 ),
220 'path' => array( 'dimensions', 'height' ),
221 ),
222 'minHeight' => array(
223 'property_keys' => array(
224 'default' => 'min-height',
225 ),
226 'path' => array( 'dimensions', 'minHeight' ),
227 'css_vars' => array(
228 'dimension' => '--wp--preset--dimension--$slug',
229 ),
230 ),
231 'minWidth' => array(
232 'property_keys' => array(
233 'default' => 'min-width',
234 ),
235 'path' => array( 'dimensions', 'minWidth' ),
236 'css_vars' => array(
237 'dimension' => '--wp--preset--dimension--$slug',
238 ),
239 ),
240 'objectFit' => array(
241 'property_keys' => array(
242 'default' => 'object-fit',
243 ),
244 'path' => array( 'dimensions', 'objectFit' ),
245 ),
246 'width' => array(
247 'property_keys' => array(
248 'default' => 'width',
249 ),
250 'path' => array( 'dimensions', 'width' ),
251 'css_vars' => array(
252 'dimension' => '--wp--preset--dimension--$slug',
253 ),
254 ),
255 ),
256 'spacing' => array(
257 'padding' => array(
258 'property_keys' => array(
259 'default' => 'padding',
260 'individual' => 'padding-%s',
261 ),
262 'path' => array( 'spacing', 'padding' ),
263 'css_vars' => array(
264 'spacing' => '--wp--preset--spacing--$slug',
265 ),
266 ),
267 'margin' => array(
268 'property_keys' => array(
269 'default' => 'margin',
270 'individual' => 'margin-%s',
271 ),
272 'path' => array( 'spacing', 'margin' ),
273 'css_vars' => array(
274 'spacing' => '--wp--preset--spacing--$slug',
275 ),
276 ),
277 ),
278 'typography' => array(
279 'fontSize' => array(
280 'property_keys' => array(
281 'default' => 'font-size',
282 ),
283 'css_vars' => array(
284 'font-size' => '--wp--preset--font-size--$slug',
285 ),
286 'path' => array( 'typography', 'fontSize' ),
287 'classnames' => array(
288 'has-$slug-font-size' => 'font-size',
289 ),
290 ),
291 'fontFamily' => array(
292 'property_keys' => array(
293 'default' => 'font-family',
294 ),
295 'css_vars' => array(
296 'font-family' => '--wp--preset--font-family--$slug',
297 ),
298 'path' => array( 'typography', 'fontFamily' ),
299 'classnames' => array(
300 'has-$slug-font-family' => 'font-family',
301 ),
302 ),
303 'fontStyle' => array(
304 'property_keys' => array(
305 'default' => 'font-style',
306 ),
307 'path' => array( 'typography', 'fontStyle' ),
308 ),
309 'fontWeight' => array(
310 'property_keys' => array(
311 'default' => 'font-weight',
312 ),
313 'path' => array( 'typography', 'fontWeight' ),
314 ),
315 'lineHeight' => array(
316 'property_keys' => array(
317 'default' => 'line-height',
318 ),
319 'path' => array( 'typography', 'lineHeight' ),
320 ),
321 'textColumns' => array(
322 'property_keys' => array(
323 'default' => 'column-count',
324 ),
325 'path' => array( 'typography', 'textColumns' ),
326 ),
327 'textDecoration' => array(
328 'property_keys' => array(
329 'default' => 'text-decoration',
330 ),
331 'path' => array( 'typography', 'textDecoration' ),
332 ),
333 'textIndent' => array(
334 'property_keys' => array(
335 'default' => 'text-indent',
336 ),
337 'path' => array( 'typography', 'textIndent' ),
338 ),
339 'textShadow' => array(
340 'property_keys' => array(
341 'default' => 'text-shadow',
342 ),
343 'path' => array( 'typography', 'textShadow' ),
344 ),
345 'textTransform' => array(
346 'property_keys' => array(
347 'default' => 'text-transform',
348 ),
349 'path' => array( 'typography', 'textTransform' ),
350 ),
351 'letterSpacing' => array(
352 'property_keys' => array(
353 'default' => 'letter-spacing',
354 ),
355 'path' => array( 'typography', 'letterSpacing' ),
356 ),
357 'writingMode' => array(
358 'property_keys' => array(
359 'default' => 'writing-mode',
360 ),
361 'path' => array( 'typography', 'writingMode' ),
362 ),
363 ),
364 );
365
366 /**
367 * Util: Extracts the slug in kebab case from a preset string, e.g., "heavenly-blue" from 'var:preset|color|heavenlyBlue'.
368 *
369 * @param string $style_value A single CSS preset value.
370 * @param string $property_key The CSS property that is the second element of the preset string. Used for matching.
371 *
372 * @return string The slug, or empty string if not found.
373 */
374 protected static function get_slug_from_preset_value( $style_value, $property_key ) {
375 if ( is_string( $style_value ) && is_string( $property_key ) && str_contains( $style_value, "var:preset|{$property_key}|" ) ) {
376 $index_to_splice = strrpos( $style_value, '|' ) + 1;
377 return _wp_to_kebab_case( substr( $style_value, $index_to_splice ) );
378 }
379 return '';
380 }
381
382 /**
383 * Util: Generates a CSS var string, e.g., var(--wp--preset--color--background) from a preset string such as `var:preset|space|50`.
384 *
385 * @param string $style_value A single CSS preset value.
386 * @param string[] $css_vars An associate array of CSS var patterns used to generate the var string.
387 *
388 * @return string The css var, or an empty string if no match for slug found.
389 */
390 protected static function get_css_var_value( $style_value, $css_vars ) {
391 foreach ( $css_vars as $property_key => $css_var_pattern ) {
392 $slug = static::get_slug_from_preset_value( $style_value, $property_key );
393 if ( static::is_valid_style_value( $slug ) ) {
394 $var = strtr(
395 $css_var_pattern,
396 array( '$slug' => $slug )
397 );
398 return "var($var)";
399 }
400 }
401 return '';
402 }
403
404 /**
405 * Util: Checks whether an incoming block style value is valid.
406 *
407 * @param string? $style_value A single css preset value.
408 *
409 * @return bool
410 */
411 protected static function is_valid_style_value( $style_value ) {
412 return '0' === $style_value || ! empty( $style_value );
413 }
414
415 /**
416 * Stores a CSS rule using the provided CSS selector and CSS declarations.
417 *
418 * @param string $store_name A valid store key.
419 * @param string $css_selector When a selector is passed, the function will return a full CSS rule `$selector { ...rules }`, otherwise a concatenated string of properties and values.
420 * @param string[]|WP_Style_Engine_CSS_Declarations_Gutenberg $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ),
421 * or a WP_Style_Engine_CSS_Declarations_Gutenberg object.
422 * @param string $rules_group Optional. A parent CSS selector in the case of nested CSS, or a CSS nested @rule, such as `@media (min-width: 80rem)` or `@layer module`.
423 *
424 * @return void.
425 */
426 public static function store_css_rule( $store_name, $css_selector, $css_declarations, $rules_group = '' ) {
427 if ( empty( $store_name ) || empty( $css_selector ) || empty( $css_declarations ) ) {
428 return;
429 }
430 static::get_store( $store_name )->add_rule( $css_selector, $rules_group )->add_declarations( $css_declarations );
431 }
432
433 /**
434 * Returns a store by store key.
435 *
436 * @param string $store_name A store key.
437 *
438 * @return WP_Style_Engine_CSS_Rules_Store_Gutenberg
439 */
440 public static function get_store( $store_name ) {
441 return WP_Style_Engine_CSS_Rules_Store_Gutenberg::get_store( $store_name );
442 }
443
444 /**
445 * Returns classnames and CSS based on the values in a styles object.
446 * Return values are parsed based on the instructions in BLOCK_STYLE_DEFINITIONS_METADATA.
447 *
448 * @since 6.1.0
449 *
450 * @param array $block_styles The style object.
451 * @param array $options {
452 * Optional. An array of options. Default empty array.
453 *
454 * @type bool $convert_vars_to_classnames Whether to skip converting incoming CSS var patterns, e.g., `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`, to var( --wp--preset--* ) values. Default `false`.
455 * @type string $selector Optional. When a selector is passed, the value of `$css` in the return value will comprise a full CSS rule `$selector { ...$css_declarations }`,
456 * otherwise, the value will be a concatenated string of CSS declarations.
457 * }
458 *
459 * @return array {
460 * @type string $classnames Classnames separated by a space.
461 * @type string[] $declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
462 * }
463 */
464 public static function parse_block_styles( $block_styles, $options ) {
465 $parsed_styles = array(
466 'classnames' => array(),
467 'declarations' => array(),
468 );
469 if ( empty( $block_styles ) || ! is_array( $block_styles ) ) {
470 return $parsed_styles;
471 }
472
473 // Collect CSS and classnames.
474 foreach ( static::BLOCK_STYLE_DEFINITIONS_METADATA as $definition_group_key => $definition_group_style ) {
475 if ( empty( $block_styles[ $definition_group_key ] ) ) {
476 continue;
477 }
478 foreach ( $definition_group_style as $style_definition ) {
479 $style_value = _wp_array_get( $block_styles, $style_definition['path'], null );
480
481 if ( ! static::is_valid_style_value( $style_value ) ) {
482 continue;
483 }
484
485 $classnames = static::get_classnames( $style_value, $style_definition );
486 if ( ! empty( $classnames ) ) {
487 $parsed_styles['classnames'] = array_merge( $parsed_styles['classnames'], $classnames );
488 }
489
490 $css_declarations = static::get_css_declarations( $style_value, $style_definition, $options );
491 if ( ! empty( $css_declarations ) ) {
492 /*
493 * Combine background gradient and background image into a single
494 * comma-separated background-image value, matching the JS style engine.
495 */
496 if ( isset( $css_declarations['background-image'] ) && isset( $parsed_styles['declarations']['background-image'] ) ) {
497 $css_declarations['background-image'] = $css_declarations['background-image'] . ', ' . $parsed_styles['declarations']['background-image'];
498 }
499 $parsed_styles['declarations'] = array_merge( $parsed_styles['declarations'], $css_declarations );
500 }
501 }
502 }
503
504 return $parsed_styles;
505 }
506
507 /**
508 * Returns classnames, and generates classname(s) from a CSS preset property pattern, e.g., '`var:preset|<PRESET_TYPE>|<PRESET_SLUG>`'.
509 *
510 * @param array $style_value A single raw style value or css preset property from the $block_styles array.
511 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
512 *
513 * @return array|string[] An array of CSS classnames, or empty array.
514 */
515 protected static function get_classnames( $style_value, $style_definition ) {
516 if ( empty( $style_value ) ) {
517 return array();
518 }
519
520 $classnames = array();
521 if ( ! empty( $style_definition['classnames'] ) ) {
522 foreach ( $style_definition['classnames'] as $classname => $property_key ) {
523 if ( true === $property_key ) {
524 $classnames[] = $classname;
525 continue;
526 }
527
528 $slug = static::get_slug_from_preset_value( $style_value, $property_key );
529
530 if ( $slug ) {
531 /*
532 * Right now we expect a classname pattern to be stored in BLOCK_STYLE_DEFINITIONS_METADATA.
533 * One day, if there are no stored schemata, we could allow custom patterns or
534 * generate classnames based on other properties
535 * such as a path or a value or a prefix passed in options.
536 */
537 $classnames[] = strtr( $classname, array( '$slug' => $slug ) );
538 }
539 }
540 }
541
542 return $classnames;
543 }
544
545 /**
546 * Returns an array of CSS declarations based on valid block style values.
547 *
548 * @since 6.1.0
549 *
550 * @param array $style_value A single raw style value from $block_styles array.
551 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
552 * @param array $options {
553 * Optional. An array of options. Default empty array.
554 *
555 * @type bool $convert_vars_to_classnames Whether to skip converting incoming CSS var patterns, e.g., `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`, to var( --wp--preset--* ) values. Default `false`.
556 * }
557 *
558 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
559 */
560 protected static function get_css_declarations( $style_value, $style_definition, $options = array() ) {
561 if ( isset( $style_definition['value_func'] ) && is_callable( $style_definition['value_func'] ) ) {
562 return call_user_func( $style_definition['value_func'], $style_value, $style_definition, $options );
563 }
564
565 $css_declarations = array();
566 $style_property_keys = $style_definition['property_keys'];
567 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
568
569 /*
570 * Build CSS var values from `var:preset|<PRESET_TYPE>|<PRESET_SLUG>` values, e.g, `var(--wp--css--rule-slug )`.
571 * Check if the value is a CSS preset and there's a corresponding css_var pattern in the style definition.
572 */
573 if ( is_string( $style_value ) && str_contains( $style_value, 'var:' ) ) {
574 if ( ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
575 $css_var = static::get_css_var_value( $style_value, $style_definition['css_vars'] );
576 if ( static::is_valid_style_value( $css_var ) ) {
577 $css_declarations[ $style_property_keys['default'] ] = $css_var;
578 }
579 }
580 return $css_declarations;
581 }
582
583 /*
584 * Default rule builder.
585 * If the input contains an array, assume box model-like properties
586 * for styles such as margins and padding.
587 */
588 if ( is_array( $style_value ) ) {
589 // Bail out early if the `'individual'` property is not defined.
590 if ( ! isset( $style_property_keys['individual'] ) ) {
591 return $css_declarations;
592 }
593
594 foreach ( $style_value as $key => $value ) {
595 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
596 $value = static::get_css_var_value( $value, $style_definition['css_vars'] );
597 }
598
599 $individual_property = sprintf( $style_property_keys['individual'], _wp_to_kebab_case( $key ) );
600
601 if ( $individual_property && static::is_valid_style_value( $value ) ) {
602 $css_declarations[ $individual_property ] = $value;
603 }
604 }
605
606 return $css_declarations;
607 }
608
609 $css_declarations[ $style_property_keys['default'] ] = $style_value;
610 return $css_declarations;
611 }
612
613 /**
614 * Style value parser that returns a CSS definition array comprising style properties
615 * that have keys representing individual style properties, otherwise known as longhand CSS properties.
616 * e.g., "$style_property-$individual_feature: $value;", which could represent the following:
617 * "border-{top|right|bottom|left}-{color|width|style}: {value};" or,
618 * "border-image-{outset|source|width|repeat|slice}: {value};"
619 *
620 * @param array $style_value A single raw style value from $block_styles array.
621 * @param array $individual_property_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA representing an individual property of a CSS property, e.g., 'top' in 'border-top'.
622 * @param array $options {
623 * Optional. An array of options. Default empty array.
624 *
625 * @type bool $convert_vars_to_classnames Whether to skip converting incoming CSS var patterns, e.g., `var:preset|<PRESET_TYPE>|<PRESET_SLUG>`, to var( --wp--preset--* ) values. Default `false`.
626 * }
627 *
628 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
629 */
630 protected static function get_individual_property_css_declarations( $style_value, $individual_property_definition, $options = array() ) {
631 if ( ! is_array( $style_value ) || empty( $style_value ) || empty( $individual_property_definition['path'] ) ) {
632 return array();
633 }
634
635 /*
636 * The first item in $individual_property_definition['path'] array tells us the style property, e.g., "border".
637 * We use this to get a corresponding CSS style definition such as "color" or "width" from the same group.
638 * The second item in $individual_property_definition['path'] array refers to the individual property marker, e.g., "top".
639 */
640 $definition_group_key = $individual_property_definition['path'][0];
641 $individual_property_key = $individual_property_definition['path'][1];
642 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
643 $css_declarations = array();
644
645 foreach ( $style_value as $css_property => $value ) {
646 if ( empty( $value ) ) {
647 continue;
648 }
649
650 // Build a path to the individual rules in definitions.
651 $style_definition_path = array( $definition_group_key, $css_property );
652 $style_definition = _wp_array_get( static::BLOCK_STYLE_DEFINITIONS_METADATA, $style_definition_path, null );
653
654 if ( $style_definition && isset( $style_definition['property_keys']['individual'] ) ) {
655 // Set a CSS var if there is a valid preset value.
656 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $individual_property_definition['css_vars'] ) ) {
657 $value = static::get_css_var_value( $value, $individual_property_definition['css_vars'] );
658 }
659 $individual_css_property = sprintf( $style_definition['property_keys']['individual'], $individual_property_key );
660 $css_declarations[ $individual_css_property ] = $value;
661 }
662 }
663 return $css_declarations;
664 }
665
666 /**
667 * Style value parser that constructs a CSS definition array comprising a single CSS property and value.
668 * If the provided value is an array containing a `url` property, the function will return a CSS definition array
669 * with a single property and value, with `url` escaped and injected into a CSS `url()` function,
670 * e.g., array( 'background-image' => "url( '...' )" ).
671 *
672 * @param array $style_value A single raw style value from $block_styles array.
673 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
674 *
675 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
676 */
677 protected static function get_url_or_value_css_declaration( $style_value, $style_definition ) {
678 if ( empty( $style_value ) ) {
679 return array();
680 }
681
682 $css_declarations = array();
683
684 if ( isset( $style_definition['property_keys']['default'] ) ) {
685 $value = null;
686
687 if ( ! empty( $style_value['url'] ) ) {
688 $value = "url('" . $style_value['url'] . "')";
689 } elseif ( is_string( $style_value ) ) {
690 $value = $style_value;
691 }
692
693 if ( null !== $value ) {
694 $css_declarations[ $style_definition['property_keys']['default'] ] = $value;
695 }
696 }
697
698 return $css_declarations;
699 }
700
701 /**
702 * Returns compiled CSS from css_declarations.
703 *
704 * @param string[] $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
705 * @param string $css_selector When a selector is passed, the function will return a full CSS rule `$selector { ...rules }`, otherwise a concatenated string of properties and values.
706 *
707 * @return string A compiled CSS string.
708 */
709 public static function compile_css( $css_declarations, $css_selector ) {
710 if ( empty( $css_declarations ) || ! is_array( $css_declarations ) ) {
711 return '';
712 }
713
714 // Return an entire rule if there is a selector.
715 if ( $css_selector ) {
716 $css_rule = new WP_Style_Engine_CSS_Rule_Gutenberg( $css_selector, $css_declarations );
717 return $css_rule->get_css();
718 }
719
720 $css_declarations = new WP_Style_Engine_CSS_Declarations_Gutenberg( $css_declarations );
721 return $css_declarations->get_declarations_string();
722 }
723
724 /**
725 * Returns a compiled stylesheet from stored CSS rules.
726 *
727 * @param WP_Style_Engine_CSS_Rule_Gutenberg[] $css_rules An array of WP_Style_Engine_CSS_Rule_Gutenberg objects from a store or otherwise.
728 * @param array $options {
729 * Optional. An array of options. Default empty array.
730 *
731 * @type bool $optimize Whether to optimize the CSS output, e.g., combine rules. Default is `false`.
732 * @type bool $prettify Whether to add new lines and indents to output. Default is the test of whether the global constant `SCRIPT_DEBUG` is defined.
733 * }
734 *
735 * @return string A compiled stylesheet from stored CSS rules.
736 */
737 public static function compile_stylesheet_from_css_rules( $css_rules, $options = array() ) {
738 $processor = new WP_Style_Engine_Processor_Gutenberg();
739 $processor->add_rules( $css_rules );
740 return $processor->get_css( $options );
741 }
742 }
743 }
744