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

בדיקה
(כך)
תגית: שוחזרה
(בדיקה)
 
(13 גרסאות ביניים של אותו משתמש אינן מוצגות)
שורה 14: שורה 14:
     $('#editform').prepend(button);
     $('#editform').prepend(button);


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


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


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


  $.each(anchors, function (key, data) {
      $.each(anchors, function (key, data) {
    if (data.count > 1) {
        if (data.count > 1) {
      // אם יש יותר מהופעה אחת של אותו ערך
          // אם יש יותר מהופעה אחת של אותו ערך
      var counter = 1;
          var counter = 1;
      var templateToUse = (data.template === 'עוגן1' || data.template === 'anchor1') ? 'עוגן' : data.template;
          var templateToUse = (data.template === 'עוגן1' || data.template === 'anchor1') ? 'עוגן' : data.template;
      data.replacements.slice(1).forEach(function (replacement, index) { // נתקן רק מההופעה השנייה והלאה
          data.replacements.forEach(function (replacement, index) {
        var replacementCount = index + 2;
            var replacementCount = index + 1;
        var newKey = key + replacementCount;
            var newKey = key + replacementCount;
        var newReplacement = '{{' + templateToUse + '|' + key + counter + '|' + key + '}}';
            var newReplacement = '{{' + templateToUse + '|' + key + counter + '|' + key + '}}';
        content = content.replace(replacement, newReplacement);
            content = content.replace(replacement, newReplacement);
        counter++;
            counter++;
          });
        }
       });
       });
    }
  // חילוף כל המופעים
  });
content = content.replace(/\{\{עוגן\|[^|]+?1/g, '{{עוגן1');


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