PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
ablocks / includes / classes / css-generator-v2.php

css-generator-v2.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.14.0, at includes/classes/css-generator-v2.php

319 lines 11.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace ABlocks\Classes;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 use ABlocks\Classes\AssetsGenerator;
9 use ABlocks\Classes\FontStack;
10
11 class CssGeneratorV2 {
12 private $custom_css = '';
13 private $parent_class;
14 private $class_styles = [];
15
16 public function __construct( $attributes = [] ) {
17 $this->parent_class = '.ablocks-block-' . $attributes['block_id'];
18 if ( isset( $attributes['_custom_css'] ) ) {
19 $this->custom_css = $attributes['_custom_css'];
20 }
21
22 // Alert - don't touch here
23 if ( isset( $attributes['_margin'] ) ) { // check has advanced tab or not
24 $this->add_class_styles(
25 '{{WRAPPER}}',
26 BlockGlobal::get_wrapper_css( $attributes ),
27 BlockGlobal::get_wrapper_css( $attributes, 'Tablet' ),
28 BlockGlobal::get_wrapper_css( $attributes, 'Mobile' ),
29 $this->custom_device_map( function ( $device ) use ( $attributes ) {
30 return BlockGlobal::get_wrapper_css( $attributes, $device );
31 } )
32 );
33 $this->add_class_styles(
34 '{{WRAPPER}}:hover',
35 BlockGlobal::get_wrapper_hover_css( $attributes ),
36 BlockGlobal::get_wrapper_hover_css( $attributes, 'Tablet' ),
37 BlockGlobal::get_wrapper_hover_css( $attributes, 'Mobile' )
38 );
39 $this->add_class_styles(
40 '{{WRAPPER}}.ablocks-hide-on-desktop,{{WRAPPER}}.ablocks-hide-on-tablet,{{WRAPPER}}.ablocks-hide-on-mobile',
41 BlockGlobal::get_wrapper_device_responsive_css( $attributes ),
42 BlockGlobal::get_wrapper_device_responsive_css( $attributes, 'Tablet' ),
43 BlockGlobal::get_wrapper_device_responsive_css( $attributes, 'Mobile' )
44 );
45 $this->add_class_styles(
46 '{{WRAPPER}}:hover > .ablocks-block-container',
47 BlockGlobal::get_container_hover_css( $attributes ),
48 BlockGlobal::get_container_hover_css( $attributes, 'Tablet' ),
49 BlockGlobal::get_container_hover_css( $attributes, 'Mobile' )
50 );
51 $this->add_class_styles(
52 '{{WRAPPER}} > .ablocks-block-container',
53 BlockGlobal::get_container_css( $attributes ),
54 BlockGlobal::get_container_css( $attributes, 'Tablet' ),
55 BlockGlobal::get_container_css( $attributes, 'Mobile' ),
56 $this->custom_device_map( function ( $device ) use ( $attributes ) {
57 return BlockGlobal::get_container_css( $attributes, $device );
58 } )
59 );
60 }//end if
61 }
62
63 public function add_class_styles( $class_name, $desktop_styles, $tablet_styles = [], $mobile_styles = [], $responsive_styles = [] ) {
64 $this->class_styles[] = [
65 'class_name' => $class_name,
66 'desktop_styles' => $desktop_styles,
67 'tablet_styles' => $tablet_styles,
68 'mobile_styles' => $mobile_styles,
69 // Optional map of custom breakpoints: [ suffix => [ width, styles ] ].
70 'responsive_styles' => $responsive_styles,
71 ];
72 }
73
74 /**
75 * Build the custom-breakpoint style map for a selector from a per-device
76 * builder closure. Only user-registered custom breakpoints (not the built-in
77 * Tablet/Mobile) are included, so the standard path is untouched.
78 */
79 public function custom_device_map( $builder ) {
80 $map = [];
81
82 // Nothing to build when the site registers no custom breakpoints — and
83 // running the phantom probe anyway is not free: it hands every control a
84 // device suffix that has no stored keys, which is what made controls that
85 // read `$value[ 'x' . $device ]` unguarded spray "Undefined array key
86 // …___ablocksphantom___" notices on every page under WP_DEBUG.
87 $custom_devices = [];
88 foreach ( \ABlocks\Helper::get_responsive_devices() as $d ) {
89 if ( $d['width'] <= 0 || 'Tablet' === $d['id'] || 'Mobile' === $d['id'] ) {
90 continue;
91 }
92 $custom_devices[] = $d;
93 }
94 if ( empty( $custom_devices ) ) {
95 return $map;
96 }
97
98 // Phantom baseline: the builder run against a suffix that has no stored
99 // values. Controls that hardcode only Tablet/Mobile defaults emit
100 // "phantom" declarations (e.g. border-width:0) for any unknown suffix;
101 // subtracting the phantom leaves only genuinely-overridden custom values,
102 // with no per-control changes.
103 $phantom = \ABlocks\Helper::call_device_builder( $builder, '__ablocksphantom__' );
104 foreach ( $custom_devices as $d ) {
105 if ( $d['width'] <= 0 || 'Tablet' === $d['id'] || 'Mobile' === $d['id'] ) {
106 continue;
107 }
108 $actual = \ABlocks\Helper::call_device_builder( $builder, $d['suffix'] );
109 $real = [];
110 foreach ( $actual as $prop => $val ) {
111 if ( ! array_key_exists( $prop, $phantom ) || $phantom[ $prop ] !== $val ) {
112 $real[ $prop ] = $val;
113 }
114 }
115 if ( ! empty( $real ) ) {
116 $map[ $d['suffix'] ] = [
117 'width' => (int) $d['width'],
118 'min' => isset( $d['min'] ) ? (int) $d['min'] : 0,
119 'max' => isset( $d['max'] ) ? (int) $d['max'] : (int) $d['width'],
120 'styles' => $real,
121 ];
122 }
123 }
124 return $map;
125 }
126
127 public function generate_css() {
128 $css_output = '';
129
130 foreach ( $this->class_styles as $class_style ) {
131 $desktop_styles = $this->remove_empty_css( $class_style['desktop_styles'] );
132 $tablet_styles = $this->filter_responsive_styles( $desktop_styles, $class_style['tablet_styles'] );
133 $mobile_styles = $this->filter_responsive_styles( array_merge( $desktop_styles, $tablet_styles ), $class_style['mobile_styles'] );
134
135 $desktop_raw = $this->generate_css_for_media_query( 'desktop', $desktop_styles );
136 $tablet_raw = $this->generate_css_for_media_query( 'tablet', $tablet_styles );
137 $mobile_raw = $this->generate_css_for_media_query( 'mobile', $mobile_styles );
138
139 $desktop_css = AssetsGenerator::minify_css( $desktop_raw );
140 $tablet_css = AssetsGenerator::minify_css( $tablet_raw );
141 $mobile_css = AssetsGenerator::minify_css( $mobile_raw );
142
143 $parent_selector = $this->get_parent_selector( $class_style['class_name'] );
144 $css_blocks = [];
145
146 $addToCssBlocks = function ( $mediaQuery, $max_width, $css ) use ( &$css_blocks, $parent_selector ) {
147 if ( ! empty( $css ) ) {
148 $css_blocks[] = ( '' !== $mediaQuery )
149 ? "@media screen and (max-width: $max_width) {\n$parent_selector {\n$css\n}\n}"
150 : "$parent_selector {\n$css\n}";
151 }
152 };
153
154 // Always add desktop CSS
155 $addToCssBlocks( '', '', $desktop_css );
156
157 if ( empty( $class_style['responsive_styles'] ) ) {
158 // Standard path (no custom breakpoints) — unchanged output.
159 // Only add tablet CSS if it differs from desktop
160 if ( $tablet_raw !== $desktop_raw ) {
161 $addToCssBlocks( 'tablet', $this->get_breakpoint( 'tablet' ), $tablet_css );
162 }
163
164 // Only add mobile CSS if it differs from desktop AND tablet
165 if ( $mobile_raw !== $tablet_raw ) {
166 $addToCssBlocks( 'mobile', $this->get_breakpoint( 'mobile' ), $mobile_css );
167 }
168 } else {
169 // Custom breakpoints present: emit every breakpoint in
170 // width-descending order (narrowest last so it wins the cascade),
171 // each deduped against what it inherits.
172 $bp_defaults = \ABlocks\Helper::get_breakpoints();
173 $bp_list = [
174 [ 'width' => $bp_defaults['tablet'], 'min' => 0, 'max' => $bp_defaults['tablet'], 'styles' => $class_style['tablet_styles'] ],
175 [ 'width' => $bp_defaults['mobile'], 'min' => 0, 'max' => $bp_defaults['mobile'], 'styles' => $class_style['mobile_styles'] ],
176 ];
177 foreach ( $class_style['responsive_styles'] as $bp ) {
178 $bp_list[] = [
179 'width' => (int) $bp['width'],
180 'min' => isset( $bp['min'] ) ? (int) $bp['min'] : 0,
181 'max' => isset( $bp['max'] ) ? (int) $bp['max'] : (int) $bp['width'],
182 'styles' => $bp['styles'],
183 ];
184 }
185 usort( $bp_list, function ( $a, $b ) {
186 return (int) $b['width'] - (int) $a['width'];
187 } );
188
189 $emitted = [];
190 foreach ( $bp_list as $i => $bp ) {
191 // Dedupe against what this breakpoint inherits — desktop plus every
192 // wider breakpoint whose range contains it — not desktop alone, so an
193 // explicit value that equals desktop's still overrides a wider
194 // custom breakpoint's.
195 $parent = $desktop_styles;
196 for ( $j = 0; $j < $i; $j++ ) {
197 if ( \ABlocks\Helper::breakpoint_contains( $bp_list[ $j ], $bp ) ) {
198 $parent = array_merge( $parent, $emitted[ $j ] );
199 }
200 }
201 $bp_styles = $this->filter_responsive_styles( $parent, $bp['styles'] );
202 $emitted[ $i ] = $bp_styles;
203 $bp_raw = $this->generate_css_for_media_query( 'bp', $bp_styles );
204 if ( '' === trim( $bp_raw ) ) {
205 continue;
206 }
207 $bp_css = AssetsGenerator::minify_css( $bp_raw );
208 $media = \ABlocks\Helper::breakpoint_media_condition( $bp['min'], $bp['max'] );
209 if ( '' === $bp_css || '' === $media ) {
210 continue;
211 }
212 $css_blocks[] = "@media screen and $media {\n$parent_selector {\n$bp_css\n}\n}";
213 }
214 }
215
216 $css_output .= implode( "\n\n", $css_blocks ) . "\n\n";
217 }//end foreach
218
219 $css_output .= $this->get_custom_css();
220
221 return preg_replace( '/\s+/', ' ', $css_output );
222 }
223
224 public function get_custom_css() {
225 return preg_replace( '/\bselector\b/', $this->parent_class, $this->custom_css );
226 }
227 public function generate_css_for_media_query( $media_query, $styles ) {
228 if ( empty( $styles ) ) {
229 return '';
230 }
231 $css_string = implode("\n", array_map(
232 function ( $property, $value ) {
233 // See Helper::esc_css_value(): these values come from block
234 // attributes and land inside an inline <style> element.
235 $property = \ABlocks\Helper::esc_css_value( $property );
236 $value = \ABlocks\Helper::esc_css_value( $value );
237 return "$property: $value;";
238 },
239 array_keys( $styles ),
240 $styles
241 ));
242
243 return $css_string . "\n";
244 }
245
246 public function get_breakpoint( $media_query ) {
247 $bp = \ABlocks\Helper::get_breakpoints();
248 switch ( $media_query ) {
249 case 'tablet':
250 return $bp['tablet'] . 'px';
251 case 'mobile':
252 return $bp['mobile'] . 'px';
253 default:
254 return '1200px';
255 }
256 }
257
258 public function get_parent_selector( $class_name ) {
259 return $this->parent_class ? str_replace( '{{WRAPPER}}', $this->parent_class, $class_name ) : $class_name;
260 }
261 private function remove_empty_css( $base_styles ) {
262 if ( empty( $base_styles ) || ! is_array( $base_styles ) || ( is_array( $base_styles ) && ! count( $base_styles ) ) ) {
263 return [];
264 }
265
266 $styles = [];
267
268 foreach ( $base_styles as $prop => $value ) {
269 if ( 'font-family' === $prop ) {
270 // Safety net for styles that bypass the Typography control and set a
271 // bare family name directly. FontStack leaves finished values alone.
272 $value = FontStack::build( $value );
273 }
274 // Trim value to avoid whitespace-only entries
275 $trimmed = trim( $value );
276 // // Remove if empty, or if it matches only a unit (like 'px', '%', 'em') without any number
277 if ( $trimmed === '' || preg_match( '/^(px|em|rem|vh|vw|vmin|vmax|cm|mm|in|pt|pc|%|s|ms|deg|fr|ch|ex)$/i', $trimmed ) ) {
278 continue;
279 }
280
281 $styles[ $prop ] = $trimmed;
282 }
283
284 return $styles;
285 }
286 private function filter_responsive_styles( $base_styles, $responsive_styles ) {
287 if ( empty( $responsive_styles ) || ! is_array( $responsive_styles ) ) {
288 return [];
289 }
290
291 $difference = [];
292
293 foreach ( $responsive_styles as $prop => $value ) {
294 $trimmed = trim( $value );
295
296 // // Remove if empty, or if it matches only a unit (like 'px', '%', 'em') without any number
297 if ( $trimmed === '' || preg_match( '/^(px|em|rem|vh|vw|vmin|vmax|cm|mm|in|pt|pc|%|s|ms|deg|fr|ch|ex)$/i', $trimmed ) ) {
298 continue;
299 }
300
301 // Only include if the value is different from base styles
302 if ( ! isset( $base_styles[ $prop ] ) || $base_styles[ $prop ] !== $trimmed ) {
303 $difference[ $prop ] = $trimmed;
304 }
305 }
306
307 return $difference;
308 }
309
310
311 public function get_font_family_css( string $font_name, string $category = '' ): string {
312 // Kept for back-compat; the stack is built centrally now.
313 return FontStack::build( $font_name );
314 }
315
316
317 }
318
319