User:Ajbura/anrfc-lister.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. |
This user script seems to have a documentation page at User:Ajbura/anrfc-lister. |
// <nowiki>
var ANRFC = {
init: function() {
$("#p-cactions ul.vector-menu-content-list").append("<li id='ca-anrfc' style='color: unset' onclick='ANRFC.toggle();'><a>ANRFC lister</a></li>");
console.log('ANRFC lister running...');
},
bindDiscussion: function(wikitext, rawData, initDate, discussionIndex) {
var discussions = [
'=== Administrative discussions ===',
'=== Requests for comment ===',
'=== Deletion discussions ===',
'=== Other types of closing requests ==='
];
var firstPart = wikitext.slice(0, wikitext.indexOf(discussions[discussionIndex]));
wikitext = wikitext.slice(wikitext.indexOf(discussions[discussionIndex]));
var isLastDiscussion = (discussionIndex == discussions.length - 1);
var relventDiscussion = (isLastDiscussion)? wikitext: wikitext.slice(0, wikitext.indexOf(discussions[discussionIndex + 1]));
wikitext = (isLastDiscussion)? '': wikitext.slice(wikitext.indexOf(discussions[discussionIndex + 1]));
var initMatches = relventDiscussion.match(/((i|I)nitiated\|[\d]{1,2}:[\d]{1,2},\s[\d]{1,2}\s[\w]+\s[\d]{4}\s\([\w]+\))/g);
function dateToObj(dateString) {
var months = ["January","February","March","April","May","June","July","August","September","October","November","December"];
var oDate = dateString.split(/, | /);
oDate[0] = oDate[0].match(/[\d]{1,2}:[\d]{1,2}/)[0];
var time = {
hh: oDate[0].match(/([\d]{1,2}):/)[1],
mm: oDate[0].match(/:([\d]{1,2})/)[1]
}
date = {
time: time,
day: parseInt(oDate[1]),
month: months.indexOf(oDate[2]),
year: parseInt(oDate[3])
}
return date;
}
function isInitDateLatest(matchDate, initDate) {
if (initDate.year > matchDate.year) return true;
if (initDate.year < matchDate.year) return false;
if (initDate.month > matchDate.month) return true;
if (initDate.month < matchDate.month) return false;
if (initDate.day > matchDate.day) return true;
if (initDate.day < matchDate.day) return false;
if (initDate.time.hh > matchDate.time.hh) return true;
if (initDate.time.hh < matchDate.time.hh) return false;
if (initDate.time.mm > matchDate.time.mm) return true;
if (initDate.time.mm < matchDate.time.mm) return false;
return true;
}
var initDateObj = dateToObj(initDate);
var matchIndex = (initMatches != null)? initMatches.length - 1: -1;
if (initMatches != null) for (; matchIndex >= 0; matchIndex--) {
if (isInitDateLatest(dateToObj(initMatches[matchIndex]), initDateObj)) break;
}
if (matchIndex === -1) {
var left = relventDiscussion.slice(0, relventDiscussion.indexOf('===='));
relventDiscussion = relventDiscussion.slice(relventDiscussion.indexOf('===='));
relventDiscussion = left + rawData + '\n\n' + relventDiscussion;
} else {
var afterDate = initMatches[matchIndex];
var left = relventDiscussion.slice(0, relventDiscussion.indexOf(afterDate));
relventDiscussion = relventDiscussion.slice(relventDiscussion.indexOf(afterDate));
left = left + relventDiscussion.slice(0, relventDiscussion.indexOf('===='));
relventDiscussion = relventDiscussion.slice(relventDiscussion.indexOf('===='));
relventDiscussion = left + rawData + '\n\n' + relventDiscussion;
}
return (firstPart + relventDiscussion + wikitext);
},
onSubmit: function(dropDown, messageInput, keyId) {
if (dropDown.getMenu().findSelectedItem() == null) return OO.ui.alert( 'Please select discussion section from dropdown menu!' ).done(function() { dropDown.focus(); } );
var discussionIndex = dropDown.getMenu().findSelectedItem().getData();
var message = messageInput.getValue();
var pageName = mw.config.get('wgPageName');
var sectionTitle = $('#' + keyId).prev().children('.mw-headline').text();
var initDateRegx = /([\d]{1,2}:[\d]{1,2},\s[\d]{1,2}\s[\w]+\s[\d]{4}\s\([\w]+\))/;
var initDateMatches = null;
var nextEl = $('#' + keyId);
do {
if (nextEl.next().hasClass('boilerplate')) nextEl = nextEl.next().children('p');
else nextEl = nextEl.next();
initDateMatches = nextEl.text().match(initDateRegx);
} while (initDateMatches == null);
var initDate = initDateMatches[0];
var headlineRaw = "==== [[" + pageName + "#" + sectionTitle + "]] ====";
var initRaw = "{{initiated|" + initDate + "}}";
var rawData = headlineRaw + "\n" + initRaw + " " + message +" ~~~~";
new mw.Api().get( {
action: 'parse',
page: "Wikipedia:Closure_requests",
prop: 'wikitext'
}).done(function(result) {
var wikitext = result.parse.wikitext['*'];
if (wikitext.replaceAll(' ', '_').match((pageName + "#" + sectionTitle).replaceAll(' ', '_')) != null) return OO.ui.alert('This discussion is already listed.')
wikitext = ANRFC.bindDiscussion(wikitext, rawData, initDate, discussionIndex);
new mw.Api().postWithEditToken( {
action: 'edit',
title: "Wikipedia:Closure_requests",
text: wikitext,
summary: 'Listing new discussion using [[User:Ajbura/anrfc-lister.js|anrfc-lister]]',
nocreate: true
}).done(function(result) {
if ( result && result.edit && result.edit.result && result.edit.result === 'Success' ){
OO.ui.confirm( 'This discussion has been listed on WP:ANRFC. Would you like to see it?' ).done( function ( confirmed ) {
if ( confirmed ) {
window.open("https://en.wikipedia.org/wiki/Wikipedia:Closure_requests", "_blank");
}
} );
}
});
});
},
addForm: function(el) {
var keyId = el.getAttribute('indexKey') + "-anrfcBox";
if (document.getElementById(keyId) != null) {
return document.getElementById(keyId).remove();
}
$(el.parentElement).after('<div id="' + keyId + '"></div>');
$('#' + keyId).css({
'margin': '16px 0',
'padding': '16px',
'background-color': '#f3f3f3',
'border': '1px solid grey'
});
var dropDown = new OO.ui.DropdownWidget({
label: 'Dropdown menu: Select discussion section',
menu: {
items: [
new OO.ui.MenuOptionWidget( {
data: 0,
label: 'Administrative discussions'
} ),
new OO.ui.MenuOptionWidget( {
data: 1,
label: 'Requests for comment'
} ),
new OO.ui.MenuOptionWidget( {
data: 2,
label: 'Deletion discussions'
} ),
new OO.ui.MenuOptionWidget( {
data: 3,
label: 'Other types of closing requests'
} )
]
}
});
var messageInput = new OO.ui.MultilineTextInputWidget({
placeholder: 'Custom message (optional)',
multiline: true,
autosize: true,
maxRows: 4
});
var submitButton = new OO.ui.ButtonWidget({
label: 'Submit',
flags: [
'primary',
'progressive'
]
});
$('#' + keyId).append('<h3 style="margin: 0 0 16px;">List this discussion on <a href="https://en.wikipedia.org/wiki/Wikipedia:Closure_requests" target="_blank">Wikipedia:Closure requests</a></h3>');
var wrapper = document.createElement('div');
$(wrapper).append('<p>Under section: </p>');
$(wrapper).append(dropDown.$element);
$('#' + keyId).append(wrapper);
var wrapper = document.createElement('div');
$(wrapper).css({ 'margin-top': '8px' });
$(wrapper).append(messageInput.$element);
$(wrapper).append($(submitButton.$element).css({
'margin-top': '8px',
}));
$('#' + keyId).append(wrapper);
submitButton.on('click', function() { ANRFC.onSubmit(dropDown, messageInput, keyId); } );
},
addLabels: function () {
$('span.mw-editsection').each(function(index) {
$(this.parentElement).append("<a indexKey="+ index +" class='mw-ANRFC' onclick='ANRFC.addForm(this)'>List on ANRFC</a>");
$('a.mw-ANRFC').css({ "margin-left": "8px", "font-size": "small", "font-family": "sans-serif" });
});
},
removeLabels: function () {
$('a.mw-ANRFC').each(function() {
this.remove();
var keyId = this.getAttribute('indexKey') + "-anrfcBox";
if (document.getElementById(keyId) != null) {
return document.getElementById(keyId).remove();
}
});
},
toggle: function () {
if ($("#ca-anrfc a").css('color') == 'rgb(255, 0, 0)') {
$("#ca-anrfc a").css('color', '');
ANRFC.removeLabels();
} else {
$("#ca-anrfc a").css('color', 'red');
ANRFC.addLabels()
}
},
};
mw.loader.using(['oojs-ui-widgets', 'oojs-ui-windows'], function() {
ANRFC.init();
});
// </nowiki>