-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
class-wp-theme-json.php
985 lines (917 loc) · 26.1 KB
/
class-wp-theme-json.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<?php
/**
* Process of structures that adhere to the theme.json schema.
*
* @package gutenberg
*/
/**
* Class that encapsulates the processing of
* structures that adhere to the theme.json spec.
*/
class WP_Theme_JSON {
/**
* Container of data in theme.json format.
*
* @var array
*/
private $contexts = null;
/**
* Holds block metadata extracted from block.json
* to be shared among all instances so we don't
* process it twice.
*
* @var array
*/
private static $blocks_metadata = null;
/**
* The name of the global context.
*
* @var string
*/
const GLOBAL_NAME = 'global';
/**
* The CSS selector for the global context.
*
* @var string
*/
const GLOBAL_SELECTOR = ':root';
/**
* The supported properties of the global context.
*
* @var array
*/
const GLOBAL_SUPPORTS = array(
'--wp--style--color--link',
'background',
'backgroundColor',
'border',
'color',
'fontFamily',
'fontSize',
'fontStyle',
'fontWeight',
'lineHeight',
'textDecoration',
'textTransform',
);
/**
* Data schema of each context within a theme.json.
*
* Example:
*
* {
* 'context-one': {
* 'styles': {
* 'color': {
* 'background': 'color'
* }
* },
* 'settings': {
* 'color': {
* 'custom': true
* }
* }
* },
* 'context-two': {
* 'styles': {
* 'color': {
* 'link': 'color'
* }
* }
* }
* }
*/
const SCHEMA = array(
'styles' => array(
'color' => array(
'background' => null,
'gradient' => null,
'link' => null,
'text' => null,
),
'spacing' => array(
'padding' => array(
'top' => null,
'right' => null,
'bottom' => null,
'left' => null,
),
),
'typography' => array(
'fontFamily' => null,
'fontSize' => null,
'fontStyle' => null,
'fontWeight' => null,
'lineHeight' => null,
'textDecoration' => null,
'textTransform' => null,
),
),
'settings' => array(
'border' => array(
'customRadius' => null,
),
'color' => array(
'custom' => null,
'customGradient' => null,
'gradients' => null,
'link' => null,
'palette' => null,
),
'spacing' => array(
'customPadding' => null,
'units' => null,
),
'typography' => array(
'customFontSize' => null,
'customLineHeight' => null,
'dropCap' => null,
'fontFamilies' => null,
'fontSizes' => null,
'customFontStyle' => null,
'customFontWeight' => null,
'customTextDecorations' => null,
'customTextTransforms' => null,
),
'custom' => null,
),
);
/**
* Presets are a set of values that serve
* to bootstrap some styles: colors, font sizes, etc.
*
* They are a unkeyed array of values such as:
*
* ```php
* array(
* array(
* 'slug' => 'unique-name-within-the-set',
* 'name' => 'Name for the UI',
* <value_key> => 'value'
* ),
* )
* ```
*
* This contains the necessary metadata to process them:
*
* - path => where to find the preset in a theme.json context
*
* - value_key => the key that represents the value
*
* - css_var_infix => infix to use in generating the CSS Custom Property. Example:
* --wp--preset--<preset_infix>--<slug>: <preset_value>
*
* - classes => array containing a structure with the classes to
* generate for the presets. Each class should have
* the class suffix and the property name. Example:
*
* .has-<slug>-<class_suffix> {
* <property_name>: <preset_value>
* }
*/
const PRESETS_METADATA = array(
array(
'path' => array( 'settings', 'color', 'palette' ),
'value_key' => 'color',
'css_var_infix' => 'color',
'classes' => array(
array(
'class_suffix' => 'color',
'property_name' => 'color',
),
array(
'class_suffix' => 'background-color',
'property_name' => 'background-color',
),
),
),
array(
'path' => array( 'settings', 'color', 'gradients' ),
'value_key' => 'gradient',
'css_var_infix' => 'gradient',
'classes' => array(
array(
'class_suffix' => 'gradient-background',
'property_name' => 'background',
),
),
),
array(
'path' => array( 'settings', 'typography', 'fontSizes' ),
'value_key' => 'size',
'css_var_infix' => 'font-size',
'classes' => array(
array(
'class_suffix' => 'font-size',
'property_name' => 'font-size',
),
),
),
array(
'path' => array( 'settings', 'typography', 'fontFamilies' ),
'value_key' => 'fontFamily',
'css_var_infix' => 'font-family',
'classes' => array(),
),
);
/**
* Metadata for style properties.
*
* Each property declares:
*
* - 'value': path to the value in theme.json and block attributes.
* - 'support': path to the block support in block.json.
*/
const PROPERTIES_METADATA = array(
'--wp--style--color--link' => array(
'value' => array( 'color', 'link' ),
'support' => array( 'color', 'link' ),
),
'background' => array(
'value' => array( 'color', 'gradient' ),
'support' => array( 'color', 'gradients' ),
),
'backgroundColor' => array(
'value' => array( 'color', 'background' ),
'support' => array( 'color' ),
),
'borderRadius' => array(
'value' => array( 'border', 'radius' ),
'support' => array( '__experimentalBorder' ),
),
'color' => array(
'value' => array( 'color', 'text' ),
'support' => array( 'color' ),
),
'fontFamily' => array(
'value' => array( 'typography', 'fontFamily' ),
'support' => array( '__experimentalFontFamily' ),
),
'fontSize' => array(
'value' => array( 'typography', 'fontSize' ),
'support' => array( 'fontSize' ),
),
'fontStyle' => array(
'value' => array( 'typography', 'fontStyle' ),
'support' => array( '__experimentalFontStyle' ),
),
'fontWeight' => array(
'value' => array( 'typography', 'fontWeight' ),
'support' => array( '__experimentalFontWeight' ),
),
'lineHeight' => array(
'value' => array( 'typography', 'lineHeight' ),
'support' => array( 'lineHeight' ),
),
'paddingBottom' => array(
'value' => array( 'spacing', 'padding', 'bottom' ),
'support' => array( 'spacing', 'padding' ),
),
'paddingLeft' => array(
'value' => array( 'spacing', 'padding', 'left' ),
'support' => array( 'spacing', 'padding' ),
),
'paddingRight' => array(
'value' => array( 'spacing', 'padding', 'right' ),
'support' => array( 'spacing', 'padding' ),
),
'paddingTop' => array(
'value' => array( 'spacing', 'padding', 'top' ),
'support' => array( 'spacing', 'padding' ),
),
'textDecoration' => array(
'value' => array( 'typography', 'textDecoration' ),
'support' => array( '__experimentalTextDecoration' ),
),
'textTransform' => array(
'value' => array( 'typography', 'textTransform' ),
'support' => array( '__experimentalTextTransform' ),
),
);
/**
* Constructor.
*
* @param array $contexts A structure that follows the theme.json schema.
* @param boolean $should_escape_styles Whether the incoming styles should be escaped.
*/
public function __construct( $contexts = array(), $should_escape_styles = false ) {
$this->contexts = array();
if ( ! is_array( $contexts ) ) {
return;
}
$metadata = $this->get_blocks_metadata();
foreach ( $contexts as $key => $context ) {
if ( ! isset( $metadata[ $key ] ) ) {
// Skip incoming contexts that can't be found
// within the contexts registered.
continue;
}
// Filter out top-level keys that aren't valid according to the schema.
$context = array_intersect_key( $context, self::SCHEMA );
// Process styles subtree.
$this->process_key( 'styles', $context, self::SCHEMA );
if ( isset( $context['styles'] ) ) {
$this->process_key( 'color', $context['styles'], self::SCHEMA['styles'], $should_escape_styles );
$this->process_key( 'spacing', $context['styles'], self::SCHEMA['styles'], $should_escape_styles );
$this->process_key( 'typography', $context['styles'], self::SCHEMA['styles'], $should_escape_styles );
if ( empty( $context['styles'] ) ) {
unset( $context['styles'] );
} else {
$this->contexts[ $key ]['styles'] = $context['styles'];
}
}
// Process settings subtree.
$this->process_key( 'settings', $context, self::SCHEMA );
if ( isset( $context['settings'] ) ) {
$this->process_key( 'border', $context['settings'], self::SCHEMA['settings'] );
$this->process_key( 'color', $context['settings'], self::SCHEMA['settings'] );
$this->process_key( 'spacing', $context['settings'], self::SCHEMA['settings'] );
$this->process_key( 'typography', $context['settings'], self::SCHEMA['settings'] );
if ( empty( $context['settings'] ) ) {
unset( $context['settings'] );
} else {
$this->contexts[ $key ]['settings'] = $context['settings'];
}
}
}
}
/**
* Returns the metadata for each block.
*
* Example:
*
* {
* 'global': {
* 'selector': ':root'
* 'supports': [ 'fontSize', 'backgroundColor' ],
* },
* 'core/heading/h1': {
* 'selector': 'h1'
* 'supports': [ 'fontSize', 'backgroundColor' ],
* }
* }
*
* @return array Block metadata.
*/
private static function get_blocks_metadata() {
if ( null !== self::$blocks_metadata ) {
return self::$blocks_metadata;
}
self::$blocks_metadata = array(
self::GLOBAL_NAME => array(
'selector' => self::GLOBAL_SELECTOR,
'supports' => self::GLOBAL_SUPPORTS,
),
);
$registry = WP_Block_Type_Registry::get_instance();
$blocks = $registry->get_all_registered();
foreach ( $blocks as $block_name => $block_type ) {
/*
* Skips blocks that don't declare support,
* they don't generate styles.
*/
if (
! property_exists( $block_type, 'supports' ) ||
! is_array( $block_type->supports ) ||
empty( $block_type->supports )
) {
continue;
}
/*
* Extract block support keys that are related to the style properties.
*/
$block_supports = array();
foreach ( self::PROPERTIES_METADATA as $key => $metadata ) {
if ( gutenberg_experimental_get( $block_type->supports, $metadata['support'] ) ) {
$block_supports[] = $key;
}
}
/*
* Skip blocks that don't support anything related to styles.
*/
if ( empty( $block_supports ) ) {
continue;
}
/*
* Assign the selector for the block.
*
* Some blocks can declare multiple selectors:
*
* - core/heading represents the H1-H6 HTML elements
* - core/list represents the UL and OL HTML elements
* - core/group is meant to represent DIV and other HTML elements
*
* Some other blocks don't provide a selector,
* so we generate a class for them based on their name:
*
* - 'core/group' => '.wp-block-group'
* - 'my-custom-library/block-name' => '.wp-block-my-custom-library-block-name'
*
* Note that, for core blocks, we don't add the `core/` prefix to its class name.
* This is for historical reasons, as they come with a class without that infix.
*
*/
if (
isset( $block_type->supports['__experimentalSelector'] ) &&
is_string( $block_type->supports['__experimentalSelector'] )
) {
self::$blocks_metadata[ $block_name ] = array(
'selector' => $block_type->supports['__experimentalSelector'],
'supports' => $block_supports,
);
} elseif (
isset( $block_type->supports['__experimentalSelector'] ) &&
is_array( $block_type->supports['__experimentalSelector'] )
) {
foreach ( $block_type->supports['__experimentalSelector'] as $key => $selector_metadata ) {
if ( ! isset( $selector_metadata['selector'] ) ) {
continue;
}
self::$blocks_metadata[ $key ] = array(
'selector' => $selector_metadata['selector'],
'supports' => $block_supports,
);
}
} else {
self::$blocks_metadata[ $block_name ] = array(
'selector' => '.wp-block-' . str_replace( '/', '-', str_replace( 'core/', '', $block_name ) ),
'supports' => $block_supports,
);
}
}
return self::$blocks_metadata;
}
/**
* Normalize the subtree according to the given schema.
* This function modifies the given input by removing
* the nodes that aren't valid per the schema.
*
* @param string $key Key of the subtree to normalize.
* @param array $input Whole tree to normalize.
* @param array $schema Schema to use for normalization.
* @param boolean $should_escape Whether the subproperties should be escaped.
*/
private static function process_key( $key, &$input, $schema, $should_escape = false ) {
if ( ! isset( $input[ $key ] ) ) {
return;
}
// Consider valid the input value.
if ( null === $schema[ $key ] ) {
return;
}
if ( ! is_array( $input[ $key ] ) ) {
unset( $input[ $key ] );
return;
}
$input[ $key ] = array_intersect_key(
$input[ $key ],
$schema[ $key ]
);
if ( $should_escape ) {
$subtree = $input[ $key ];
foreach ( $subtree as $property => $value ) {
$name = 'background-color';
if ( 'gradient' === $property ) {
$name = 'background';
}
$result = safecss_filter_attr( "$name: $value" );
if ( '' === $result ) {
unset( $input[ $key ][ $property ] );
}
}
}
if ( 0 === count( $input[ $key ] ) ) {
unset( $input[ $key ] );
}
}
/**
* Given a context, it returns its settings subtree.
*
* @param array $context Context adhering to the theme.json schema.
*
* @return array|null The settings subtree.
*/
private static function extract_settings( $context ) {
if ( empty( $context['settings'] ) ) {
return null;
}
return $context['settings'];
}
/**
* Given a tree, it creates a flattened one
* by merging the keys and binding the leaf values
* to the new keys.
*
* It also transforms camelCase names into kebab-case
* and substitutes '/' by '-'.
*
* This is thought to be useful to generate
* CSS Custom Properties from a tree,
* although there's nothing in the implementation
* of this function that requires that format.
*
* For example, assuming the given prefix is '--wp'
* and the token is '--', for this input tree:
*
* {
* 'some/property': 'value',
* 'nestedProperty': {
* 'sub-property': 'value'
* }
* }
*
* it'll return this output:
*
* {
* '--wp--some-property': 'value',
* '--wp--nested-property--sub-property': 'value'
* }
*
* @param array $tree Input tree to process.
* @param string $prefix Prefix to prepend to each variable. '' by default.
* @param string $token Token to use between levels. '--' by default.
*
* @return array The flattened tree.
*/
private static function flatten_tree( $tree, $prefix = '', $token = '--' ) {
$result = array();
foreach ( $tree as $property => $value ) {
$new_key = $prefix . str_replace(
'/',
'-',
strtolower( preg_replace( '/(?<!^)[A-Z]/', '-$0', $property ) ) // CamelCase to kebab-case.
);
if ( is_array( $value ) ) {
$new_prefix = $new_key . $token;
$result = array_merge(
$result,
self::flatten_tree( $value, $new_prefix, $token )
);
} else {
$result[ $new_key ] = $value;
}
}
return $result;
}
/**
* Returns the style property for the given path.
*
* It also converts CSS Custom Property stored as
* "var:preset|color|secondary" to the form
* "--wp--preset--color--secondary".
*
* @param array $styles Styles subtree.
* @param array $path Which property to process.
*
* @return string Style property value.
*/
private static function get_property_value( $styles, $path ) {
$value = gutenberg_experimental_get( $styles, $path, '' );
if ( '' === $value ) {
return $value;
}
$prefix = 'var:';
$prefix_len = strlen( $prefix );
$token_in = '|';
$token_out = '--';
if ( 0 === strncmp( $value, $prefix, $prefix_len ) ) {
$unwrapped_name = str_replace(
$token_in,
$token_out,
substr( $value, $prefix_len )
);
$value = "var(--wp--$unwrapped_name)";
}
return $value;
}
/**
* Given a context, it extracts the style properties
* and adds them to the $declarations array following the format:
*
* ```php
* array(
* 'name' => 'property_name',
* 'value' => 'property_value,
* )
* ```
*
* Note that this modifies the $declarations in place.
*
* @param array $declarations Holds the existing declarations.
* @param array $context Input context to process.
* @param array $context_supports Supports information for this context.
*/
private static function compute_style_properties( &$declarations, $context, $context_supports ) {
if ( empty( $context['styles'] ) ) {
return;
}
foreach ( self::PROPERTIES_METADATA as $name => $metadata ) {
if ( ! in_array( $name, $context_supports, true ) ) {
continue;
}
$value = self::get_property_value( $context['styles'], $metadata['value'] );
if ( ! empty( $value ) ) {
$kebabcased_name = strtolower( preg_replace( '/(?<!^)[A-Z]/', '-$0', $name ) );
$declarations[] = array(
'name' => $kebabcased_name,
'value' => $value,
);
}
}
}
/**
* Given a context, it extracts its presets
* and adds them to the given input $stylesheet.
*
* Note this function modifies $stylesheet in place.
*
* @param string $stylesheet Input stylesheet to add the presets to.
* @param array $context Context to process.
* @param string $selector Selector wrapping the classes.
*/
private static function compute_preset_classes( &$stylesheet, $context, $selector ) {
if ( self::GLOBAL_SELECTOR === $selector ) {
// Classes at the global level do not need any CSS prefixed,
// and we don't want to increase its specificity.
$selector = '';
}
foreach ( self::PRESETS_METADATA as $preset ) {
$values = gutenberg_experimental_get( $context, $preset['path'], array() );
foreach ( $values as $value ) {
foreach ( $preset['classes'] as $class ) {
$stylesheet .= self::to_ruleset(
$selector . '.has-' . $value['slug'] . '-' . $class['class_suffix'],
array(
array(
'name' => $class['property_name'],
'value' => $value[ $preset['value_key'] ],
),
)
);
}
}
}
}
/**
* Given a context, it extracts the CSS Custom Properties
* for the presets and adds them to the $declarations array
* following the format:
*
* ```php
* array(
* 'name' => 'property_name',
* 'value' => 'property_value,
* )
* ```
*
* Note that this modifies the $declarations in place.
*
* @param array $declarations Holds the existing declarations.
* @param array $context Input context to process.
*/
private static function compute_preset_vars( &$declarations, $context ) {
foreach ( self::PRESETS_METADATA as $preset ) {
$values = gutenberg_experimental_get( $context, $preset['path'], array() );
foreach ( $values as $value ) {
$declarations[] = array(
'name' => '--wp--preset--' . $preset['css_var_infix'] . '--' . $value['slug'],
'value' => $value[ $preset['value_key'] ],
);
}
}
}
/**
* Given a context, it extracts the CSS Custom Properties
* for the custom values and adds them to the $declarations
* array following the format:
*
* ```php
* array(
* 'name' => 'property_name',
* 'value' => 'property_value,
* )
* ```
*
* Note that this modifies the $declarations in place.
*
* @param array $declarations Holds the existing declarations.
* @param array $context Input context to process.
*/
private static function compute_theme_vars( &$declarations, $context ) {
$custom_values = gutenberg_experimental_get( $context, array( 'settings', 'custom' ) );
$css_vars = self::flatten_tree( $custom_values );
foreach ( $css_vars as $key => $value ) {
$declarations[] = array(
'name' => '--wp--custom--' . $key,
'value' => $value,
);
}
}
/**
* Given a selector and a declaration list,
* creates the corresponding ruleset.
*
* To help debugging, will add some space
* if SCRIPT_DEBUG is defined and true.
*
* @param string $selector CSS selector.
* @param array $declarations List of declarations.
*
* @return string CSS ruleset.
*/
private static function to_ruleset( $selector, $declarations ) {
if ( empty( $declarations ) ) {
return '';
}
$ruleset = '';
if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
$declaration_block = array_reduce(
$declarations,
function ( $carry, $element ) {
return $carry .= "\t" . $element['name'] . ': ' . $element['value'] . ";\n"; },
''
);
$ruleset .= $selector . " {\n" . $declaration_block . "}\n";
} else {
$declaration_block = array_reduce(
$declarations,
function ( $carry, $element ) {
return $carry .= $element['name'] . ': ' . $element['value'] . ';'; },
''
);
$ruleset .= $selector . '{' . $declaration_block . '}';
}
return $ruleset;
}
/**
* Converts each context into a list of rulesets
* to be appended to the stylesheet.
* These rulesets contain all the css variables (custom variables and preset variables).
*
* See glossary at https://developer.mozilla.org/en-US/docs/Web/CSS/Syntax
*
* For each context this creates a new ruleset such as:
*
* context-selector {
* --wp--preset--category--slug: value;
* --wp--custom--variable: value;
* }
*
* @return string The new stylesheet.
*/
private function get_css_variables() {
$stylesheet = '';
$metadata = $this->get_blocks_metadata();
foreach ( $this->contexts as $context_name => $context ) {
if ( empty( $metadata[ $context_name ]['selector'] ) ) {
continue;
}
$selector = $metadata[ $context_name ]['selector'];
$declarations = array();
self::compute_preset_vars( $declarations, $context );
self::compute_theme_vars( $declarations, $context );
// Attach the ruleset for style and custom properties.
$stylesheet .= self::to_ruleset( $selector, $declarations );
}
return $stylesheet;
}
/**
* Converts each context into a list of rulesets
* containing the block styles to be appended to the stylesheet.
*
* See glossary at https://developer.mozilla.org/en-US/docs/Web/CSS/Syntax
*
* For each context this creates a new ruleset such as:
*
* context-selector {
* style-property-one: value;
* }
*
* Additionally, it'll also create new rulesets
* as classes for each preset value such as:
*
* .has-value-color {
* color: value;
* }
*
* .has-value-background-color {
* background-color: value;
* }
*
* .has-value-font-size {
* font-size: value;
* }
*
* .has-value-gradient-background {
* background: value;
* }
*
* p.has-value-gradient-background {
* background: value;
* }
*
* @return string The new stylesheet.
*/
private function get_block_styles() {
$stylesheet = '';
$metadata = $this->get_blocks_metadata();
foreach ( $this->contexts as $context_name => $context ) {
if ( empty( $metadata[ $context_name ]['selector'] ) || empty( $metadata[ $context_name ]['supports'] ) ) {
continue;
}
$selector = $metadata[ $context_name ]['selector'];
$supports = $metadata[ $context_name ]['supports'];
$declarations = array();
self::compute_style_properties( $declarations, $context, $supports );
$stylesheet .= self::to_ruleset( $selector, $declarations );
// Attach the rulesets for the classes.
self::compute_preset_classes( $stylesheet, $context, $selector );
}
return $stylesheet;
}
/**
* Returns the existing settings for each context.
*
* Example:
*
* {
* 'global': {
* 'color': {
* 'custom': true
* }
* },
* 'core/paragraph': {
* 'spacing': {
* 'customPadding': true
* }
* }
* }
*
* @return array Settings per context.
*/
public function get_settings() {
return array_filter(
array_map( array( $this, 'extract_settings' ), $this->contexts ),
function ( $element ) {
return null !== $element;
}
);
}
/**
* Returns the stylesheet that results of processing
* the theme.json structure this object represents.
*
* @param string $type Type of stylesheet we want accepts 'all', 'block_styles', and 'css_variables'.
* @return string Stylesheet.
*/
public function get_stylesheet( $type = 'all' ) {
switch ( $type ) {
case 'block_styles':
return $this->get_block_styles();
case 'css_variables':
return $this->get_css_variables();
default:
return $this->get_css_variables() . $this->get_block_styles();
}
}
/**
* Merge new incoming data.
*
* @param WP_Theme_JSON $theme_json Data to merge.
*/
public function merge( $theme_json ) {
$incoming_data = $theme_json->get_raw_data();
foreach ( array_keys( $incoming_data ) as $context ) {
foreach ( array( 'settings', 'styles' ) as $subtree ) {
if ( ! isset( $incoming_data[ $context ][ $subtree ] ) ) {
continue;
}
if ( ! isset( $this->contexts[ $context ][ $subtree ] ) ) {
$this->contexts[ $context ][ $subtree ] = $incoming_data[ $context ][ $subtree ];
continue;
}
foreach ( array_keys( self::SCHEMA[ $subtree ] ) as $leaf ) {
if ( ! isset( $incoming_data[ $context ][ $subtree ][ $leaf ] ) ) {
continue;
}
if ( ! isset( $this->contexts[ $context ][ $subtree ][ $leaf ] ) ) {
$this->contexts[ $context ][ $subtree ][ $leaf ] = $incoming_data[ $context ][ $subtree ][ $leaf ];
continue;
}
$this->contexts[ $context ][ $subtree ][ $leaf ] = array_merge(
$this->contexts[ $context ][ $subtree ][ $leaf ],
$incoming_data[ $context ][ $subtree ][ $leaf ]
);
}
}
}
}
/**
* Retuns the raw data.
*
* @return array Raw data.
*/
public function get_raw_data() {
return $this->contexts;
}
}