PluginProbe
Gutenberg / 22.9.0
Gutenberg v22.9.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 22.9.0, at build/scripts/style-engine/class-wp-style-engine-gutenberg.php

722 lines 27.3 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 'width' => array(
232 'property_keys' => array(
233 'default' => 'width',
234 ),
235 'path' => array( 'dimensions', 'width' ),
236 'css_vars' => array(
237 'dimension' => '--wp--preset--dimension--$slug',
238 ),
239 ),
240 ),
241 'spacing' => array(
242 'padding' => array(
243 'property_keys' => array(
244 'default' => 'padding',
245 'individual' => 'padding-%s',
246 ),
247 'path' => array( 'spacing', 'padding' ),
248 'css_vars' => array(
249 'spacing' => '--wp--preset--spacing--$slug',
250 ),
251 ),
252 'margin' => array(
253 'property_keys' => array(
254 'default' => 'margin',
255 'individual' => 'margin-%s',
256 ),
257 'path' => array( 'spacing', 'margin' ),
258 'css_vars' => array(
259 'spacing' => '--wp--preset--spacing--$slug',
260 ),
261 ),
262 ),
263 'typography' => array(
264 'fontSize' => array(
265 'property_keys' => array(
266 'default' => 'font-size',
267 ),
268 'css_vars' => array(
269 'font-size' => '--wp--preset--font-size--$slug',
270 ),
271 'path' => array( 'typography', 'fontSize' ),
272 'classnames' => array(
273 'has-$slug-font-size' => 'font-size',
274 ),
275 ),
276 'fontFamily' => array(
277 'property_keys' => array(
278 'default' => 'font-family',
279 ),
280 'css_vars' => array(
281 'font-family' => '--wp--preset--font-family--$slug',
282 ),
283 'path' => array( 'typography', 'fontFamily' ),
284 'classnames' => array(
285 'has-$slug-font-family' => 'font-family',
286 ),
287 ),
288 'fontStyle' => array(
289 'property_keys' => array(
290 'default' => 'font-style',
291 ),
292 'path' => array( 'typography', 'fontStyle' ),
293 ),
294 'fontWeight' => array(
295 'property_keys' => array(
296 'default' => 'font-weight',
297 ),
298 'path' => array( 'typography', 'fontWeight' ),
299 ),
300 'lineHeight' => array(
301 'property_keys' => array(
302 'default' => 'line-height',
303 ),
304 'path' => array( 'typography', 'lineHeight' ),
305 ),
306 'textColumns' => array(
307 'property_keys' => array(
308 'default' => 'column-count',
309 ),
310 'path' => array( 'typography', 'textColumns' ),
311 ),
312 'textDecoration' => array(
313 'property_keys' => array(
314 'default' => 'text-decoration',
315 ),
316 'path' => array( 'typography', 'textDecoration' ),
317 ),
318 'textIndent' => array(
319 'property_keys' => array(
320 'default' => 'text-indent',
321 ),
322 'path' => array( 'typography', 'textIndent' ),
323 ),
324 'textTransform' => array(
325 'property_keys' => array(
326 'default' => 'text-transform',
327 ),
328 'path' => array( 'typography', 'textTransform' ),
329 ),
330 'letterSpacing' => array(
331 'property_keys' => array(
332 'default' => 'letter-spacing',
333 ),
334 'path' => array( 'typography', 'letterSpacing' ),
335 ),
336 'writingMode' => array(
337 'property_keys' => array(
338 'default' => 'writing-mode',
339 ),
340 'path' => array( 'typography', 'writingMode' ),
341 ),
342 ),
343 );
344
345 /**
346 * Util: Extracts the slug in kebab case from a preset string, e.g., "heavenly-blue" from 'var:preset|color|heavenlyBlue'.
347 *
348 * @param string $style_value A single CSS preset value.
349 * @param string $property_key The CSS property that is the second element of the preset string. Used for matching.
350 *
351 * @return string The slug, or empty string if not found.
352 */
353 protected static function get_slug_from_preset_value( $style_value, $property_key ) {
354 if ( is_string( $style_value ) && is_string( $property_key ) && str_contains( $style_value, "var:preset|{$property_key}|" ) ) {
355 $index_to_splice = strrpos( $style_value, '|' ) + 1;
356 return _wp_to_kebab_case( substr( $style_value, $index_to_splice ) );
357 }
358 return '';
359 }
360
361 /**
362 * Util: Generates a CSS var string, e.g., var(--wp--preset--color--background) from a preset string such as `var:preset|space|50`.
363 *
364 * @param string $style_value A single CSS preset value.
365 * @param string[] $css_vars An associate array of CSS var patterns used to generate the var string.
366 *
367 * @return string The css var, or an empty string if no match for slug found.
368 */
369 protected static function get_css_var_value( $style_value, $css_vars ) {
370 foreach ( $css_vars as $property_key => $css_var_pattern ) {
371 $slug = static::get_slug_from_preset_value( $style_value, $property_key );
372 if ( static::is_valid_style_value( $slug ) ) {
373 $var = strtr(
374 $css_var_pattern,
375 array( '$slug' => $slug )
376 );
377 return "var($var)";
378 }
379 }
380 return '';
381 }
382
383 /**
384 * Util: Checks whether an incoming block style value is valid.
385 *
386 * @param string? $style_value A single css preset value.
387 *
388 * @return bool
389 */
390 protected static function is_valid_style_value( $style_value ) {
391 return '0' === $style_value || ! empty( $style_value );
392 }
393
394 /**
395 * Stores a CSS rule using the provided CSS selector and CSS declarations.
396 *
397 * @param string $store_name A valid store key.
398 * @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.
399 * @param string[] $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
400 * @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`.
401 *
402 * @return void.
403 */
404 public static function store_css_rule( $store_name, $css_selector, $css_declarations, $rules_group = '' ) {
405 if ( empty( $store_name ) || empty( $css_selector ) || empty( $css_declarations ) ) {
406 return;
407 }
408 static::get_store( $store_name )->add_rule( $css_selector, $rules_group )->add_declarations( $css_declarations );
409 }
410
411 /**
412 * Returns a store by store key.
413 *
414 * @param string $store_name A store key.
415 *
416 * @return WP_Style_Engine_CSS_Rules_Store_Gutenberg
417 */
418 public static function get_store( $store_name ) {
419 return WP_Style_Engine_CSS_Rules_Store_Gutenberg::get_store( $store_name );
420 }
421
422 /**
423 * Returns classnames and CSS based on the values in a styles object.
424 * Return values are parsed based on the instructions in BLOCK_STYLE_DEFINITIONS_METADATA.
425 *
426 * @since 6.1.0
427 *
428 * @param array $block_styles The style object.
429 * @param array $options {
430 * Optional. An array of options. Default empty array.
431 *
432 * @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`.
433 * @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 }`,
434 * otherwise, the value will be a concatenated string of CSS declarations.
435 * }
436 *
437 * @return array {
438 * @type string $classnames Classnames separated by a space.
439 * @type string[] $declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
440 * }
441 */
442 public static function parse_block_styles( $block_styles, $options ) {
443 $parsed_styles = array(
444 'classnames' => array(),
445 'declarations' => array(),
446 );
447 if ( empty( $block_styles ) || ! is_array( $block_styles ) ) {
448 return $parsed_styles;
449 }
450
451 // Collect CSS and classnames.
452 foreach ( static::BLOCK_STYLE_DEFINITIONS_METADATA as $definition_group_key => $definition_group_style ) {
453 if ( empty( $block_styles[ $definition_group_key ] ) ) {
454 continue;
455 }
456 foreach ( $definition_group_style as $style_definition ) {
457 $style_value = _wp_array_get( $block_styles, $style_definition['path'], null );
458
459 if ( ! static::is_valid_style_value( $style_value ) ) {
460 continue;
461 }
462
463 $classnames = static::get_classnames( $style_value, $style_definition );
464 if ( ! empty( $classnames ) ) {
465 $parsed_styles['classnames'] = array_merge( $parsed_styles['classnames'], $classnames );
466 }
467
468 $css_declarations = static::get_css_declarations( $style_value, $style_definition, $options );
469 if ( ! empty( $css_declarations ) ) {
470 /*
471 * Combine background gradient and background image into a single
472 * comma-separated background-image value, matching the JS style engine.
473 */
474 if ( isset( $css_declarations['background-image'] ) && isset( $parsed_styles['declarations']['background-image'] ) ) {
475 $css_declarations['background-image'] = $css_declarations['background-image'] . ', ' . $parsed_styles['declarations']['background-image'];
476 }
477 $parsed_styles['declarations'] = array_merge( $parsed_styles['declarations'], $css_declarations );
478 }
479 }
480 }
481
482 return $parsed_styles;
483 }
484
485 /**
486 * Returns classnames, and generates classname(s) from a CSS preset property pattern, e.g., '`var:preset|<PRESET_TYPE>|<PRESET_SLUG>`'.
487 *
488 * @param array $style_value A single raw style value or css preset property from the $block_styles array.
489 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
490 *
491 * @return array|string[] An array of CSS classnames, or empty array.
492 */
493 protected static function get_classnames( $style_value, $style_definition ) {
494 if ( empty( $style_value ) ) {
495 return array();
496 }
497
498 $classnames = array();
499 if ( ! empty( $style_definition['classnames'] ) ) {
500 foreach ( $style_definition['classnames'] as $classname => $property_key ) {
501 if ( true === $property_key ) {
502 $classnames[] = $classname;
503 continue;
504 }
505
506 $slug = static::get_slug_from_preset_value( $style_value, $property_key );
507
508 if ( $slug ) {
509 /*
510 * Right now we expect a classname pattern to be stored in BLOCK_STYLE_DEFINITIONS_METADATA.
511 * One day, if there are no stored schemata, we could allow custom patterns or
512 * generate classnames based on other properties
513 * such as a path or a value or a prefix passed in options.
514 */
515 $classnames[] = strtr( $classname, array( '$slug' => $slug ) );
516 }
517 }
518 }
519
520 return $classnames;
521 }
522
523 /**
524 * Returns an array of CSS declarations based on valid block style values.
525 *
526 * @since 6.1.0
527 *
528 * @param array $style_value A single raw style value from $block_styles array.
529 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
530 * @param array $options {
531 * Optional. An array of options. Default empty array.
532 *
533 * @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`.
534 * }
535 *
536 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
537 */
538 protected static function get_css_declarations( $style_value, $style_definition, $options = array() ) {
539 if ( isset( $style_definition['value_func'] ) && is_callable( $style_definition['value_func'] ) ) {
540 return call_user_func( $style_definition['value_func'], $style_value, $style_definition, $options );
541 }
542
543 $css_declarations = array();
544 $style_property_keys = $style_definition['property_keys'];
545 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
546
547 /*
548 * Build CSS var values from `var:preset|<PRESET_TYPE>|<PRESET_SLUG>` values, e.g, `var(--wp--css--rule-slug )`.
549 * Check if the value is a CSS preset and there's a corresponding css_var pattern in the style definition.
550 */
551 if ( is_string( $style_value ) && str_contains( $style_value, 'var:' ) ) {
552 if ( ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
553 $css_var = static::get_css_var_value( $style_value, $style_definition['css_vars'] );
554 if ( static::is_valid_style_value( $css_var ) ) {
555 $css_declarations[ $style_property_keys['default'] ] = $css_var;
556 }
557 }
558 return $css_declarations;
559 }
560
561 /*
562 * Default rule builder.
563 * If the input contains an array, assume box model-like properties
564 * for styles such as margins and padding.
565 */
566 if ( is_array( $style_value ) ) {
567 // Bail out early if the `'individual'` property is not defined.
568 if ( ! isset( $style_property_keys['individual'] ) ) {
569 return $css_declarations;
570 }
571
572 foreach ( $style_value as $key => $value ) {
573 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $style_definition['css_vars'] ) ) {
574 $value = static::get_css_var_value( $value, $style_definition['css_vars'] );
575 }
576
577 $individual_property = sprintf( $style_property_keys['individual'], _wp_to_kebab_case( $key ) );
578
579 if ( $individual_property && static::is_valid_style_value( $value ) ) {
580 $css_declarations[ $individual_property ] = $value;
581 }
582 }
583
584 return $css_declarations;
585 }
586
587 $css_declarations[ $style_property_keys['default'] ] = $style_value;
588 return $css_declarations;
589 }
590
591 /**
592 * Style value parser that returns a CSS definition array comprising style properties
593 * that have keys representing individual style properties, otherwise known as longhand CSS properties.
594 * e.g., "$style_property-$individual_feature: $value;", which could represent the following:
595 * "border-{top|right|bottom|left}-{color|width|style}: {value};" or,
596 * "border-image-{outset|source|width|repeat|slice}: {value};"
597 *
598 * @param array $style_value A single raw style value from $block_styles array.
599 * @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'.
600 * @param array $options {
601 * Optional. An array of options. Default empty array.
602 *
603 * @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`.
604 * }
605 *
606 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
607 */
608 protected static function get_individual_property_css_declarations( $style_value, $individual_property_definition, $options = array() ) {
609 if ( ! is_array( $style_value ) || empty( $style_value ) || empty( $individual_property_definition['path'] ) ) {
610 return array();
611 }
612
613 /*
614 * The first item in $individual_property_definition['path'] array tells us the style property, e.g., "border".
615 * We use this to get a corresponding CSS style definition such as "color" or "width" from the same group.
616 * The second item in $individual_property_definition['path'] array refers to the individual property marker, e.g., "top".
617 */
618 $definition_group_key = $individual_property_definition['path'][0];
619 $individual_property_key = $individual_property_definition['path'][1];
620 $should_skip_css_vars = isset( $options['convert_vars_to_classnames'] ) && true === $options['convert_vars_to_classnames'];
621 $css_declarations = array();
622
623 foreach ( $style_value as $css_property => $value ) {
624 if ( empty( $value ) ) {
625 continue;
626 }
627
628 // Build a path to the individual rules in definitions.
629 $style_definition_path = array( $definition_group_key, $css_property );
630 $style_definition = _wp_array_get( static::BLOCK_STYLE_DEFINITIONS_METADATA, $style_definition_path, null );
631
632 if ( $style_definition && isset( $style_definition['property_keys']['individual'] ) ) {
633 // Set a CSS var if there is a valid preset value.
634 if ( is_string( $value ) && str_contains( $value, 'var:' ) && ! $should_skip_css_vars && ! empty( $individual_property_definition['css_vars'] ) ) {
635 $value = static::get_css_var_value( $value, $individual_property_definition['css_vars'] );
636 }
637 $individual_css_property = sprintf( $style_definition['property_keys']['individual'], $individual_property_key );
638 $css_declarations[ $individual_css_property ] = $value;
639 }
640 }
641 return $css_declarations;
642 }
643
644 /**
645 * Style value parser that constructs a CSS definition array comprising a single CSS property and value.
646 * If the provided value is an array containing a `url` property, the function will return a CSS definition array
647 * with a single property and value, with `url` escaped and injected into a CSS `url()` function,
648 * e.g., array( 'background-image' => "url( '...' )" ).
649 *
650 * @param array $style_value A single raw style value from $block_styles array.
651 * @param array $style_definition A single style definition from BLOCK_STYLE_DEFINITIONS_METADATA.
652 *
653 * @return string[] An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
654 */
655 protected static function get_url_or_value_css_declaration( $style_value, $style_definition ) {
656 if ( empty( $style_value ) ) {
657 return array();
658 }
659
660 $css_declarations = array();
661
662 if ( isset( $style_definition['property_keys']['default'] ) ) {
663 $value = null;
664
665 if ( ! empty( $style_value['url'] ) ) {
666 $value = "url('" . $style_value['url'] . "')";
667 } elseif ( is_string( $style_value ) ) {
668 $value = $style_value;
669 }
670
671 if ( null !== $value ) {
672 $css_declarations[ $style_definition['property_keys']['default'] ] = $value;
673 }
674 }
675
676 return $css_declarations;
677 }
678
679 /**
680 * Returns compiled CSS from css_declarations.
681 *
682 * @param string[] $css_declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ).
683 * @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.
684 *
685 * @return string A compiled CSS string.
686 */
687 public static function compile_css( $css_declarations, $css_selector ) {
688 if ( empty( $css_declarations ) || ! is_array( $css_declarations ) ) {
689 return '';
690 }
691
692 // Return an entire rule if there is a selector.
693 if ( $css_selector ) {
694 $css_rule = new WP_Style_Engine_CSS_Rule_Gutenberg( $css_selector, $css_declarations );
695 return $css_rule->get_css();
696 }
697
698 $css_declarations = new WP_Style_Engine_CSS_Declarations_Gutenberg( $css_declarations );
699 return $css_declarations->get_declarations_string();
700 }
701
702 /**
703 * Returns a compiled stylesheet from stored CSS rules.
704 *
705 * @param WP_Style_Engine_CSS_Rule_Gutenberg[] $css_rules An array of WP_Style_Engine_CSS_Rule_Gutenberg objects from a store or otherwise.
706 * @param array $options {
707 * Optional. An array of options. Default empty array.
708 *
709 * @type bool $optimize Whether to optimize the CSS output, e.g., combine rules. Default is `false`.
710 * @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.
711 * }
712 *
713 * @return string A compiled stylesheet from stored CSS rules.
714 */
715 public static function compile_stylesheet_from_css_rules( $css_rules, $options = array() ) {
716 $processor = new WP_Style_Engine_Processor_Gutenberg();
717 $processor->add_rules( $css_rules );
718 return $processor->get_css( $options );
719 }
720 }
721 }
722