PluginProbe
Elementor Website Builder – more than just a page builder / 3.22.2
Elementor Website Builder – more than just a page builder v3.22.2
4.3.1 4.3.0 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 All 454 releases
← All changes | modules/nested-tabs/widgets/nested-tabs.php +207 -158 4.1.0-dev33.22.2 View file →
@@ -16,17 +16,13 @@
16 16 use Elementor\Plugin;
17 17 use Elementor\Repeater;
18 18
19 19 if ( ! defined( 'ABSPATH' ) ) {
20 - exit; // Exit if accessed directly.
20 + exit; // Exit if accessed directly
21 21 }
22 22
23 23 class NestedTabs extends Widget_Nested_Base {
24 24
25 - private $tab_item_settings = [];
26 - private $optimized_markup = null;
27 - private $widget_container_selector = '';
28 -
29 25 public function get_name() {
30 26 return 'nested-tabs';
31 27 }
32 28
@@ -41,29 +37,13 @@
41 37 public function get_keywords() {
42 38 return [ 'nested', 'tabs', 'accordion', 'toggle' ];
43 39 }
44 40
45 - public function get_style_depends(): array {
46 - return [ 'widget-nested-tabs' ];
47 - }
48 -
49 - public function has_widget_inner_wrapper(): bool {
50 - return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' );
51 - }
52 -
53 - public function show_in_panel(): bool {
54 - return Plugin::$instance->experiments->is_feature_active( 'nested-elements', true );
55 - }
56 -
57 41 protected function tab_content_container( int $index ) {
58 42 return [
59 43 'elType' => 'container',
60 44 'settings' => [
61 - '_title' => sprintf(
62 - /* translators: %d: Tab index. */
63 - __( 'Tab #%d', 'elementor' ),
64 - $index
65 - ),
45 + '_title' => sprintf( __( 'Tab #%s', 'elementor' ), $index ),
66 46 'content_width' => 'full',
67 47 ],
68 48 ];
69 49 }
@@ -80,9 +60,8 @@
80 60 return 'tab_title';
81 61 }
82 62
83 63 protected function get_default_children_title() {
84 - /* translators: %d: Tab index. */
85 64 return esc_html__( 'Tab #%d', 'elementor' );
86 65 }
87 66
88 67 protected function get_default_children_placeholder_selector() {
@@ -93,21 +72,16 @@
93 72 return 'elementor-widget-n-tabs';
94 73 }
95 74
96 75 protected function register_controls() {
97 - if ( null === $this->optimized_markup ) {
98 - $this->optimized_markup = Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' ) && ! $this->has_widget_inner_wrapper();
99 - $this->widget_container_selector = $this->optimized_markup ? '' : ' > .elementor-widget-container';
100 - }
101 -
102 76 $start = is_rtl() ? 'right' : 'left';
103 77 $end = is_rtl() ? 'left' : 'right';
104 78 $start_logical = is_rtl() ? 'end' : 'start';
105 79 $end_logical = is_rtl() ? 'start' : 'end';
106 - $heading_selector_non_touch_device = "{{WRAPPER}}.elementor-widget-n-tabs{$this->widget_container_selector} > .e-n-tabs[data-touch-mode='false'] > .e-n-tabs-heading";
107 - $heading_selector_touch_device = "{{WRAPPER}}.elementor-widget-n-tabs{$this->widget_container_selector} > .e-n-tabs[data-touch-mode='true'] > .e-n-tabs-heading";
108 - $heading_selector = "{{WRAPPER}}.elementor-widget-n-tabs{$this->widget_container_selector} > .e-n-tabs > .e-n-tabs-heading";
109 - $content_selector = ":where( {{WRAPPER}}.elementor-widget-n-tabs{$this->widget_container_selector} > .e-n-tabs > .e-n-tabs-content ) > .e-con";
80 + $heading_selector_non_touch_device = '{{WRAPPER}} > .elementor-widget-container > .e-n-tabs[data-touch-mode="false"] > .e-n-tabs-heading';
81 + $heading_selector_touch_device = '{{WRAPPER}} > .elementor-widget-container > .e-n-tabs[data-touch-mode="true"] > .e-n-tabs-heading';
82 + $heading_selector = '{{WRAPPER}} > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading';
83 + $content_selector = ':where( {{WRAPPER}} > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content ) > .e-con';
110 84
111 85 $this->start_controls_section( 'section_tabs', [
112 86 'label' => esc_html__( 'Tabs', 'elementor' ),
113 87 ] );
@@ -183,9 +157,9 @@
183 157 'tab_title' => esc_html__( 'Tab #3', 'elementor' ),
184 158 ],
185 159 ],
186 160 'title_field' => '{{{ tab_title }}}',
187 - 'button_text' => esc_html__( 'Add Tab', 'elementor' ),
161 + 'button_text' => 'Add Tab',
188 162 ] );
189 163
190 164 $styling_block_start = '--n-tabs-direction: column; --n-tabs-heading-direction: row; --n-tabs-heading-width: initial; --n-tabs-title-flex-basis: content; --n-tabs-title-flex-shrink: 0;';
191 165 $styling_block_end = '--n-tabs-direction: column-reverse; --n-tabs-heading-direction: row; --n-tabs-heading-width: initial; --n-tabs-title-flex-basis: content; --n-tabs-title-flex-shrink: 0';
@@ -504,9 +478,9 @@
504 478 [
505 479 'name' => 'tabs_title_background_color',
506 480 'types' => [ 'classic', 'gradient' ],
507 481 'exclude' => [ 'image' ],
508 - 'selector' => "{{WRAPPER}}{$this->widget_container_selector} > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected='false']:not( :hover )",
482 + 'selector' => '{{WRAPPER}} > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:not( :hover )',
509 483 'fields_options' => [
510 484 'color' => [
511 485 'label' => esc_html__( 'Background Color', 'elementor' ),
512 486 'selectors' => [
@@ -536,8 +510,9 @@
536 510 $this->add_group_control(
537 511 Group_Control_Box_Shadow::get_type(),
538 512 [
539 513 'name' => 'tabs_title_box_shadow',
514 + 'label' => esc_html__( 'Shadow', 'elementor' ),
540 515 'separator' => 'after',
541 516 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"false\"]:not( :hover )",
542 517 ]
543 518 );
@@ -594,8 +569,9 @@
594 569 $this->add_group_control(
595 570 Group_Control_Box_Shadow::get_type(),
596 571 [
597 572 'name' => 'tabs_title_box_shadow_hover',
573 + 'label' => esc_html__( 'Shadow', 'elementor' ),
598 574 'separator' => 'after',
599 575 'selector' => "{$heading_selector_non_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover",
600 576 ]
601 577 );
@@ -678,8 +654,9 @@
678 654 $this->add_group_control(
679 655 Group_Control_Box_Shadow::get_type(),
680 656 [
681 657 'name' => 'tabs_title_box_shadow_active',
658 + 'label' => esc_html__( 'Shadow', 'elementor' ),
682 659 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"true\"], {$heading_selector_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover",
683 660 ]
684 661 );
685 662
@@ -758,8 +735,13 @@
758 735 Group_Control_Text_Shadow::get_type(),
759 736 [
760 737 'name' => 'title_text_shadow',
761 738 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"false\"]:not( :hover )",
739 + 'fields_options' => [
740 + 'text_shadow_type' => [
741 + 'label' => esc_html__( 'Shadow', 'elementor' ),
742 + ],
743 + ],
762 744 ]
763 745 );
764 746
765 747 $this->add_group_control(
@@ -766,8 +748,13 @@
766 748 Group_Control_Text_Stroke::get_type(),
767 749 [
768 750 'name' => 'title_text_stroke',
769 751 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"false\"]:not( :hover ) :is( span, a, i )",
752 + 'fields_options' => [
753 + 'text_stroke_type' => [
754 + 'label' => esc_html__( 'Stroke', 'elementor' ),
755 + ],
756 + ],
770 757 ]
771 758 );
772 759
773 760 $this->end_controls_tab();
@@ -794,8 +781,14 @@
794 781 Group_Control_Text_Shadow::get_type(),
795 782 [
796 783 'name' => 'title_text_shadow_hover',
797 784 'selector' => "{$heading_selector_non_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover",
785 + 'fields_options' => [
786 + 'text_shadow_type' => [
787 + 'label' => esc_html__( 'Shadow', 'elementor' ),
788 + ],
789 + ],
790 +
798 791 ]
799 792 );
800 793
801 794 $this->add_group_control(
@@ -802,8 +795,13 @@
802 795 Group_Control_Text_Stroke::get_type(),
803 796 [
804 797 'name' => 'title_text_stroke_hover',
805 798 'selector' => "{$heading_selector_non_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover :is( span, a, i )",
799 + 'fields_options' => [
800 + 'text_stroke_type' => [
801 + 'label' => esc_html__( 'Stroke', 'elementor' ),
802 + ],
803 + ],
806 804 ]
807 805 );
808 806
809 807 $this->end_controls_tab();
@@ -830,8 +828,13 @@
830 828 Group_Control_Text_Shadow::get_type(),
831 829 [
832 830 'name' => 'title_text_shadow_active',
833 831 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"true\"], {$heading_selector_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover",
832 + 'fields_options' => [
833 + 'text_shadow_type' => [
834 + 'label' => esc_html__( 'Shadow', 'elementor' ),
835 + ],
836 + ],
834 837 ]
835 838 );
836 839
837 840 $this->add_group_control(
@@ -838,8 +841,13 @@
838 841 Group_Control_Text_Stroke::get_type(),
839 842 [
840 843 'name' => 'title_text_stroke_active',
841 844 'selector' => "{$heading_selector} > .e-n-tab-title[aria-selected=\"true\"] :is( span, a, i ), {$heading_selector_touch_device} > .e-n-tab-title[aria-selected=\"false\"]:hover :is( span, a, i )",
845 + 'fields_options' => [
846 + 'text_stroke_type' => [
847 + 'label' => esc_html__( 'Stroke', 'elementor' ),
848 + ],
849 + ],
842 850 ]
843 851 );
844 852
845 853 $this->end_controls_tab();
@@ -1064,9 +1072,9 @@
1064 1072
1065 1073 $this->end_controls_section();
1066 1074 }
1067 1075
1068 - protected function render_tab_titles_html( $item_settings ): void {
1076 + protected function render_tab_titles_html( $item_settings ): string {
1069 1077 $setting_key = $this->get_repeater_setting_key( 'tab_title', 'tabs', $item_settings['index'] );
1070 1078 $title = $item_settings['item']['tab_title'];
1071 1079 $css_classes = [ 'e-n-tab-title' ];
1072 1080
@@ -1075,9 +1083,8 @@
1075 1083 }
1076 1084
1077 1085 $this->add_render_attribute( $setting_key, [
1078 1086 'id' => $item_settings['tab_id'],
1079 - 'data-tab-title-id' => $item_settings['tab_title_id'],
1080 1087 'class' => $css_classes,
1081 1088 'aria-selected' => 1 === $item_settings['tab_count'] ? 'true' : 'false',
1082 1089 'data-tab-index' => $item_settings['tab_count'],
1083 1090 'role' => 'tab',
@@ -1084,41 +1091,51 @@
1084 1091 'tabindex' => 1 === $item_settings['tab_count'] ? '0' : '-1',
1085 1092 'aria-controls' => $item_settings['container_id'],
1086 1093 'style' => '--n-tabs-title-order: ' . $item_settings['tab_count'] . ';',
1087 1094 ] );
1095 +
1096 + $rendered_icons = $this->maybe_render_tab_icons_html( $item_settings );
1097 +
1098 + ob_start();
1088 1099 ?>
1089 - <button <?php $this->print_render_attribute_string( $setting_key ); ?>>
1090 - <?php $this->maybe_render_tab_icons_html( $item_settings ); ?>
1091 - <span <?php $this->print_render_attribute_string( 'tab-title-text' ); ?>>
1092 - <?php echo wp_kses_post( $title ); ?>
1093 - </span>
1094 - </button>
1100 + <button <?php $this->print_render_attribute_string( $setting_key ); ?>>
1101 + <?php echo $rendered_icons; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1102 + <span <?php $this->print_render_attribute_string( 'tab-title-text' ); ?>>
1103 + <?php echo wp_kses_post( $title ); ?>
1104 + </span>
1105 + </button>
1095 1106 <?php
1107 + return ob_get_clean();
1096 1108 }
1097 1109
1098 - protected function maybe_render_tab_icons_html( $item_settings ): void {
1110 + protected function maybe_render_tab_icons_html( $item_settings ): string {
1099 1111 $icon_settings = $item_settings['item']['tab_icon'];
1100 1112
1101 1113 if ( empty( $icon_settings['value'] ) ) {
1102 - return;
1114 + return '';
1103 1115 }
1104 1116
1105 - $active_icon_settings = $this->is_active_icon_exist( $item_settings['item'] )
1106 - ? $item_settings['item']['tab_icon_active']
1107 - : $icon_settings;
1117 + $icon_html = Icons_Manager::try_get_icon_html( $icon_settings, [ 'aria-hidden' => 'true' ] );
1118 + $icon_active_html = $icon_html;
1119 +
1120 + if ( $this->is_active_icon_exist( $item_settings['item'] ) ) {
1121 + $icon_active_html = Icons_Manager::try_get_icon_html( $item_settings['item']['tab_icon_active'], [ 'aria-hidden' => 'true' ] );
1122 + }
1123 +
1124 + ob_start();
1108 1125 ?>
1109 1126 <span <?php $this->print_render_attribute_string( 'tab-icon' ); ?>>
1110 - <?php Icons_Manager::render_icon( $icon_settings, [ 'aria-hidden' => 'true' ] ); ?>
1111 - <?php Icons_Manager::render_icon( $active_icon_settings, [ 'aria-hidden' => 'true' ] ); ?>
1127 + <?php echo $icon_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1128 + <?php echo $icon_active_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1112 1129 </span>
1113 1130 <?php
1131 + return ob_get_clean();
1114 1132 }
1115 1133
1116 - protected function render_tab_containers_html( $settings ): void {
1117 - foreach ( $settings['tabs'] as $index => $item ) {
1118 - $item_settings = $this->tab_item_settings[ $index ];
1119 - $this->print_child( $item_settings['index'], $item_settings );
1120 - }
1134 + protected function render_tab_containers_html( $item_settings ): string {
1135 + ob_start();
1136 + $this->print_child( $item_settings['index'], $item_settings );
1137 + return ob_get_clean();
1121 1138 }
1122 1139
1123 1140
1124 1141 /**
@@ -1123,9 +1140,9 @@
1123 1140
1124 1141 /**
1125 1142 * Print the content area.
1126 1143 *
1127 - * @param int $index
1144 + * @param int $index
1128 1145 * @param array $item_settings
1129 1146 */
1130 1147 public function print_child( $index, $item_settings = [] ) {
1131 1148 $children = $this->get_children();
@@ -1163,9 +1180,9 @@
1163 1180 }
1164 1181
1165 1182 protected function render() {
1166 1183 $settings = $this->get_settings_for_display();
1167 - $widget_number = $this->get_id_int();
1184 + $widget_number = substr( $this->get_id_int(), 0, 3 );
1168 1185
1169 1186 if ( ! empty( $settings['link'] ) ) {
1170 1187 $this->add_link_attributes( 'elementor-tabs', $settings['link'] );
1171 1188 }
@@ -1178,38 +1195,39 @@
1178 1195
1179 1196 $this->add_render_attribute( 'tab-title-text', 'class', 'e-n-tab-title-text' );
1180 1197 $this->add_render_attribute( 'tab-icon', 'class', 'e-n-tab-icon' );
1181 1198 $this->add_render_attribute( 'tab-icon-active', 'class', [ 'e-n-tab-icon' ] );
1199 +
1200 + $tab_titles_html = '';
1201 + $tab_containers_html = '';
1202 +
1203 + foreach ( $settings['tabs'] as $index => $item ) {
1204 + $tab_count = $index + 1;
1205 +
1206 + $tab_id = empty( $item['element_id'] )
1207 + ? 'e-n-tabs-title-' . $widget_number . $tab_count
1208 + : $item['element_id'];
1209 +
1210 + $item_settings = [
1211 + 'index' => $index,
1212 + 'tab_count' => $tab_count,
1213 + 'tab_id' => $tab_id,
1214 + 'container_id' => 'e-n-tab-content-' . $widget_number . $tab_count,
1215 + 'widget_number' => $widget_number,
1216 + 'item' => $item,
1217 + 'settings' => $settings,
1218 + ];
1219 +
1220 + $tab_titles_html .= $this->render_tab_titles_html( $item_settings );
1221 + $tab_containers_html .= $this->render_tab_containers_html( $item_settings );
1222 + }
1182 1223 ?>
1183 1224 <div <?php $this->print_render_attribute_string( 'elementor-tabs' ); ?>>
1184 1225 <div class="e-n-tabs-heading" role="tablist">
1185 - <?php
1186 - foreach ( $settings['tabs'] as $index => $item ) {
1187 - $tab_count = $index + 1;
1188 - $tab_title_id = 'e-n-tab-title-' . $widget_number . $tab_count;
1189 - $tab_id = empty( $item['element_id'] )
1190 - ? $tab_title_id
1191 - : $item['element_id'];
1192 -
1193 - $item_settings = [
1194 - 'index' => $index,
1195 - 'tab_count' => $tab_count,
1196 - 'tab_id' => $tab_id,
1197 - 'tab_title_id' => $tab_title_id,
1198 - 'container_id' => 'e-n-tab-content-' . $widget_number . $tab_count,
1199 - 'widget_number' => $widget_number,
1200 - 'item' => $item,
1201 - 'settings' => $settings,
1202 - ];
1203 -
1204 - $this->tab_item_settings[] = $item_settings;
1205 -
1206 - $this->render_tab_titles_html( $item_settings );
1207 - }
1208 - ?>
1226 + <?php echo $tab_titles_html;// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1209 1227 </div>
1210 1228 <div class="e-n-tabs-content">
1211 - <?php $this->render_tab_containers_html( $settings ); ?>
1229 + <?php echo $tab_containers_html;// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1212 1230 </div>
1213 1231 </div>
1214 1232 <?php
1215 1233 }
@@ -1214,111 +1232,142 @@
1214 1232 <?php
1215 1233 }
1216 1234
1217 1235 protected function get_initial_config(): array {
1218 - return array_merge( parent::get_initial_config(), [
1219 - 'support_improved_repeaters' => true,
1220 - 'target_container' => [ '.e-n-tabs-heading' ],
1221 - 'node' => 'button',
1222 - ] );
1236 + if ( Plugin::$instance->experiments->is_feature_active( 'e_nested_atomic_repeaters' ) ) {
1237 + return array_merge( parent::get_initial_config(), [
1238 + 'support_improved_repeaters' => true,
1239 + 'target_container' => [ '.e-n-tabs-heading' ],
1240 + 'node' => 'button',
1241 + ] );
1242 + }
1243 +
1244 + return parent::get_initial_config();
1223 1245 }
1224 1246
1225 1247 protected function content_template_single_repeater_item() {
1226 1248 ?>
1227 1249 <#
1228 - const tabIndex = view.collection.length,
1229 - elementUid = view.getIDInt().toString(),
1230 - item = data,
1231 - hoverAnimationSetting = view?.container?.settings?.attributes?.hover_animation;
1232 - hoverAnimationClass = hoverAnimationSetting
1233 - ? `elementor-animation-${ hoverAnimationSetting }`
1234 - : '';
1235 - #>
1236 - <?php $this->content_template_single_item( '{{ tabIndex }}', '{{ item }}', '{{ elementUid }}', '{{ hoverAnimationClass }}' );
1237 - }
1250 + const tabCount = view.collection.length + 1,
1251 + elementUid = view.getIDInt().toString().substring( 0, 3 ) + tabCount,
1252 + tabIcon = elementor.helpers.renderIcon( view, data.tab_icon, { 'aria-hidden': true }, 'i' , 'object' );
1238 1253
1239 - protected function content_template() {
1240 - ?>
1241 - <# const elementUid = view.getIDInt().toString(); #>
1242 - <div class="e-n-tabs" data-widget-number="{{ elementUid }}" aria-label="<?php echo esc_html__( 'Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.', 'elementor' ); ?>">
1243 - <# if ( settings['tabs'] ) { #>
1244 - <div class="e-n-tabs-heading" role="tablist">
1245 - <# _.each( settings['tabs'], function( item, index ) {
1246 - const tabIndex = index,
1247 - hoverAnimationSetting = settings['hover_animation'],
1248 - hoverAnimationClass = hoverAnimationSetting
1249 - ? `elementor-animation-${ hoverAnimationSetting }`
1250 - : '';
1251 - #>
1252 - <?php $this->content_template_single_item( '{{ tabIndex }}', '{{ item }}', '{{ elementUid }}', '{{ hoverAnimationClass }}' ); ?>
1253 - <# } ); #>
1254 - </div>
1255 - <div class="e-n-tabs-content"></div>
1256 - <# } #>
1257 - </div>
1258 - <?php
1259 - }
1254 + let tabActiveIcon = tabIcon,
1255 + tabId = 'e-n-tab-title-' + elementUid;
1260 1256
1261 - private function content_template_single_item( $tab_index, $item, $element_uid, $hover_animation_class ) {
1262 - ?>
1263 - <#
1264 - const tabCount = tabIndex + 1,
1265 - tabTitleId = 'e-n-tab-title-' + elementUid + tabCount,
1266 - tabId = item.element_id
1267 - ? item.element_id
1268 - : tabTitleId,
1269 - tabUid = elementUid + tabCount,
1270 - tabIcon = elementor.helpers.renderIcon( view, item.tab_icon, { 'aria-hidden': true }, 'i' , 'object' ),
1271 - activeTabIcon = item.tab_icon_active.value
1272 - ? elementor.helpers.renderIcon( view, item.tab_icon_active, { 'aria-hidden': true }, 'i' , 'object' )
1273 - : tabIcon,
1274 - escapedHoverAnimationClass = _.escape( hoverAnimationClass );
1257 + if ( '' !== data.tab_icon_active.value ) {
1258 + tabActiveIcon = elementor.helpers.renderIcon( view, data.tab_icon_active, { 'aria-hidden': true }, 'i' , 'object' );
1259 + }
1275 1260
1276 - view.addRenderAttribute( 'tab-title', {
1277 - 'id': tabId,
1278 - 'data-tab-title-id': tabTitleId,
1279 - 'class': [ 'e-n-tab-title',escapedHoverAnimationClass ],
1261 + const tabWrapperKey = {
1262 + 'id': 'e-n-tab-title-' + elementUid,
1263 + 'class': [ 'e-n-tab-title' ],
1280 1264 'data-tab-index': tabCount,
1281 1265 'role': 'tab',
1282 1266 'aria-selected': 1 === tabCount ? 'true' : 'false',
1283 1267 'tabindex': 1 === tabCount ? '0' : '-1',
1284 - 'aria-controls': 'e-n-tab-content-' + tabUid,
1268 + 'aria-controls': 'e-n-tab-content-' + elementUid,
1285 1269 'style': '--n-tabs-title-order: ' + tabCount + ';',
1286 - }, null, true );
1270 + };
1287 1271
1288 - view.addRenderAttribute( 'tab-title-text', {
1289 - 'class': [ 'e-n-tab-title-text' ],
1272 + const tabIconKey = {
1273 + 'class': [ 'e-n-tab-icon' ],
1290 1274 'data-binding-type': 'repeater-item',
1291 1275 'data-binding-repeater-name': 'tabs',
1292 - 'data-binding-setting': [ 'tab_title', 'element_id' ],
1276 + 'data-binding-setting': [ data.tab_icon.value, data.tab_icon_active.value ],
1293 1277 'data-binding-index': tabCount,
1294 - 'data-binding-config': JSON.stringify({
1295 - 'element_id': {
1296 - attr: 'id',
1297 - selector: 'button',
1298 - editType: 'attribute',
1299 - },
1300 - 'tab_title': {
1301 - editType: 'text',
1302 - },
1303 - }),
1304 - }, null, true );
1278 + };
1305 1279
1306 - view.addRenderAttribute( 'tab-icon', {
1307 - 'class': [ 'e-n-tab-icon' ],
1280 + const tabTitleKey = {
1281 + 'class': [ 'e-n-tab-title-text' ],
1308 1282 'data-binding-type': 'repeater-item',
1309 1283 'data-binding-repeater-name': 'tabs',
1284 + 'data-binding-setting': [ 'tab_title' ],
1310 1285 'data-binding-index': tabCount,
1311 - }, null, true );
1286 + };
1287 +
1288 + view.addRenderAttribute( 'button-container', tabWrapperKey, null, true );
1289 + view.addRenderAttribute( 'tab-title-container', tabTitleKey, null, true );
1290 + view.addRenderAttribute( 'tab-icon-key-container', tabIconKey, null, true );
1312 1291 #>
1313 1292
1314 - <button {{{ view.getRenderAttributeString( 'tab-title' ) }}}>
1315 - <# if ( !! item.tab_icon.value ) { #>
1316 - <span {{{ view.getRenderAttributeString( 'tab-icon' ) }}}>{{{ tabIcon.value }}}{{{ activeTabIcon.value }}}</span>
1293 + <button {{{ view.getRenderAttributeString( 'button-container' ) }}}>
1294 + <# if ( data.tab_icon.value ) { #>
1295 + <span {{{ view.getRenderAttributeString( 'tab-icon-key-container' ) }}}>
1296 + {{{ tabIcon.value }}}{{{ tabActiveIcon.value }}}
1297 + </span>
1317 1298 <# } #>
1318 1299
1319 - <span {{{ view.getRenderAttributeString( 'tab-title-text' ) }}}>{{{ item.tab_title }}}</span>
1300 + <span {{{ view.getRenderAttributeString( 'tab-title-container' ) }}}>{{{ data.tab_title }}}</span>
1320 1301 </button>
1302 + <?php
1303 + }
1304 +
1305 + protected function content_template() {
1306 + ?>
1307 + <# const elementUid = view.getIDInt().toString().substr( 0, 3 ); #>
1308 + <div class="e-n-tabs" data-widget-number="{{ elementUid }}" aria-label="<?php echo esc_html__( 'Tabs. Open items with Enter or Space, close with Escape and navigate using the Arrow keys.', 'elementor' ); ?>">
1309 + <# if ( settings['tabs'] ) { #>
1310 + <div class="e-n-tabs-heading" role="tablist">
1311 + <# _.each( settings['tabs'], function( item, index ) {
1312 + const tabCount = index + 1,
1313 + tabUid = elementUid + tabCount,
1314 + tabWrapperKey = tabUid,
1315 + tabTitleKey = 'tab-title-' + tabUid,
1316 + tabIconKey = 'tab-icon-' + tabUid,
1317 + tabIcon = elementor.helpers.renderIcon( view, item.tab_icon, { 'aria-hidden': true }, 'i' , 'object' ),
1318 + hoverAnimationClass = settings['hover_animation'] ? `elementor-animation-${ settings['hover_animation'] }` : '';
1319 +
1320 + let tabActiveIcon = tabIcon,
1321 + tabId = 'e-n-tab-title-' + tabUid;
1322 +
1323 + if ( '' !== item.tab_icon_active.value ) {
1324 + tabActiveIcon = elementor.helpers.renderIcon( view, item.tab_icon_active, { 'aria-hidden': true }, 'i' , 'object' );
1325 + }
1326 +
1327 + if ( '' !== item.element_id ) {
1328 + tabId = item.element_id;
1329 + }
1330 +
1331 + view.addRenderAttribute( tabWrapperKey, {
1332 + 'id': tabId,
1333 + 'class': [ 'e-n-tab-title',hoverAnimationClass ],
1334 + 'data-tab-index': tabCount,
1335 + 'role': 'tab',
1336 + 'aria-selected': 1 === tabCount ? 'true' : 'false',
1337 + 'tabindex': 1 === tabCount ? '0' : '-1',
1338 + 'aria-controls': 'e-n-tab-content-' + tabUid,
1339 + 'style': '--n-tabs-title-order: ' + tabCount + ';',
1340 + } );
1341 +
1342 + view.addRenderAttribute( tabTitleKey, {
1343 + 'class': [ 'e-n-tab-title-text' ],
1344 + 'data-binding-type': 'repeater-item',
1345 + 'data-binding-repeater-name': 'tabs',
1346 + 'data-binding-setting': [ 'tab_title' ],
1347 + 'data-binding-index': tabCount,
1348 + } );
1349 +
1350 + view.addRenderAttribute( tabIconKey, {
1351 + 'class': [ 'e-n-tab-icon' ],
1352 + 'data-binding-type': 'repeater-item',
1353 + 'data-binding-repeater-name': 'tabs',
1354 + 'data-binding-setting': [ 'tab_icon.value', 'tab_icon_active.value' ],
1355 + 'data-binding-index': tabCount,
1356 + } );
1357 + #>
1358 + <button {{{ view.getRenderAttributeString( tabWrapperKey ) }}}>
1359 + <# if ( item.tab_icon.value ) { #>
1360 + <span {{{ view.getRenderAttributeString( tabIconKey ) }}}>{{{ tabIcon.value }}}{{{ tabActiveIcon.value }}}</span>
1361 + <# } #>
1362 +
1363 + <span {{{ view.getRenderAttributeString( tabTitleKey ) }}}>{{{ item.tab_title }}}</span>
1364 + </button>
1365 + <# } ); #>
1366 + </div>
1367 + <div class="e-n-tabs-content"></div>
1368 + <# } #>
1369 + </div>
1321 1370 <?php
1322 1371 }
1323 1372
1324 1373 /**