User:The Transhumanist/ScriptCreator.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:The Transhumanist/ScriptCreator. |
// <syntaxhighlight lang="javascript">
/*
(Script under development - not yet functional)
CreateScript.js =
Development notes:
* should not work if on an edit page - done
* should only work after a menu item is clicked - done
* Declare a variable for script's mode
* Declare a variable for script page title
* Declare a variable for script's talk page title
* Specify script title, then press enter.
* Set script title variable
* Set script talk page title variable
* If script page exists, skip this section
* Create script page in edit mode
* Add script template
* Manual save?
* If script talk page exists, clear local storage and terminate script
* Create script talk page in edit mode
* Add talk page template
* Manual save?
Brief comments are provided within the source code below. For extensive explanatory
notes on what the source code does and how it works, see the Script's workshop on
the talk page.
*/
// ============== Set up ==============
// Start off with a bodyguard function to reserve the aliases mw and $
( function ( mw, $ ) {
// we can now rely on mw and $ within the safety of our “bodyguard” function, to mean
// "mediawiki" and "jQuery", respectively
// ============== ready() event listener/handler ==============
// below is jQuery short-hand for $(document).ready(function() { ... });
// it makes the rest of the script wait until the page's DOM is loaded and ready
$(function() {
// ============== activation filters ==============
// Only activate on Vector skin
if ( mw.config.get( 'skin' ) === 'vector' ) {
// End of set up
// =================== Prep work =====================
// Variable declarations, etc., go here
// ================= Core program =================
$( function() {
// Detect script edit page and call function (need variable for scripteditpage for title.indexOf)
if (document.title.indexOf("Editing ") === -1) {
// Check mode
// get localstorage, check mode
//If (ScriptCreatorMode === CreateEditPage) {
// Call function
// scriptEditPage();
//}
}
// Process script talk edit page and call function (needs variable for script talk edit page name)
if (document.title.indexOf("Editing ") === -1) {
// scriptTalkEditPage()
}
// Main body of program (waits for menu click)
// Run this script only if "Editing " is not in the page title
if (document.title.indexOf("Editing ") === -1) {
// Create linked menu item
var portletlink = mw.util.addPortletLink('p-tb', '#', 'Create script', 'cr-script', 'Start new script and workshop page');
// Bind click handler
$(portletlink).click( function(e) {
e.preventDefault();
// Do some stuff when clicked...
// Default parameters, and begin script on regular view of article
// Prompt for title
var scripttitle = prompt ( "Enter name of script you would like to create" );
// Save title in localstorage
localStorage.setItem("ScriptCreatorMode", "CreateEditPage");
localStorage.setItem("scripttitle", scripttitle);
// Create script page
location = `https://en.wikipedia.org/w/index.php?title=User:The_Transhumanist/${scripttitle}&action=edit`;
} );
}
// function scriptEditPage goes here
function scriptEditPage() {
// Add template to page
// Save page
// Create script talk page
// need variable for title in the curlies {}
location = `https://en.wikipedia.org/w/index.php?title=User_talk:The_Transhumanist/${}&action=edit`;
}
// function scriptTalkEditPage goes here
function scriptTalkEditPage() {
// clear localstorages (both of them)
}
} );
}
} );
}( mediaWiki, jQuery ) );
// </syntaxhighlight>