Użytkownik:Expert3222/quickPatrol.js: Różnice pomiędzy wersjami
Z Nondanych
m |
m |
||
Linia 129: | Linia 129: | ||
$buttons = $tbody.find(".patrollink-single"), |
$buttons = $tbody.find(".patrollink-single"), |
||
buttonsCount = $buttons.length; |
buttonsCount = $buttons.length; |
||
console.dir(multiplePatrolButton); |
|||
multiplePatrolButton.find("a").replaceWith(spinnerCode); |
multiplePatrolButton.find("a").replaceWith(spinnerCode); |
||
$buttons.each(function() |
$buttons.each(function() |
Wersja z 16:50, 15 maj 2020
/*
* gadżet do szybkiego oznaczania wersji jako sprawdzonych na OZ, nowych stronach i widoku diffów
* autor: Expert3222
* drobne modyfikacje, backend: Ostrzyciel
*/
// TODO: $(this) na $this (do zmiennej), lepsza wydajność będzie
var spinnerCode = "<div class='mw-spinner mw-spinner-small mw-spinner-inline' title='...'></div>";
var RCPatrolSuccessCode = "<img src='https://nonsa.pl/images/2/26/Za.svg.png' width='15px' height='15px' /> <span style='color: green;' class='patrolButtonClicked'>zrobione</span>";
var RCPatrolFailureCode = "<img src='https://nonsa.pl/images/a/a8/Przeciw.svg.png' width='15px' height='15px' /> <span style='color: red;' class='patrolButtonClicked'>błąd</span>";
var RCMultiplePatrolSuccessCode = "<img src='https://nonsa.pl/images/2/26/Za.svg.png' width='15px' height='15px' /> <span style='color: green;' class='multiplePatrolButtonClicked'>zrobione</span>";
var RCMultiplePatrolFailureCode = "<img src='https://nonsa.pl/images/a/a8/Przeciw.svg.png' width='15px' height='15px' /> <span style='color: red;' class='multiplePatrolButtonClicked'>błąd</span>";
$(document).ready(function()
{
if (mw.config.get("wgCanonicalSpecialPageName") === "Recentchanges")
{
makePatrolLinks();
/*if (!!$('.mw-rcfilters-enabled').length) //wzięte od Polskacafe z gadżetu RollWithReason
{
setInterval(makePatrolLinks, 2000);
}*/
}
else if (mw.config.get("wgCanonicalSpecialPageName") == "Newpages")
{
makeNewpagesPatrolLinks();
}
else if (mw.util.getParamValue("diff") !== null)
{
makeDiffPagePatrolButtons();
//setInterval(makeDiffPagePatrolButton, 2000); //"przeglądaj historię interaktywnie" na górze
}
else if (mw.config.get("wgCanonicalSpecialPageName") == "MobileDiff")
{
//TODO
/*var oldid = mw.util.getParamValue("oldid", $("#mw-mf-diff-info a").attr("href"));
alert("oldid = " + oldid);
var urlArray = window.location.href.split("/");
var curid = urlArray[urlArray.length - 1];
alert("curid = " + curid);
var title = $("#mw-mf-diff-info a").text();
makeDiffViewRevidsList(oldid, curid, title);*/
}
});
function makePatrolLinks()
{
$(".patrollink-page").each(function()
{
$tbody = goUpUntilTag($(this), "tbody");
var lines = $tbody.find("tr");
var firstLine = $(lines).first();
if (lines.length >= 2 && $(firstLine).hasClass("mw-changeslist-reviewstatus-unpatrolled") && $(firstLine).find(".multiplePatrolButtonClicked").length === 0)
{
console.log("makePatrolLinks()");
$(firstLine).find(".patrollink-page a").on("click", function()
{
processMultipleChangeRCPatrol($tbody);
});
}
});
$(".patrollink-single a").on("click", function()
{
processRCChangePatrol($(this).parent());
});
}
function makeNewpagesPatrolLinks()
{
$("li.not-patrolled").each(function()
{
if (typeof $(this).find(".mw-newpages-oldtitle") == "undefined")
{
var oldid = $(this).attr("data-mw-revid");
$(this).find("span.mw-newpages-history a").after(" • <span class='patrolButton' title='Oznacz tę stronę jako sprawdzoną' data-diff='" + oldid + "'><a>patrol</a></span>");
}
else
{
var api = new mw.Api(),
elem = $(this),
pageName = $(this).find(".mw-newpages-pagename").attr("title");
api.post(
{
action: 'query',
format: 'json',
formatversion: '2',
prop: 'revisions',
titles: pageName,
rvprop: 'ids',
rvlimit: '1',
rvdir: 'newer'
}).done(function(data)
{
var oldid = data.query.pages[0].revisions[0].revid;
$(elem).find("span.mw-newpages-history a").after(" • <span class='patrolButton' title='Oznacz tę stronę jako sprawdzoną' data-diff='" + oldid + "'><a>patrol</a></span>");
$(elem).find(".patrolButton").on("click", function()
{
patrolChange(oldid, false, false);
});
}).fail(function(error)
{
console.log(error);
});
}
});
$(".patrolButton").on("click", function()
{
resetLastClick();
patrolChange($(this).attr("data-diff"), false, false);
});
}
//helper function to process multiple change RC patrol, including spinner etc.
function processMultipleChangeRCPatrol($tbody)
{
var deferred = $.Deferred(),
failureCount = 0,
successCount = 0,
multiplePatrolButton = $tbody.find(".patrollink-page"),
$buttons = $tbody.find(".patrollink-single"),
buttonsCount = $buttons.length;
console.dir(multiplePatrolButton);
multiplePatrolButton.find("a").replaceWith(spinnerCode);
$buttons.each(function()
{
processRCChangePatrol($(this))
.done(function()
{
++successCount;
}).fail(function()
{
++failureCount;
}).always(function()
{
if (successCount == buttonsCount) //wszystkie wywołania AJAX do patrolowania zakończyły się pomyślnie
{
deferred.resolve(successCount, failureCount);
multiplePatrolButton.find("div").replaceWith(RCMultiplePatrolSuccessCode);
$tbody.find("tr:first-child abbr.unpatrolled").replaceWith(" ");
}
else if (successCount + failureCount == buttonsCount) //wszystkie zakończyły się, niekoniecznie pomyślnie
{
deferred.reject(successCount, failureCount);
multiplePatrolButton.find("div").replaceWith(RCMultiplePatrolFailureCode);
}
});
});
/*if (buttonsCount == 0)
{
multiplePatrolButton.replaceWith("<span><img src='https://nonsa.pl/images/2/26/Za.svg.png' width='15px' height='15px' /> <span style='color: green;' class='multiplePatrolButtonClicked'>zrobione</span></span>");
$tbody.find("tr:first-child abbr.unpatrolled").replaceWith(" ");
}*/
return deferred.promise();
}
//helper function to process one RC link including spinner etc.
function processRCChangePatrol($button)
{
var deferred = $.Deferred();
var revid = $button.find("a").attr("data-revision");
$button.find("a").replaceWith(spinnerCode);
resetLastClick();
patrolChange(revid).done(function()
{
$button.find("div").replaceWith(RCPatrolSuccessCode);
goUpUntilTag($button, "tr").find("abbr.unpatrolled").replaceWith(" ");
deferred.resolve();
}).fail(function()
{
$button.find("div").replaceWith(RCPatrolFailureCode);
deferred.reject();
});
return deferred.promise();
}
function makeDiffPagePatrolButtons()
{
$(".patrollink-range a").click(function()
{
processDiffPageRangePatrol();
});
$(".patrollink-page a").click(function()
{
processDiffPageFullPatrol();
});
}
//helper function to process diff page range patrol including spinner etc.
function processDiffPageRangePatrol()
{
var $button = $(".patrollink-range");
var to = $button.find("a").attr("data-revision-max");
var from = $button.find("a").attr("data-revision-min");
$button.find("a").replaceWith(spinnerCode);
resetLastClick();
patrolRangeOfChanges(to, from).done(function()
{
$button.find("div").replaceWith(RCMultiplePatrolSuccessCode);
}).fail(function(error)
{
console.log(error);
$button.find("div").replaceWith(RCMultipleFailureSuccessCode);
});
}
function processDiffPageFullPatrol()
{
var $button = $(".patrollink-page");
var pageid = $button.find("a").attr("data-pageid");
$button.find("a").replaceWith(spinnerCode);
patrolPage(pageid).done(function()
{
$button.find("div").replaceWith(RCMultiplePatrolSuccessCode);
}).fail(function(error)
{
console.log(error);
$button.find("div").replaceWith(RCMultipleFailureSuccessCode);
});
}
function processGroupMarksAndButtons($anchor) //usuwa grupowy wykrzyknik i przycisk patrolowania, jak zajdzie potrzeba
{
var $parent = $anchor;
while ($parent.prop("tagName") != "TABLE" && $parent.prop("tagName") != "BODY")
{
$parent = $parent.parent();
}
//wszystkie rozwijalne zmiany/pliki spatrolowane, drugi warunek po to,
//zeby nie ignorowalo sytuacji, gdy zmiany nie udalo sie spatrolowac
if ($parent.find(".patrolButton").length === 0 && $parent.find("abbr.unpatrolled").length == 1)
{
$parent.find("abbr.unpatrolled").replaceWith(" ");
$parent.find(".multiplePatrolButton").replaceWith("<span><img src='https://nonsa.pl/images/2/26/Za.svg.png' width='15px' height='15px' /> <span style='color: green;' class='multiplePatrolButtonClicked'>zrobione</span></span>");
}
}
function goUpUntilTag($anchor, tag)
{
tag = tag.toUpperCase();
while ($anchor.prop("tagName") != tag && $anchor.prop("tagName") != "BODY")
{
$anchor = $anchor.parent();
}
return $anchor;
}