User:Enterprisey/draft-sorter.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:Enterprisey/draft-sorter. |
//<nowiki>
( function ( $, mw ) {
mw.loader.load( "jquery.chosen" );
mw.loader.load( "mediawiki.ui.input", "text/css" );
if ( mw.config.get( "wgNamespaceNumber" ) !== 118 ) return;
const WIKIPROJECT_LIST = "User:Theo's Little Bot/afchwikiproject.js";
var portletLink = mw.util.addPortletLink('p-cactions', '#', 'Sort (draft)', 'pt-draftsort', 'Manage WikiProject tags');
$( portletLink ).click( function ( e ) {
e.preventDefault();
// If it's already there, don't duplicate
if ( $( "#draft-sorter-wrapper" ).length ) return;
// Construct the form
var form = $( "<div>" )
.id( "draft-sorter-wrapper" )
.css( "background-image: url(/media/wikipedia/commons/f/f9/Curation_tool_tag_icon.svg);background-repeat: no-repeat;padding-left: 40px;" )
.append( $( "<span>" )
.text( "Loading form..." )
.css( "color", "gray" ) );
$.getJSON( mw.config.get( 'wgServer' ) + "/w/index.php?title=" +
WIKIPROJECT_LIST + "&action=raw&ctype=text/javascript", null, function ( data ) {
var select = $( "<select>" )
.attr( "id", "draft-sorter-form" )
.attr( "multiple", "multiple" );
$.each( data, function ( name, template ) {
select.append( $( "<option>" )
.attr( "value", template )
.text( name ) );
} );
form.hide();
form.empty();
form.append( $( "<span>" )
.text( "Tag WikiProjects: " )
.css( {
"font-size": "115%",
"font-weight": "bold"
} ) );
form.append( select );
form.append( $( "<button>" )
.text( "Submit" )
.addClass( "mw-ui-button" )
.addClass( "mw-ui-progressive" )
.addClass( "mw-ui-big" )
.css( "margin-left", "0.25em" )
.click( submit ) );
form.append( $( "<button>" )
.addClass( "mw-ui-button mw-ui-destructive mw-ui-quiet" )
.text( "Cancel" )
.click( function ( e ) {
$( "#draft-sorter-wrapper" ).remove();
} ) );
form.show();
$( select ).chosen( {
"placeholder_text_multiple": "Select some WikiProjects"
} );
} );
// Add the form to the page
form.insertAfter( "#jump-to-nav" );
// The submission function
var submit = function () {
var newTags = $( "#draft-sorter-form").val();
console.log( newTags );
var statusList = $( "<ul>" )
.appendTo( "#draft-sorter-wrapper" )
.append( $( "<li>" ).text( "Saving " + newTags.length + " new tags." ) );
var showStatus = function ( status ) {
return $( "<li>" )
.text( status )
.appendTo( statusList );
};
var newText = "";
newTags.forEach( function ( element ) {
newText += "{{" + element + "|grade=|importance=|class=draft}}";
} );
$.ajax( {
url: mw.util.wikiScript( 'api' ),
type: 'POST',
dataType: 'json',
data: {
format: 'json',
action: 'edit',
title: "Draft talk:" + mw.config.get( 'wgTitle' ),
summary: "Tagging drafts (draft-sorter.js)",
token: mw.user.tokens.get( 'editToken' ),
prependtext: newText
}
} ).done( function ( data ) {
if ( data && data.edit && data.edit.result && data.edit.result === "Success" ) {
showStatus( "Edit saved successfully! (" )
.append( $( "<a>" )
.text( "reload" )
.attr( "href", "#" )
.click( function () { document.location.reload( true ); } ) )
.append( ")" );
} else {
showStatus( "Couldn't save due to error: " + JSON.stringify( data ) );
}
} ).fail( function ( error ) {
showStatus( "Couldn't save due to error: " + JSON.stringify( error ) );
} );
};
} );
}( jQuery, mediaWiki ) );
//</nowiki>