Changes for page APIMacro

Last modified by jklein on 2025/06/24 11:07

From version 25.1
edited by jklein
on 2025/06/02 13:53
Change comment: There is no comment for this version
To version 24.2
edited by jklein
on 2025/06/02 13:50
Change comment: There is no comment for this version

Summary

Details

XWiki.JavaScriptExtension[0]
Code
... ... @@ -3,7 +3,8 @@
3 3   var header = $(this),
4 4   content = header.next('.showhidecontent'),
5 5   effect = header.attr('data-show-effect'),
6 - duration = parseInt(header.attr('data-show-duration')) || 300;
6 + duration = parseInt(header.attr('data-show-duration')) || 300,
7 + arrow = header.find('.showhide-arrow');
7 7  
8 8   if ($.inArray(effect, ['toggle', 'fadeToggle', 'slideToggle']) === -1) {
9 9   effect = 'toggle';
... ... @@ -12,10 +12,12 @@
12 12   var isVisible = content.is(':visible');
13 13   var newState = !isVisible;
14 14  
15 - // Toggle 'open'-Klasse für Rotation
16 - header.toggleClass('open', newState);
16 + // Pfeil wechseln
17 + if (arrow.length) {
18 + arrow.text(newState ? '▼' : '►');
19 + }
17 17  
18 - // Ein-/Ausblenden des Inhalts
21 + // Inhalt ein-/ausklappen
19 19   content.stop()[effect](duration);
20 20   }
21 21  
Name
... ... @@ -1,1 +1,1 @@
1 -APIMacro
1 +APIMacro Script
XWiki.StyleSheetExtension[0]
Code
... ... @@ -20,16 +20,11 @@
20 20  }
21 21  
22 22  .showhide-arrow {
23 - display: inline-block;
24 - transition: transform 0.3s ease;
25 - transform: rotate(0deg);
26 26   font-size: 16px;
24 + font-weight: bold;
27 27   color: #0645ad;
26 + text-align: right;
27 + min-width: 20px;
28 + transition: transform 0.2s ease;
28 28  }
29 29  
30 -/* Wenn Container 'open' ist → Pfeil dreht sich */
31 -.showhide-header.open .showhide-arrow {
32 - transform: rotate(90deg);
33 -}
34 -
35 -
XWiki.WikiMacroClass[0]
Macro code
... ... @@ -27,12 +27,10 @@
27 27   data-show-effect="$effect">
28 28   <div class="showhide-header-flex">
29 29   <div class="showhide-title">$title</div>
30 - <div class="showhide-arrow">&#9654;</div> ## Unicode ▶
30 + <div class="showhide-arrow"></div>
31 31   </div>
32 32  </div>
33 33  {{/html}}
34 -</div>
35 -{{/html}}
36 36  (% class="showhidecontent" #if($id && $id!="")id="showhidecontent${id}" #end#if($xcontext.action != 'edit') style="display: none;"#end %)
37 37  (((
38 38  (((
© Aagon GmbH 2025
Besuchen Sie unsere Aagon-Community