MediaWiki

Difference between revisions of "Gadget-Demo.js"

Line 1: Line 1:
 
'use strict';
 
'use strict';
  
( function ( mw, $, rw, OO ) {
+
if ( mediaWiki.recordWizard !== undefined ) {
 +
    ( function ( mw, $, rw, OO ) {
  
/*
+
    /*
* This first part allows the creation of a basic generator
+
    * This first part allows the creation of a basic generator
* and allows the RecordWizard to find it (and thus, add a button in the UI for it)
+
    * and allows the RecordWizard to find it (and thus, add a button in the UI for it)
*
+
    *
* Replace everywhere in this file "rw.generator.Demo" by a custom
+
    * Replace everywhere in this file "rw.generator.Demo" by a custom
* and unique class name, but always in the "rw.generator" namespace.
+
    * and unique class name, but always in the "rw.generator" namespace.
* For example it can be: rw.generator.SomethingCool
+
    * For example it can be: rw.generator.SomethingCool
*/
+
    */
rw.generator.Demo = function ( config ) {
+
    rw.generator.Demo = function ( config ) {
rw.generator.Generator.call( this, config );
+
    rw.generator.Generator.call( this, config );
};
+
    };
  
OO.inheritClass( rw.generator.Demo, rw.generator.Generator );
+
    OO.inheritClass( rw.generator.Demo, rw.generator.Generator );
  
// This line defines an internal name for the generator
+
    // This line defines an internal name for the generator
rw.generator.Demo.static.name = 'demo';
+
    rw.generator.Demo.static.name = 'demo';
  
// And this one defines the name for the generator which will be displayed in the UI
+
    // And this one defines the name for the generator which will be displayed in the UI
rw.generator.Demo.static.title = 'My Demo';
+
    rw.generator.Demo.static.title = 'My Demo';
  
/*
+
    /*
* This function should contain all the popup initialization stuff.
+
    * This function should contain all the popup initialization stuff.
* We create here for example two text fields, with a custom layout.
+
    * We create here for example two text fields, with a custom layout.
* For more information, see OOui documentation:
+
    * For more information, see OOui documentation:
* https://www.mediawiki.org/wiki/OOUI
+
    * https://www.mediawiki.org/wiki/OOUI
*/
+
    */
rw.generator.Demo.prototype.initialize = function () {
+
    rw.generator.Demo.prototype.initialize = function () {
// The two text fields
+
    // The two text fields
this.aTextField = new OO.ui.TextInputWidget();
+
    this.aTextField = new OO.ui.TextInputWidget();
this.anotherTextField = new OO.ui.TextInputWidget();
+
    this.anotherTextField = new OO.ui.TextInputWidget();
  
// The custom layout
+
    // The custom layout
this.layout = new OO.ui.Widget( {
+
    this.layout = new OO.ui.Widget( {
content: [
+
    content: [
new OO.ui.FieldLayout( this.aTextField, {
+
    new OO.ui.FieldLayout( this.aTextField, {
align: 'top',
+
    align: 'top',
label: 'This field do something cool.'
+
    label: 'This field do something cool.'
}
+
    }
),
+
    ),
new OO.ui.FieldLayout(
+
    new OO.ui.FieldLayout(
this.anotherTextField, {
+
    this.anotherTextField, {
align: 'top',
+
    align: 'top',
label: 'This one too!'
+
    label: 'This one too!'
}
+
    }
)
+
    )
]
+
    ]
} );
+
    } );
  
// To be displayed, all the fields/widgets/... should be appended to "this.content.$element"
+
    // To be displayed, all the fields/widgets/... should be appended to "this.content.$element"
this.content.$element.append( this.layout.$element );
+
    this.content.$element.append( this.layout.$element );
  
// Do not remove this line, it will initialize the popup itself
+
    // Do not remove this line, it will initialize the popup itself
rw.generator.Generator.prototype.initialize.call( this );
+
    rw.generator.Generator.prototype.initialize.call( this );
};
+
    };
  
/*
+
    /*
* This function will be called when the user press the "Done" button.
+
    * This function will be called when the user press the "Done" button.
*  
+
    *  
* Every words that you want to be added to the RecordWizard's word list
+
    * Every words that you want to be added to the RecordWizard's word list
* have to be added to an array called "this.list".
+
    * have to be added to an array called "this.list".
*
+
    *
* The returned value can either be True, or if you want to do some asynchrone
+
    * The returned value can either be True, or if you want to do some asynchrone
* stuff, you can return a jQuery promise
+
    * stuff, you can return a jQuery promise
*/
+
    */
rw.generator.Demo.prototype.fetch = function () {
+
    rw.generator.Demo.prototype.fetch = function () {
// Get the values of our text fields
+
    // Get the values of our text fields
var generator = this,
+
    var generator = this,
demoText = this.aTextField.getValue(),
+
    demoText = this.aTextField.getValue(),
anotherDemoText = this.anotherTextField.getValue();
+
    anotherDemoText = this.anotherTextField.getValue();
  
// Initialize a new promise
+
    // Initialize a new promise
this.deferred = $.Deferred();
+
    this.deferred = $.Deferred();
  
// Initialize our word list
+
    // Initialize our word list
this.list = [];
+
    this.list = [];
  
// We will do a asynchronous AJAX request to frwiki's API
+
    // We will do a asynchronous AJAX request to frwiki's API
this.frwikiApi = new mw.ForeignApi( 'https://fr.wikipedia.org/w/api.php', {
+
    this.frwikiApi = new mw.ForeignApi( 'https://fr.wikipedia.org/w/api.php', {
anonymous: true,
+
    anonymous: true,
parameters: { origin: '*' },
+
    parameters: { origin: '*' },
ajax: { timeout: 10000 }
+
    ajax: { timeout: 10000 }
} );
+
    } );
  
// To get 10 random pages from the main namespace
+
    // To get 10 random pages from the main namespace
this.frwiki.get( {
+
    this.frwiki.get( {
"action": "query",
+
    "action": "query",
"format": "json",
+
    "format": "json",
"list": "random",
+
    "list": "random",
"rnnamespace": "0",
+
    "rnnamespace": "0",
"rnlimit": "10"
+
    "rnlimit": "10"
} ).then( function( data ) {
+
    } ).then( function( data ) {
// We process here the result of our request
+
    // We process here the result of our request
// By adding each page title to our list
+
    // By adding each page title to our list
var i;
+
    var i;
for ( var i=0; i < data.query.random.length; i++ ) {
+
    for ( var i=0; i < data.query.random.length; i++ ) {
generator.list.push( data.query.random[ i ].title );
+
    generator.list.push( data.query.random[ i ].title );
}
+
    }
  
// And once we're done we can resolve our promise
+
    // And once we're done we can resolve our promise
// So the process can end
+
    // So the process can end
generator.deferred.resolve();
+
    generator.deferred.resolve();
} ).fail( function ( error ) {
+
    } ).fail( function ( error ) {
// If something goes wrong, we reject our promise
+
    // If something goes wrong, we reject our promise
// So the process stops and our popup shows the error message
+
    // So the process stops and our popup shows the error message
generator.deferred.reject( new OO.ui.Error( error ) );
+
    generator.deferred.reject( new OO.ui.Error( error ) );
} );
+
    } );
  
// At this point we're not done yet, make the dialog closing process
+
    // At this point we're not done yet, make the dialog closing process
// to wait the promise to be resolved or rejected
+
    // to wait the promise to be resolved or rejected
return this.deferred.promise();
+
    return this.deferred.promise();
};
+
    };
  
}( mediaWiki, jQuery, mediaWiki.recordWizard, OO ) );
+
    } ( mediaWiki, jQuery, mediaWiki.recordWizard, OO ) );
 +
}

