Действия

MediaWiki

Common.js: различия между версиями

Материал из ВикиВоины

(Отмена правки 412063, сделанной Laurent Nautilus (обсуждение))
Метка: отмена
Строка 115: Строка 115:
 
     });
 
     });
 
});
 
});
    var paths = document.querySelectorAll('path');
+
        var paths = document.querySelectorAll('path');
    var lis = document.querySelectorAll('.countries li');
+
        var lis = document.querySelectorAll('.countries li');
  
    paths.forEach(function(path) {
+
        paths.forEach(function(path) {
        path.addEventListener('click', function() {
+
            path.addEventListener('click', function() {
            var title = this.getAttribute('title');
+
                var title = this.getAttribute('title');
            var matchingLi = document.querySelector('.countries li.active-country-list');
+
                var matchingLi = document.querySelector('.countries li.active-country-list');
            if (matchingLi && matchingLi.title !== title) {
+
                if (matchingLi && matchingLi.title !== title) {
                matchingLi.classList.remove('active-country-list');
 
            }
 
            var matchingLi = document.querySelector('.countries li[title="' + title + '"]');
 
            if (matchingLi) {
 
                if (matchingLi.classList.contains('active-country-list')) {
 
 
                     matchingLi.classList.remove('active-country-list');
 
                     matchingLi.classList.remove('active-country-list');
                    this.classList.remove('selected-patch-country');
 
                } else {
 
                    matchingLi.classList.add('active-country-list');
 
                    matchingLi.scrollIntoView({ behavior: 'smooth', block: 'center' });
 
                    this.classList.add('selected-patch-country');
 
 
                 }
 
                 }
             }
+
                var matchingLi = document.querySelector('.countries li[title="' + title + '"]');
 +
                if (matchingLi) {
 +
                    if (matchingLi.classList.contains('active-country-list')) {
 +
                        matchingLi.classList.remove('active-country-list');
 +
                        this.classList.remove('selected-patch-country');
 +
                    } else {
 +
                        matchingLi.classList.add('active-country-list');
 +
                        matchingLi.scrollIntoView({ behavior: 'smooth', block: 'center' });
 +
                        this.classList.add('selected-patch-country');
 +
                    }
 +
                }
 +
             });
 
         });
 
         });
    });
 
  
    lis.forEach(function(li) {
+
        lis.forEach(function(li) {
 
         li.addEventListener('click', function() {
 
         li.addEventListener('click', function() {
            var title = this.getAttribute('title');
+
        var title = this.getAttribute('title');
            var matchingPath = document.querySelector('path[title="' + title + '"]');
+
        var matchingPath = document.querySelector('path[title="' + title + '"]');
            if (matchingPath) {
+
        if (matchingPath) {
                var activePaths = document.querySelectorAll('.countries li.active-country-list');
+
            if (matchingPath.classList.contains('selected-patch-country')) {
                activePaths.forEach(function(activePath) {
+
                matchingPath.classList.remove('selected-patch-country');
                    activePath.classList.remove('active-country-list');
+
            } else {
                 });
+
                 // Удаляем класс selected-patch-country у всех путей перед добавлением его новому пути
                 var selectedPaths = document.querySelectorAll('.selected-patch-country');
+
                 document.querySelectorAll('.countries .selected-patch-country').forEach(function(path) {
                selectedPaths.forEach(function(selectedPath) {
+
                     path.classList.remove('selected-patch-country');
                     selectedPath.classList.remove('selected-patch-country');
 
 
                 });
 
                 });
 
                 matchingPath.classList.add('selected-patch-country');
 
                 matchingPath.classList.add('selected-patch-country');
 
             }
 
             }
            var matchingLi = document.querySelector('.countries li.active-country-list');
+
        }
            if (matchingLi && matchingLi.title !== title) {
+
        var matchingLi = document.querySelector('.countries li.active-country-list');
                matchingLi.classList.remove('active-country-list');
+
        if (matchingLi && matchingLi.title !== title) {
            }
+
            matchingLi.classList.remove('active-country-list');
            this.classList.toggle('active-country-list');
+
        }
            this.scrollIntoView({ behavior: 'smooth', block: 'center' });
+
        this.classList.toggle('active-country-list');
        });
+
        this.scrollIntoView({ behavior: 'smooth', block: 'center' });
 
     });
 
     });
 +
});
 +
 
          
 
          
 
    
 
    
 
});
 
});

Версия 13:58, 5 мая 2024

