PluginProbe
Elementor Website Builder – more than just a page builder / 3.31.4
Elementor Website Builder – more than just a page builder v3.31.4
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | modules/atomic-widgets/styles/atomic-widget-styles.php +28 -60 4.2.43.31.4 View file →
@@ -2,17 +2,15 @@
2 2
3 3 namespace Elementor\Modules\AtomicWidgets\Styles;
4 4
5 5 use Elementor\Core\Base\Document;
6 -use Elementor\Modules\AtomicWidgets\Utils\Utils;
6 +use Elementor\Modules\AtomicWidgets\Cache_Validity;
7 +use Elementor\Modules\AtomicWidgets\Utils;
7 8 use Elementor\Modules\GlobalClasses\Utils\Atomic_Elements_Utils;
8 -use Elementor\Utils as ElementorUtils;
9 9 use Elementor\Plugin;
10 10
11 11 class Atomic_Widget_Styles {
12 12 const STYLES_KEY = 'local';
13 - const CONTEXT_FRONTEND = 'frontend';
14 - const CONTEXT_PREVIEW = 'preview';
15 13
16 14 public function register_hooks() {
17 15 add_action( 'elementor/atomic-widgets/styles/register', function( Atomic_Styles_Manager $styles_manager, array $post_ids ) {
18 16 $this->register_styles( $styles_manager, $post_ids );
@@ -18,10 +16,9 @@
18 16 $this->register_styles( $styles_manager, $post_ids );
19 17 }, 30, 2 );
20 18
21 19 add_action( 'elementor/document/after_save', fn( Document $document ) => $this->invalidate_cache(
22 - [ $document->get_main_post()->ID ],
23 - $this->get_context( ! Utils::is_post_published( $document ) )
20 + [ $document->get_main_post()->ID ]
24 21 ), 20, 2 );
25 22
26 23 add_action(
27 24 'elementor/core/files/clear_cache',
@@ -26,36 +23,40 @@
26 23 add_action(
27 24 'elementor/core/files/clear_cache',
28 25 fn() => $this->invalidate_cache(),
29 26 );
30 -
31 - add_action(
32 - 'deleted_post',
33 - fn( $post_id ) => $this->invalidate_cache( [ $post_id ] )
34 - );
35 -
36 - add_action( 'update_option__elementor_pro_license_v2_data', fn() => Plugin::$instance->files_manager->clear_cache() );
37 - add_action( 'delete_option__elementor_pro_license_v2_data', fn() => Plugin::$instance->files_manager->clear_cache() );
38 27 }
39 28
40 29 private function register_styles( Atomic_Styles_Manager $styles_manager, array $post_ids ) {
41 - $context = $this->get_context( Plugin::$instance->preview->is_editor_or_preview() );
42 -
43 30 foreach ( $post_ids as $post_id ) {
44 31 $get_styles = fn() => $this->parse_post_styles( $post_id );
45 32
46 - $styles_manager->register( [ self::STYLES_KEY, $post_id, $context ], $get_styles );
33 + $style_key = $this->get_style_key( $post_id );
34 +
35 + $styles_manager->register( $style_key, $get_styles, [ self::STYLES_KEY, $post_id ] );
47 36 }
48 37 }
49 38
50 39 private function parse_post_styles( $post_id ) {
40 + $document = Plugin::$instance->documents->get_doc_for_frontend( $post_id );
41 +
42 + if ( ! $document ) {
43 + return [];
44 + }
45 +
46 + $elements_data = $document->get_elements_data();
47 +
48 + if ( empty( $elements_data ) ) {
49 + return [];
50 + }
51 +
51 52 $post_styles = [];
52 53
53 - Utils::traverse_post_elements( $post_id, function( $element_data ) use ( &$post_styles ) {
54 + Plugin::$instance->db->iterate_data( $elements_data, function( $element_data ) use ( &$post_styles ) {
54 55 $post_styles = array_merge( $post_styles, $this->parse_element_style( $element_data ) );
55 - } );
56 + });
56 57
57 - return self::get_license_based_filtered_styles( $post_styles );
58 + return $post_styles;
58 59 }
59 60
60 61 private function parse_element_style( array $element_data ) {
61 62 $element_type = Atomic_Elements_Utils::get_element_type( $element_data );
@@ -67,55 +68,22 @@
67 68
68 69 return $element_data['styles'] ?? [];
69 70 }
70 71
71 - private function invalidate_cache( ?array $post_ids = null, ?string $context = null ) {
72 + private function invalidate_cache( ?array $post_ids = null ) {
73 + $cache_validity = new Cache_Validity();
74 +
72 75 if ( empty( $post_ids ) ) {
73 - do_action( 'elementor/atomic-widgets/styles/clear', [ self::STYLES_KEY ] );
76 + $cache_validity->invalidate( [ self::STYLES_KEY ] );
74 77
75 78 return;
76 79 }
77 80
78 - $is_post_status_publish = self::CONTEXT_FRONTEND === $context;
79 -
80 - // When a user publishes a post, we should invalidate the styles of the draft too
81 81 foreach ( $post_ids as $post_id ) {
82 - do_action( 'elementor/atomic-widgets/styles/clear',
83 - empty( $context ) || $is_post_status_publish
84 - ? [ self::STYLES_KEY, $post_id ]
85 - : [ self::STYLES_KEY, $post_id, $context ]
86 - );
82 + $cache_validity->invalidate( [ self::STYLES_KEY, $post_id ] );
87 83 }
88 84 }
89 85
90 - private function get_context( bool $is_preview ) {
91 - return $is_preview ? self::CONTEXT_PREVIEW : self::CONTEXT_FRONTEND;
92 - }
93 -
94 - public static function get_license_based_filtered_styles( $styles ) {
95 - if ( ElementorUtils::has_pro() && version_compare( ELEMENTOR_PRO_VERSION, '3.35', '<' ) ) {
96 - return $styles;
97 - }
98 -
99 - return apply_filters(
100 - 'elementor/atomic_widgets/editor_data/element_styles',
101 - self::remove_custom_css_from_styles( $styles ),
102 - $styles
103 - );
104 - }
105 -
106 - public static function remove_custom_css_from_styles( array $styles ) {
107 - if ( empty( $styles ) ) {
108 - return $styles;
109 - }
110 -
111 - foreach ( $styles as $style_id => $style ) {
112 - if ( isset( $style['variants'] ) && is_array( $style['variants'] ) ) {
113 - foreach ( $style['variants'] as $variant_index => $variant ) {
114 - unset( $styles[ $style_id ]['variants'][ $variant_index ]['custom_css'] );
115 - }
116 - }
117 - }
118 -
119 - return $styles;
86 + private function get_style_key( $post_id ) {
87 + return self::STYLES_KEY . '-' . $post_id;
120 88 }
121 89 }