User:Tom.Reding/MoreDiffInfo.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Tom.Reding/MoreDiffInfo. |
/*** More Diff Info ***/
// Adds more information to diff pages such as revision ID, size, and ORES score
// Documentation at [[en:w:User:BrandonXLF/MoreDiffInfo]]
// By [[en:w:User:BrandonXLF]]
$.when(mw.loader.using('moment'), $.ready).then(function(require) {
var moment = require('moment'),
DA_IMG = 'https://upload.wikimedia.org/wikipedia/commons/d/d1/Icon_no.png', // 178 bytes
GF_IMG = 'https://upload.wikimedia.org/wikipedia/commons/0/03/Green_check.svg'; // 314 bytes
function createImage(type, url) {
return '<img style="height:1em;vertical-align:text-top;" title="' + type + '" alt="' + type + '" src="' + url + '">';
}
function getInnerORES(scores) {
var innerORES = [];
if (scores.damaging) {
innerORES.push(Math.round(scores.damaging.true * 100) + '%' + createImage('Damaging', DA_IMG) + ' | ');
}
if (scores.goodfaith) {
innerORES.push(Math.round(scores.goodfaith.true * 100) + '%' + createImage('Good Faith', GF_IMG));
}
return innerORES.join(' ') || 'No ORES';
}
function generateInfo(revision, previousRevision) {
var out = [
revision.revid,
revision.size.toLocaleString() +' bytes',
getInnerORES(revision.oresscores),
],
help = '<a target="_blank" href="https://en.wikipedia.org/wiki/User:BrandonXLF/MoreDiffInfo#Guide">(?)</a>';
if (previousRevision) {
var diff = revision.size - previousRevision.size;
out[1] += ' <span style="color:' + (diff < 0 ? '#8b0000' : diff > 0 ? '#006400' : '') + '">(' + (diff > 0 ? '+' : '') + diff + ')</span>';
out.push(moment(revision.timestamp).from(previousRevision.timestamp, true) + ' later');
}
return out.join(' | ') + ' ' + help;
}
mw.hook('wikipage.diff').add(function() {
var ids = mw.config.get(['wgDiffOldId', 'wgDiffNewId']);
if (!ids.wgDiffOldId || !ids.wgDiffNewId) return;
new mw.Api().get({
action: 'query',
prop: 'revisions',
revids: [ids.wgDiffOldId, ids.wgDiffNewId],
rvprop: ['ids', 'size', 'oresscores', 'timestamp'],
rvslots: 'main',
formatversion: 2
}).then(function(res) {
var revisions = res.query.pages[0].revisions,
oldRevision,
newRevision;
for (var i = 0; i < revisions.length; i++) {
if (revisions[i].revid == ids.wgDiffOldId) {
oldRevision = revisions[i];
} else if (revisions[i].revid == ids.wgDiffNewId) {
newRevision = revisions[i];
}
}
if (!oldRevision || !newRevision) return;
$('#mw-diff-otitle2').after($('<div></div>').append(generateInfo(oldRevision)));
$('#mw-diff-ntitle2').after($('<div></div>').append(generateInfo(newRevision, oldRevision)));
});
});
});