$(document).ready(function() {
function createContentsList($list, $parentItem) {
  $list.children('li').each(function() {
    var $listItem = $(this);
    var classes = $listItem.attr('class').split(' ');
    var tocLevel = classes.find(function(cls) {
      return cls.startsWith('toclevel-');
    });

    if (tocLevel) {
      var $sectionLink = $listItem.children('a').first();
      var sectionTitle = $sectionLink.find('.toctext').text().trim();
      var listItem = $('<li></li>');
      var sectionLink = $('').text(sectionTitle);
      sectionLink.attr('href', $sectionLink.attr('href'));
      listItem.append(sectionLink);

      var $subList = $listItem.children('ul').first();
      if ($subList.length) {
        var subLinkList = $('<ul class="side-nav"></ul>');
        listItem.append(subLinkList);
        createContentsList($subList, subLinkList);
      }

      $parentItem.append(listItem);
    }
  });
}

  if ($(window).width() < 640) {
    var contents = $('<div class="contents-overlay"></div>').hide();
    var sideNav = $('<ul class="side-nav"></ul>');
    var contentsItemWrap = $('<div class="contents-item-wrap"></div>');
    var contentsItemWrapFirst = $('<li></li>');
    var label = $('<label class="sidebar" id="p-tb">Содержание</label>');

    label.appendTo(contentsItemWrapFirst);
    contentsItemWrapFirst.appendTo(sideNav);
    sideNav.appendTo(contents);
    contentsItemWrap.appendTo(sideNav);
    contents.appendTo('.inner-wrap');

    createContentsList($('#toc > ul'), contentsItemWrap);

    var closeButton = $('<button class="close-button"><i class="fa fa-times"></i></button>');
    contents.append(closeButton);

    var isContentsOpen = false; 

    $('.content-button').on('click touchstart', function(e) {
      e.preventDefault();
      contents.toggle();
      updateIconColor();
    });

    $('.close-button').on('click touchstart', function(e) {
      e.preventDefault();
      contents.hide();
      updateIconColor();
    });

    function updateIconColor() {
      var isVisible = contents.is(':visible');
      $('.fa-list-ul').css('color', isVisible ? '#511414' : '');
    }
  } else {
    if ($('#toc').length) {
      var contents = $('<div class="contents side-nav"></div>');
      var isFixed = false;
      var activeSection = null; 

      var linkList = $('<ul class="side-nav"></ul>');
      contents.append(linkList);

      var contentLabel = $('<label class="sidebar" id="p-tb">Содержание</label>');
      var contentListItem = $('<li></li>');
      contentListItem.append(contentLabel);
      linkList.append(contentListItem);

      createContentsList($('#toc > ul'), linkList);

      if (linkList.children().length > 1) {
        $('#sidebar:last').append(contents);
      }

      var sidebarTop = $('.sidebar:last').offset().top;
      var contentsTop = contents.offset().top;
      var windowHeight = $(window).height();

      $(window).scroll(function() {
        var scrollTop = $(window).scrollTop();

        if (scrollTop > sidebarTop && scrollTop > contentsTop && !isFixed) {
          contents.addClass('fixed'); 
          isFixed = true;
        } else if ((scrollTop <= sidebarTop || scrollTop <= contentsTop) && isFixed) {
          contents.removeClass('fixed'); 
          isFixed = false;
        }
      });
    }
  }
  $(window).scroll(function() {
    var currentPosition = $(this).scrollTop();

    $('h2, h3, h4').each(function() {
        var sectionTop = $(this).offset().top;
        var sectionId = $(this).find('.mw-headline').attr('id');

        if (currentPosition >= sectionTop) {
            $('.side-nav li').removeClass('active');

            $('.side-nav li').find('a[href="#' + sectionId + '"]').parent().addClass('active');
        }
    });
});
        var paths = document.querySelectorAll('path');
        var lis = document.querySelectorAll('.countries li');

        paths.forEach(function(path) {
            path.addEventListener('click', function() {
                var title = this.getAttribute('title');
                var matchingLi = document.querySelector('.countries li.active-country-list');
                if (matchingLi && matchingLi.title !== title) {
                    matchingLi.classList.remove('active-country-list');
                }
                var matchingLi = document.querySelector('.countries li[title="' + title + '"]');
                if (matchingLi) {
                    if (matchingLi.classList.contains('active-country-list')) {
                        matchingLi.classList.remove('active-country-list');
                        this.classList.remove('selected-patch-country');
                    } else {
                        matchingLi.classList.add('active-country-list');
                        matchingLi.scrollIntoView({ behavior: 'smooth', block: 'center' });
                        this.classList.add('selected-patch-country');
                    }
                }
            });
        });

        lis.forEach(function(li) {
        li.addEventListener('click', function() {
        var title = this.getAttribute('title');
        var matchingPath = document.querySelector('path[title="' + title + '"]');
        if (matchingPath) {
            if (matchingPath.classList.contains('selected-patch-country')) {
                matchingPath.classList.remove('selected-patch-country');
            } else {
                // Удаляем класс selected-patch-country у всех путей перед добавлением его новому пути
                document.querySelectorAll('.countries .selected-patch-country').forEach(function(path) {
                    path.classList.remove('selected-patch-country');
                });
                matchingPath.classList.add('selected-patch-country');
            }
        }
        var matchingLi = document.querySelector('.countries li.active-country-list');
        if (matchingLi && matchingLi.title !== title) {
            matchingLi.classList.remove('active-country-list');
        }
        this.classList.toggle('active-country-list');
        this.scrollIntoView({ behavior: 'smooth', block: 'center' });
    });
});

        
  
});