%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/wiki.varak.net/extensions/MobileFrontend/src/mobile.startup/
Upload File :
Create Path :
Current File : /www/varak.net/wiki.varak.net/extensions/MobileFrontend/src/mobile.startup/rlModuleLoader.js

var LoadingOverlay = require( './LoadingOverlay' );

/**
 * Utility library for looking up details on the current user
 * @class loader
 * @singleton
 */
module.exports = {
	/**
	 * Loads a module via ResourceLoader
	 * and displays a full screen LoadingOverlay during load time.
	 * @memberof loader
	 * @instance
	 * @param {string} name ResourceLoader module name to load asynchronously.
	 * @param {boolean} delegateHide if true the caller is responsible for hiding
	 *  the intermediate loader.
	 * @param {boolean} [showLoadingOverlay] if false a loading overlay will be hidden while
	 *  loading the module. Defaults to true.
	 * @return {jQuery.Promise}
	 */
	loadModule: function ( name, delegateHide, showLoadingOverlay ) {
		var loadingOverlay = new LoadingOverlay();

		showLoadingOverlay = ( showLoadingOverlay !== undefined ) ? showLoadingOverlay : true;
		if ( showLoadingOverlay ) {
			loadingOverlay.show();
		}

		function hideOverlayIfNeeded() {
			if ( !delegateHide && showLoadingOverlay ) {
				loadingOverlay.hide();
			}
		}
		return mw.loader.using( name ).then( function () {
			hideOverlayIfNeeded();

			return loadingOverlay;
		}, function () {
			hideOverlayIfNeeded();
		} );
	}
};

Zerion Mini Shell 1.0