Revision as of 07:44, 12 October 2018

'use strict';

if ( mediaWiki.recordWizard !== undefined ) {
    ( function ( mw, $, rw, OO ) {

	    /*
	     * This first part allows the creation of a basic generator
	     * and allows the RecordWizard to find it (and thus, add a button in the UI for it)
	     *
	     * Replace everywhere in this file "rw.generator.Demo" by a custom
	     * and unique class name, but always in the "rw.generator" namespace.
	     * For example it can be: rw.generator.SomethingCool
	     */
	    rw.generator.Demo = function ( config ) {
		    rw.generator.Generator.call( this, config );
	    };

	    OO.inheritClass( rw.generator.Demo, rw.generator.Generator );

	    // This line defines an internal name for the generator
	    rw.generator.Demo.static.name = 'demo';

	    // And this one defines the name for the generator which will be displayed in the UI
	    rw.generator.Demo.static.title = 'My Demo';

	    /*
	     * This function should contain all the popup initialization stuff.
	     * We create here for example two text fields, with a custom layout.
	     * For more information, see OOui documentation:
	     * https://www.mediawiki.org/wiki/OOUI
	     */
	    rw.generator.Demo.prototype.initialize = function () {
		    // The two text fields
		    this.aTextField = new OO.ui.TextInputWidget();
		    this.anotherTextField = new OO.ui.TextInputWidget();

		    // The custom layout
		    this.layout = new OO.ui.Widget( {
			    content: [
				    new OO.ui.FieldLayout( this.aTextField, {
						    align: 'top',
						    label: 'This field do something cool.'
					    }
				    ),
				    new OO.ui.FieldLayout(
					    this.anotherTextField, {
						    align: 'top',
						    label: 'This one too!'
					    }
				    )
			    ]
		    } );

		    // To be displayed, all the fields/widgets/... should be appended to "this.content.$element"
		    this.content.$element.append( this.layout.$element );

		    // Do not remove this line, it will initialize the popup itself
		    rw.generator.Generator.prototype.initialize.call( this );
	    };

	    /*
	     * This function will be called when the user press the "Done" button.
	     * 
	     * Every words that you want to be added to the RecordWizard's word list
	     * have to be added to an array called "this.list".
	     *
	     * The returned value can either be True, or if you want to do some asynchrone
	     * stuff, you can return a jQuery promise
	     */
	    rw.generator.Demo.prototype.fetch = function () {
		    // Get the values of our text fields
		    var generator = this,
			    demoText = this.aTextField.getValue(),
			    anotherDemoText = this.anotherTextField.getValue();

		    // Initialize a new promise
		    this.deferred = $.Deferred();

		    // Initialize our word list
		    this.list = [];

		    // We will do a asynchronous AJAX request to frwiki's API
		    this.frwikiApi = new mw.ForeignApi( 'https://fr.wikipedia.org/w/api.php', {
			    anonymous: true,
			    parameters: { origin: '*' },
			    ajax: { timeout: 10000 }
		    } );

		    // To get 10 random pages from the main namespace
		    this.frwiki.get( {
			    "action": "query",
			    "format": "json",
			    "list": "random",
			    "rnnamespace": "0",
			    "rnlimit": "10"
		    } ).then( function( data ) {
			    // We process here the result of our request
			    // By adding each page title to our list
			    var i;
			    for ( var i=0; i < data.query.random.length; i++ ) {
				    generator.list.push( data.query.random[ i ].title );
			    }

			    // And once we're done we can resolve our promise
			    // So the process can end
			    generator.deferred.resolve();
		    } ).fail( function ( error ) {
			    // If something goes wrong, we reject our promise
			    // So the process stops and our popup shows the error message
			    generator.deferred.reject( new OO.ui.Error( error ) );
		    } );

		    // At this point we're not done yet, make the dialog closing process
		    // to wait the promise to be resolved or rejected
		    return this.deferred.promise();
	    };

    } ( mediaWiki, jQuery, mediaWiki.recordWizard, OO ) );
}