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

מתוך אוצר הספרים היהודי השיתופי
קפיצה לניווט קפיצה לחיפוש
אין תקציר עריכה
אין תקציר עריכה
שורה 19: שורה 19:
       var content = textArea.val();
       var content = textArea.val();


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


שורה 26: שורה 26:
       while ((match = anchorRegex.exec(content)) !== null) {
       while ((match = anchorRegex.exec(content)) !== null) {
         var key = match[1].toLowerCase().trim();
         var key = match[1].toLowerCase().trim();
        var value = match[2].trim();
         if (!anchors[key]) {
         if (!anchors[key]) {
           anchors[key] = [];
           anchors[key] = [];
         }
         }
         // שמירת מיקום ההופעה
         // שמירת מיקום ההופעה
         anchors[key].push(match.index);
         anchors[key].push({ value: value, index: match.index });
       }
       }


שורה 37: שורה 38:
           // אם יש יותר מהופעה אחת של אותו ערך
           // אם יש יותר מהופעה אחת של אותו ערך
           var counter = 1;
           var counter = 1;
           positins.forEach(function (pos) {
           positions.forEach(function (pos) {
             // החלפה של כל הופעה כפולה בתבנית {{עוגן|}}
             // החלפה של כל הופעה כפולה בתבנית {{עוגן|}}
             content = content.substring(0, pos) + '{{עוגן|' + key + counter + '|' + key + '}}' + content.substring(pos + match[0].length);
             var replacement = '{{עוגן|' + key + counter + '|' + pos.value + '}}';
            counter++;
            // בדיקה של תיקון הסוגריים והמבנה של התבנית
            if (validateReplacement(replacement)) {
              content = content.substring(0, pos.index) + replacement + content.substring(pos.index + match[0].length);
              counter++;
            }
           });
           });
         }
         }
שורה 49: שורה 54:
       alert('הוחלפו עוגנים כפולים בהצלחה');
       alert('הוחלפו עוגנים כפולים בהצלחה');
     });
     });
    // פונקציה לבדיקת תקינות ההחלפה
    function validateReplacement(replacement) {
      var match = replacement.match(/\{\{עוגן\|[^|]+\|[^}]+\}\}/);
      if (!match) {
        // אם התבנית לא מתאימה למבנה הרגולרי
        alert('תבנית ההחלפה אינה תקינה: ' + replacement);
        return false;
      }
      var numBrackets = (replacement.match(/\{/g) || []).length;
      if (numBrackets != 4) {
        // אם יש יותר או פחות משתי סוגריים בתבנית
        alert('תבנית ההחלפה אינה תקינה: ' + replacement);
        return false;
      }
      return true;
    }
   });
   });
});
});

גרסה מ־20:21, 30 באפריל 2024

// סקריפט לאיתור ותיקון עוגנים כפולים במדיה ויקי
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\|([^|]+)\|([^}]+)\}\}/gi;
      var anchors = {};

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

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

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

    // פונקציה לבדיקת תקינות ההחלפה
    function validateReplacement(replacement) {
      var match = replacement.match(/\{\{עוגן\|[^|]+\|[^}]+\}\}/);
      if (!match) {
        // אם התבנית לא מתאימה למבנה הרגולרי
        alert('תבנית ההחלפה אינה תקינה: ' + replacement);
        return false;
      }
      var numBrackets = (replacement.match(/\{/g) || []).length;
      if (numBrackets != 4) {
        // אם יש יותר או פחות משתי סוגריים בתבנית
        alert('תבנית ההחלפה אינה תקינה: ' + replacement);
        return false;
      }
      return true;
    }
  });
});