PluginProbe
Gutenberg / 23.5.2
Gutenberg v23.5.2
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.5.2, at build/scripts/style-engine/class-wp-style-engine-gutenberg.php

743 lines 27.8 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[] $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
421 * @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`.
422 *
423 * @return void.
424 */
425 public static function store_css_rule( $store_name, $css_selector, $css_declarations, $rules_group = '' ) {
426 if ( empty( $store_name ) || empty( $css_selector ) || empty( $css_declarations ) ) {
427 return;
428 }
429 static::get_store( $store_name )->add_rule( $css_selector, $rules_group )->add_declarations( $css_declarations );
430 }
431
432 /**
433 * Returns a store by store key.
434 *
435 * @param string $store_name A store key.
436 *
437 * @return WP_Style_Engine_CSS_Rules_Store_Gutenberg
438 */
439 public static function get_store( $store_name ) {
440 return WP_Style_Engine_CSS_Rules_Store_Gutenberg::get_store( $store_name );
441 }
442
443 /**
444 * Returns classnames and CSS based on the values in a styles object.
445 * Return values are parsed based on the instructions in BLOCK_STYLE_DEFINITIONS_METADATA.
446 *
447 * @since 6.1.0
448 *
449 * @param array $block_styles The style object.
450 * @param array $options {
451 * Optional. An array of options. Default empty array.
452 *
453 * @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`.
454 * @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 }`,
455 * otherwise, the value will be a concatenated string of CSS declarations.
456 * }
457 *
458 * @return array {
459 * @type string $classnames Classnames separated by a space.
460 * @type string[] $declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
461 * }
462 */
463 public static function parse_block_styles( $block_styles, $options ) {
464 $parsed_styles = array(
465 'classnames' => array(),
466 'declarations' => array(),
467 );
468 if ( empty( $block_styles ) || ! is_array( $block_styles ) ) {
469 return $parsed_styles;
470 }
471
472 // Collect CSS and classnames.
473 foreach ( static::BLOCK_STYLE_DEFINITIONS_METADATA as $definition_group_key => $definition_group_style ) {
474 if ( empty( $block_styles[ $definition_group_key ] ) ) {
475 continue;
476 }
477 foreach ( $definition_group_style as $style_definition ) {
478 $style_value = _wp_array_get( $block_styles, $style_definition['path'], null );
479
480 if ( ! static::is_valid_style_value( $style_value ) ) {
481 continue;
482 }
483
484 $classnames = static::get_classnames( $style_value, $style_definition );
485 if ( ! empty( $classnames ) ) {
486 $parsed_styles['classnames'] = array_merge( $parsed_styles['classnames'], $classnames );
487 }
488
489 $css_declarations = static::get_css_declarations( $style_value, $style_definition, $options );
490 if ( ! empty( $css_declarations ) ) {
491 /*
492 * Combine background gradient and background image into a single
493 * comma-separated background-image value, matching the JS style engine.
494 */
495 if ( isset( $css_declarations['background-image'] ) && isset( $parsed_styles['declarations']['background-image'] ) ) {
496 $css_declarations['background-image'] = $css_declarations['background-image'] . ', ' . $parsed_styles['declarations']['background-image'];
497 }
498 $parsed_styles['declarations'] = array_merge( $parsed_styles['declarations'], $css_declarations );
499 }
500 }
501 }
502
503 return $parsed_styles;
504 }
505
506 /**
507 * Returns classnames, and generates classname(s) from a CSS preset property pattern, e.g., '`var:preset|<PRESET_TYPE>|<PRESET_SLUG>`'.
508 *
509 * @param array $style_value A single raw style value or css preset property from the $block_styles array.
510 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
511 *
512 * @return array|string[] An array of CSS classnames, or empty array.
513 */
514 protected static function get_classnames( $style_value, $style_definition ) {
515 if ( empty( $style_value ) ) {
516 return array();
517 }
518
519 $classnames = array();
520 if ( ! empty( $style_definition['classnames'] ) ) {
521 foreach ( $style_definition['classnames'] as $classname => $property_key ) {
522 if ( true === $property_key ) {
523 $classnames[] = $classname;
524 continue;
525 }
526
527 $slug = static::get_slug_from_preset_value( $style_value, $property_key );
528
529 if ( $slug ) {
530 /*
531 * Right now we expect a classname pattern to be stored in BLOCK_STYLE_DEFINITIONS_METADATA.
532 * One day, if there are no stored schemata, we could allow custom patterns or
533 * generate classnames based on other properties
534 * such as a path or a value or a prefix passed in options.
535 */
536 $classnames[] = strtr( $classname, array( '$slug' => $slug ) );
537 }
538 }
539 }
540
541 return $classnames;
542 }
543
544 /**
545 * Returns an array of CSS declarations based on valid block style values.
546 *
547 * @since 6.1.0
548 *
549 * @param array $style_value A single raw style value from $block_styles array.
550 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
551 * @param array $options {
552 * Optional. An array of options. Default empty array.
553 *
554 * @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`.
555 * }
556 *
557 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
558 */
559 protected static function get_css_declarations( $style_value, $style_definition, $options = array() ) {
560 if ( isset( $style_definition['value_func'] ) && is_callable( $style_definition['value_func'] ) ) {
561 return call_user_func( $style_definition['value_func'], $style_value, $style_definition, $options );
562 }
563
564 $css_declarations = array();
565 $style_property_keys = $style_definition['property_keys'];
566 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
567
568 /*
569 * Build CSS var values from `var:preset|<PRESET_TYPE>|<PRESET_SLUG>` values, e.g, `var(--wp--css--rule-slug )`.
570 * Check if the value is a CSS preset and there's a corresponding css_var pattern in the style definition.
571 */
572 if ( is_string( $style_value ) && str_contains( $style_value, 'var:' ) ) {
573 if ( ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
574 $css_var = static::get_css_var_value( $style_value, $style_definition['css_vars'] );
575 if ( static::is_valid_style_value( $css_var ) ) {
576 $css_declarations[ $style_property_keys['default'] ] = $css_var;
577 }
578 }
579 return $css_declarations;
580 }
581
582 /*
583 * Default rule builder.
584 * If the input contains an array, assume box model-like properties
585 * for styles such as margins and padding.
586 */
587 if ( is_array( $style_value ) ) {
588 // Bail out early if the `'individual'` property is not defined.
589 if ( ! isset( $style_property_keys['individual'] ) ) {
590 return $css_declarations;
591 }
592
593 foreach ( $style_value as $key => $value ) {
594 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
595 $value = static::get_css_var_value( $value, $style_definition['css_vars'] );
596 }
597
598 $individual_property = sprintf( $style_property_keys['individual'], _wp_to_kebab_case( $key ) );
599
600 if ( $individual_property && static::is_valid_style_value( $value ) ) {
601 $css_declarations[ $individual_property ] = $value;
602 }
603 }
604
605 return $css_declarations;
606 }
607
608 $css_declarations[ $style_property_keys['default'] ] = $style_value;
609 return $css_declarations;
610 }
611
612 /**
613 * Style value parser that returns a CSS definition array comprising style properties
614 * that have keys representing individual style properties, otherwise known as longhand CSS properties.
615 * e.g., "$style_property-$individual_feature: $value;", which could represent the following:
616 * "border-{top|right|bottom|left}-{color|width|style}: {value};" or,
617 * "border-image-{outset|source|width|repeat|slice}: {value};"
618 *
619 * @param array $style_value A single raw style value from $block_styles array.
620 * @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'.
621 * @param array $options {
622 * Optional. An array of options. Default empty array.
623 *
624 * @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`.
625 * }
626 *
627 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
628 */
629 protected static function get_individual_property_css_declarations( $style_value, $individual_property_definition, $options = array() ) {
630 if ( ! is_array( $style_value ) || empty( $style_value ) || empty( $individual_property_definition['path'] ) ) {
631 return array();
632 }
633
634 /*
635 * The first item in $individual_property_definition['path'] array tells us the style property, e.g., "border".
636 * We use this to get a corresponding CSS style definition such as "color" or "width" from the same group.
637 * The second item in $individual_property_definition['path'] array refers to the individual property marker, e.g., "top".
638 */
639 $definition_group_key = $individual_property_definition['path'][0];
640 $individual_property_key = $individual_property_definition['path'][1];
641 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
642 $css_declarations = array();
643
644 foreach ( $style_value as $css_property => $value ) {
645 if ( empty( $value ) ) {
646 continue;
647 }
648
649 // Build a path to the individual rules in definitions.
650 $style_definition_path = array( $definition_group_key, $css_property );
651 $style_definition = _wp_array_get( static::BLOCK_STYLE_DEFINITIONS_METADATA, $style_definition_path, null );
652
653 if ( $style_definition && isset( $style_definition['property_keys']['individual'] ) ) {
654 // Set a CSS var if there is a valid preset value.
655 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $individual_property_definition['css_vars'] ) ) {
656 $value = static::get_css_var_value( $value, $individual_property_definition['css_vars'] );
657 }
658 $individual_css_property = sprintf( $style_definition['property_keys']['individual'], $individual_property_key );
659 $css_declarations[ $individual_css_property ] = $value;
660 }
661 }
662 return $css_declarations;
663 }
664
665 /**
666 * Style value parser that constructs a CSS definition array comprising a single CSS property and value.
667 * If the provided value is an array containing a `url` property, the function will return a CSS definition array
668 * with a single property and value, with `url` escaped and injected into a CSS `url()` function,
669 * e.g., array( 'background-image' => "url( '...' )" ).
670 *
671 * @param array $style_value A single raw style value from $block_styles array.
672 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
673 *
674 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
675 */
676 protected static function get_url_or_value_css_declaration( $style_value, $style_definition ) {
677 if ( empty( $style_value ) ) {
678 return array();
679 }
680
681 $css_declarations = array();
682
683 if ( isset( $style_definition['property_keys']['default'] ) ) {
684 $value = null;
685
686 if ( ! empty( $style_value['url'] ) ) {
687 $value = "url('" . $style_value['url'] . "')";
688 } elseif ( is_string( $style_value ) ) {
689 $value = $style_value;
690 }
691
692 if ( null !== $value ) {
693 $css_declarations[ $style_definition['property_keys']['default'] ] = $value;
694 }
695 }
696
697 return $css_declarations;
698 }
699
700 /**
701 * Returns compiled CSS from css_declarations.
702 *
703 * @param string[] $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
704 * @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.
705 *
706 * @return string A compiled CSS string.
707 */
708 public static function compile_css( $css_declarations, $css_selector ) {
709 if ( empty( $css_declarations ) || ! is_array( $css_declarations ) ) {
710 return '';
711 }
712
713 // Return an entire rule if there is a selector.
714 if ( $css_selector ) {
715 $css_rule = new WP_Style_Engine_CSS_Rule_Gutenberg( $css_selector, $css_declarations );
716 return $css_rule->get_css();
717 }
718
719 $css_declarations = new WP_Style_Engine_CSS_Declarations_Gutenberg( $css_declarations );
720 return $css_declarations->get_declarations_string();
721 }
722
723 /**
724 * Returns a compiled stylesheet from stored CSS rules.
725 *
726 * @param WP_Style_Engine_CSS_Rule_Gutenberg[] $css_rules An array of WP_Style_Engine_CSS_Rule_Gutenberg objects from a store or otherwise.
727 * @param array $options {
728 * Optional. An array of options. Default empty array.
729 *
730 * @type bool $optimize Whether to optimize the CSS output, e.g., combine rules. Default is `false`.
731 * @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.
732 * }
733 *
734 * @return string A compiled stylesheet from stored CSS rules.
735 */
736 public static function compile_stylesheet_from_css_rules( $css_rules, $options = array() ) {
737 $processor = new WP_Style_Engine_Processor_Gutenberg();
738 $processor->add_rules( $css_rules );
739 return $processor->get_css( $options );
740 }
741 }
742 }
743