User talk:The Transhumanist/LoadNextPage.js
- I'm using this page as a workspace for the development of the script. The talk page portion of it starts at #Discussions, below.
Script's workshop
- This is the work area for developing the script and its documentation. The talk page portion of this page starts at #Discussions, below.
Description / instruction manual
(Script under development - not yet functional)
LoadNextPage = Load Next Page
Its purpose: Loads the next page from the load list.
When completed, this script will load the next page from the load list into the current window, but will first ask if the user wants to leave the current page (so work won't be lost).
Explanatory notes
This section explains the source code, in detail.
You can only use so many comments in the source code before you start to choke or bury the programming itself. So, I've put short summaries in the source code, and have provided in-depth explanations here. My intention is twofold:
- to thoroughly document the script so that even relatively new JavaScript beginners can understand what it does.
- to refresh my memory of exactly how the script works, such as if I don't look at the source code for weeks or months.
The explanatory notes include examples, and links to relevant documentation pages, tutorials, etc.
In addition to some standard JavaScript code, this script also relies heavily on the jQuery library.
If you have any questions, feel free to ask me at the bottom of this page under Discussions. Trying to answer them will help me learn JavaScript better.
Quick walk-through
aliases
An alias is one string defined to mean another. Another term for "alias" is "shortcut". In the script, the following aliases are used:
$
is the alias for jQuery
mw
is the alias for mediawiki
These two aliases are set up like this:
( function ( mw, $ ) {}( mediaWiki, jQuery ) );
That is a "bodyguard function", and is explained in the section below...
Bodyguard function
The bodyguard function assigns an alias for a name within the function, and reserves that alias for that purpose only. For example, if you want "t" to be interpreted only as "transhumanist".
Since the script uses jQuery, we want to defend jQuery's alias, the "$". The bodyguard function makes it so that "$" means only "jQuery" inside the function, even if it means something else outside the function. That is, it prevents other javascript libraries from overwriting the $() shortcut for jQuery. It does this via scoping.
The bodyguard function is used like a wrapper, with the alias-containing source code inside it. Here's what a jQuery bodyguard function looks like:
1 ( function($) {
2 // you put the body of the script here
3 } ) ( jQuery );
See also: bodyguard function solution.
To extend that to lock in "mw" to mean "mediawiki", use the following (this is what the script uses):
1 ( function(mw, $) {
2 // you put the body of the script here
3 } ) (mediawiki, jQuery);
For the best explanation I've found so far, see: Solving "$(document).ready is not a function" and other problems
The ready() event listener/handler
The ready() event listener/handler makes the rest of the script wait until the page (and its DOM) is loaded and ready to be worked on. If the script tries to do its thing before the page is loaded, there won't be anywhere for it to place the menu item (mw.util.addPortletLink), and the script will fail.
In jQuery, it looks like this: $( document ).ready() {});
The part of the script that is being made to wait goes inside the curly brackets. But you would generally start that on the next line, and put the ending curly bracket, closing parenthesis, and semicolon following that on a line of their own), like this:
1 $(function() {<br>
2 // Body of function (or even the rest of the script) goes here, such as a click handler.<br>
3 });
This is all explained further at the jQuery page for .ready()
For the plain vanilla version see: http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
Change log
Task list
Bugs
Desired features
- Check for load list
- Check to see if load list is empty
- Make configurable, so you can set the default, for it to:
- Load next page into current window
- Load next page into separate window
- Load next page into new tab
- Have the 3 above commands so you can choose what it does at the time you do it.
- Multiple loaders (each with a different load list)
Completed features
Development notes
- Where should it get the list?
- Load the links listed on the current page?
- From a standard designated page? (e.g., "Pageloader list")
- How does it know when you are done with the page?
- It doesn't have to
- It remembers the last page loaded
- When you call it again, it loads the next page on the list
- It doesn't have to