PluginProbe
UiCore Elements – Free widgets and templates for Elementor / 1.3.17
UiCore Elements – Free widgets and templates for Elementor v1.3.17
1.3.17 1.3.16 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 41 releases
uicore-elements / includes / utils / animation-component.php

animation-component.php in UiCore Elements – Free widgets and templates for Elementor 1.3.17, at includes/utils/animation-component.php

244 lines 8.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace UiCoreElements\Utils;
4
5 use Elementor\Controls_Manager;
6
7 defined('ABSPATH') || exit();
8
9 trait Animation_Trait
10 {
11
12 private $animation;
13
14 /**
15 * Registers a hover animation control.
16 *
17 * @param string $name The name of the control.
18 * @param array $conditions Control conditions. (optional)
19 * @param array $filter Removes requested animations from the options. (optional)
20 * @param string|null $custom_slug A custom slug for the control. If null, use $name as slug, formating it. (optional)
21 * @param bool $use_new Include new animations not globally available. (optional)
22 * @param string $prefix_class Let you add a custom prefix, but be cautious, the classname `ui-e-item-anim-{animation} will be part of the prefix classname. (optional)
23 *
24 * @return void
25 */
26 function TRAIT_register_hover_animation_control($name, $conditions = [], $filter = [], $custom_slug = null, $use_new = false, $prefix_class = null)
27 {
28 // Custom slug or name converted to slug
29 $slug = isset($custom_slug)
30 ? $custom_slug
31 // using sanitize_title() would create incompatibility problems since it uses hyphens, not underscores
32 : strtolower(preg_replace('/\s+/', '_', preg_replace('/[^a-zA-Z0-9\s]/', '', $name)));
33
34 // Mandatory params
35 $params = [
36 /* translators: %s: control title */
37 'label' => esc_html(sprintf('%s', $name), 'uicore-elements'),
38 'type' => Controls_Manager::SELECT,
39 'default' => '',
40 'content_classes' => 'elementor-control-field-select-small',
41 'options' => $this->uicore_get_animations($filter, $use_new),
42 ];
43
44 // Optional params
45 if (isset($conditions)) {
46 $params['condition'] = $conditions;
47 }
48 if (isset($prefix_class)) {
49 $params['prefix_class'] = $prefix_class;
50 $params['render_type'] = 'template';
51 }
52
53 $this->add_control($slug, $params);
54 }
55 // Entrance Animations Controls.
56 function TRAIT_register_entrance_animations_controls()
57 {
58 $this->add_control(
59 'animate_items',
60 [
61 'label' => esc_html__('Animate each Item', 'uicore-elements'),
62 'type' => Controls_Manager::SWITCHER,
63 'default' => '',
64 'return_value' => 'ui-e-grid-animate',
65 'render_type' => 'none',
66 'frontend_available' => true,
67 ]
68 );
69 $this->add_control(
70 'animate_item_type',
71 [
72 'label' => __('Animation', 'uicore-elements'),
73 'type' => Controls_Manager::SELECT,
74 'default' => 'fadeInUp',
75 'options' => [
76 'fadeInUp' => __('Fade In Up', 'uicore-elements'),
77 'fadeInDown' => __('Fade In Down', 'uicore-elements'),
78 'fadeInLeft' => __('Fade In Left', 'uicore-elements'),
79 'fadeInRight' => __('Fade In Right', 'uicore-elements'),
80 'fadeIn' => __('Fade In', 'uicore-elements'),
81 'zoomIn' => __('Zoom In', 'uicore-elements'),
82 ],
83 'condition' => array(
84 'animate_items' => 'ui-e-grid-animate',
85 ),
86 'frontend_available' => true,
87 ]
88 );
89 $this->add_control(
90 'animate_item_speed',
91 [
92 'label' => __('Speed', 'uicore-elements'),
93 'type' => Controls_Manager::SLIDER,
94 'condition' => array(
95 'animate_items' => 'ui-e-grid-animate',
96 ),
97 'default' => [
98 'unit' => 'px',
99 'size' => 1500,
100 ],
101 'range' => [
102 'px' => [
103 'min' => 10,
104 'max' => 3000,
105 'step' => 50,
106 ],
107 ],
108 'selectors' => [
109 '{{WRAPPER}}' => '---ui-speed: {{SIZE}}ms',
110 ],
111 ]
112 );
113 $this->add_control(
114 'animate_item_delay',
115 [
116 'label' => __('Animation Delay', 'uicore-elements'),
117 'type' => Controls_Manager::SLIDER,
118 'default' => [
119 'unit' => 'px',
120 'size' => 200,
121 ],
122 'range' => [
123 'px' => [
124 'min' => 0,
125 'max' => 1500,
126 'step' => 10,
127 ],
128 ],
129 'selectors' => [
130 '{{WRAPPER}}' => '---ui-delay: {{SIZE}}ms',
131 ],
132 'condition' => [
133 'animate_items' => 'ui-e-grid-animate',
134 ],
135 ]
136 );
137 $this->add_control(
138 'animate_item_stagger',
139 [
140 'label' => __('Stagger', 'uicore-elements'),
141 'type' => Controls_Manager::SLIDER,
142 'condition' => array(
143 'animate_items' => 'ui-e-grid-animate',
144 ),
145 'default' => [
146 'unit' => 'px',
147 'size' => 16,
148 ],
149 'range' => [
150 'px' => [
151 'min' => 4,
152 'max' => 500,
153 'step' => 2,
154 ],
155 ],
156 'selectors' => [
157 '{{WRAPPER}}' => '---ui-stagger: {{SIZE}}ms',
158 ],
159 ]
160 );
161 $this->add_control(
162 'hr',
163 [
164 'type' => \Elementor\Controls_Manager::DIVIDER,
165 'condition' => array(
166 'animate_items' => 'ui-e-grid-animate',
167 ),
168 ]
169 );
170 }
171
172 /**
173 * Retrieves the animations list available for the widget.
174 *
175 * @param array $filter_list Optional. An array of animation names to filter the results.
176 * @param bool $use_new Optional. Include new animations not globally available. Default is false.
177 *
178 * @return array The list of animations available for the widget.
179 */
180 function uicore_get_animations($filter_list = [], $use_new = false)
181 {
182 // New animations (transfer to default animation_list only after testing and updating all affected widgets)
183 $new_animations = [
184 'show' => 'Show'
185 ];
186
187 // Solid animations
188 $animation_list = [
189 '' => 'None',
190 'translate' => 'Translate',
191 'zoom' => 'Zoom',
192 'fade' => 'Fade',
193 'underline' => 'Underline',
194 ];
195 $list = [];
196 $animation_list = wp_parse_args($this->animation, $animation_list);
197
198 // Add new animations if requested
199 if ($use_new) {
200 $animation_list = array_merge($animation_list, $new_animations);
201 }
202
203 // Filter the list of animations
204 if (!empty($filter_list)) {
205 $animation_list = array_diff_key($animation_list, array_flip($filter_list));
206 }
207
208 // Format the list of animations, with translated strings, to be used as elementor option's array
209 foreach ($animation_list as $key => $value) {
210 $slug = $key !== '' ? "ui-e-item-anim-$key" : '';
211 $list[$slug] = esc_html(sprintf('%s', $value), 'uicore-elements');
212 }
213
214 return $list;
215 }
216
217 /**
218 * Update an existent animation control with newest animations.
219 *
220 * This method is meant to progressively add new animation to the previous
221 * animations list without impacting all widgets at once. It must be removed
222 * after a given animation is globaly available.
223 *
224 * @param $name The name of the existent control to be updated.
225 * @param array $filter Animation Filter list. (optional)
226 *
227 * @return void
228 */
229 function TRAIT_extend_control_animations($name, $filter = [])
230 {
231
232 // Get animations with new animations enabled
233 $animations = $this->uicore_get_animations($filter, true);
234
235 // Update the required control
236 $this->update_control(
237 $name,
238 [
239 'options' => $animations
240 ]
241 );
242 }
243 }
244