משתמש:מהדורה קמא/בדיקת עוגנים.js

מתוך אוצר הספרים היהודי השיתופי
קפיצה לניווט קפיצה לחיפוש

הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.

  • פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload), או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
  • גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
  • אינטרנט אקספלורר / אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh), או ללחוץ על צירוף המקשים Ctrl-F5.
  • אופרה: ללחוץ על Ctrl-F5.
// סקריפט לאיתור ותיקון עוגנים כפולים במדיה ויקי
mw.loader.using(['jquery.client'], function () {
  $(function () {
    // יצירת הכפתור
    var button = $('<button type="button">בדוק ותקן עוגנים כפולים</button>');
    button.css({
      marginTop: '10px',
      padding: '5px 10px',
      fontSize: '1rem',
      cursor: 'pointer'
    });

    // הוספת הכפתור לדף
    $('#editform').prepend(button);

    // פעולה שתתבצע עם לחיצה על הכפתור
    button.click(function () {
      var textArea = $('#wpTextbox1');
      var content = textArea.val();

      var anchorRegex = /\{\{(עוגן1?|anchor1?)\|([^}]+)\}\}/gi;
      var anchors = {};

      // אסוף את כל ההופעות של {{עוגן|}} ואת הערך שלהן
      var match;
      while ((match = anchorRegex.exec(content)) !== null) {
        var key = match[2].toLowerCase().trim();
        var template = match[1].toLowerCase().trim();
        if (!anchors[key]) {
          anchors[key] = [];
        }
        // שמירת מיקום ההופעה
        anchors[key].push({ template: template, index: match.index });
      }

      $.each(anchors, function (key, positions) {
        if (positions.length > 1) {
          // אם יש יותר מהופעה אחת של אותו ערך
          var counter = 1;
          positions.forEach(function (pos) {
            // בדיקה אם המתקבל הוא תבנית {{עוגן|}} או {{עוגן1|}}
            var replacement;
            if (pos.template === 'עוגן1' || pos.template === 'anchor1') {
              // אם זו תבנית {{עוגן1|}}
              replacement = '{{עוגן|' + key + counter + '|' + key + '}}';
            } else {
              // אם זו תבנית {{עוגן|}}
              replacement = '{{עוגן|' + key + counter + '|' + key + '}}';
            }
            // החלפה של כל הופעה כפולה בתבנית המתאימה
            content = content.substring(0, pos.index) + replacement + content.substring(pos.index + match[0].length);
            counter++;
          });
        }
      });

      // מעדכן את תיבת הטקסט עם השינויים
      textArea.val(content);
      alert('הוחלפו עוגנים כפולים בהצלחה');
    });
  });
});