משתמש:מהדורה קמא/בדיקת עוגנים.js: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
מהדורה קמא (שיחה | תרומות) (ניסוי בכתיבת קוד לכפתור טיפול בעוגנים כפולים) |
מהדורה קמא (שיחה | תרומות) אין תקציר עריכה |
||
שורה 1: | שורה 1: | ||
// סקריפט לאיתור ותיקון עוגנים כפולים במדיה ויקי | |||
mw.loader.using(['jquery.client'], function () { | |||
$(function () { | |||
if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit') { | |||
var textArea = $('#wpTextbox1'); | |||
// יצירת כפתור | |||
var button = $('<button type="button">בדוק ותקן עוגנים כפולים</button>'); | |||
button.css({ | |||
marginTop: '10px', | |||
padding: '5px 10px', | |||
fontSize: '1rem', | |||
cursor: 'pointer' | |||
}); | |||
// הוספת הכפתור לדף | |||
textArea.after(button); | |||
// הגדרת פעולת הכפתור | |||
button.click(function () { | |||
mw.loader.using(['jquery.client'], function () { | mw.loader.using(['jquery.client'], function () { | ||
// בדיקה ש-jQuery זמין ונטען | // בדיקה ש-jQuery זמין ונטען | ||
שורה 53: | שורה 73: | ||
} | } | ||
} | } | ||
}); | |||
}); | |||
} | |||
}); | |||
}); | }); |
גרסה מ־16:22, 30 באפריל 2024
// סקריפט לאיתור ותיקון עוגנים כפולים במדיה ויקי
mw.loader.using(['jquery.client'], function () {
$(function () {
if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit') {
var textArea = $('#wpTextbox1');
// יצירת כפתור
var button = $('<button type="button">בדוק ותקן עוגנים כפולים</button>');
button.css({
marginTop: '10px',
padding: '5px 10px',
fontSize: '1rem',
cursor: 'pointer'
});
// הוספת הכפתור לדף
textArea.after(button);
// הגדרת פעולת הכפתור
button.click(function () {
mw.loader.using(['jquery.client'], function () {
// בדיקה ש-jQuery זמין ונטען
$(function () {
// בדיקה שהתיבה המקורית אכן מכילה תוכן עם עוגנים
if ($('#wpTextbox1').length > 0) {
replaceDuplicateAnchors();
}
});
function replaceDuplicateAnchors() {
// קביעת משתנים והבניית הביטויים הרגולריים
var textArea = $('#wpTextbox1');
var content = textArea.val();
var anchorRegex = /\{\{עוגן(?:1)?\|([^}|]+)(?:\|([^}]+))?\}\}/gi;
var anchors = {};
var match;
// חיפוש והחלפת העוגנים הכפולים
while ((match = anchorRegex.exec(content)) !== null) {
var key = match[1].toLowerCase();
var text = match[2] !== undefined ? match[2] : key; // אם אין טקסט חופשי, השתמש בפרמטר העוגן
if (!anchors[key]) {
anchors[key] = [];
}
anchors[key].push({ index: match.index, length: match[0].length, text: text });
}
$.each(anchors, function (key, positions) {
if (positions.length > 1) {
var offset = 0;
var counter = 1; // מספר התוקף הנוכחי
positions.forEach(function (pos, i) {
var replacement;
if (i > 0) { // מתחיל למספר מהעוגן השני
counter++;
replacement = `{{עוגן|${key}${counter}|${pos.text}}}`;
} else {
replacement = `{{עוגן|${key}|${pos.text}}}`; // העוגן הראשון ללא מספור
}
var startIndex = pos.index + offset;
content = content.slice(0, startIndex) + replacement + content.slice(startIndex + pos.length);
offset += replacement.length - pos.length;
});
textArea.val(content);
}
});
// בדיקה שהתוכן של התיבה שונה והודעה למשתמש
if (textArea.val() !== content) {
alert('הוחלפו עוגנים כפולים בהצלחה');
} else {
alert('אין עוגנים כפולים');
}
}
});
});
}
});
});