MediaWiki:Gadget-ajaxWatchlist.js

En el mundo actual, MediaWiki:Gadget-ajaxWatchlist.js es un tema que ha cobrado una relevancia sin precedentes. Con el avance de la tecnología y la globalización, MediaWiki:Gadget-ajaxWatchlist.js se ha convertido en un punto de interés para personas de todas las edades y ámbitos de la vida. Desde su impacto en la sociedad hasta sus implicaciones en la cultura popular, MediaWiki:Gadget-ajaxWatchlist.js es un tema que no deja indiferente a nadie. En este artículo, exploraremos diferentes aspectos relacionados con MediaWiki:Gadget-ajaxWatchlist.js, desde su origen hasta sus posibles desarrollos futuros. Déjate llevar por este recorrido y descubre cómo MediaWiki:Gadget-ajaxWatchlist.js ha marcado un antes y un después en el mundo en que vivimos.
/**
 * ajaxWatchlist.js
 *
 * A watchlist that automatically updates, so you can
 * spend less time refreshing and more time... er,
 * doing whatever you do.
 * see original code <https://en.wikipedia.orghttps://wikifreehand.com/es/User:Theopolisme/Scripts/ajaxWatchlist.js>
 *
 * @author Theopolisme
 * @author He7d3r
 */
( function ( $, mw ) {
	"use strict";
	var jqxhr, interval, $ajaxWatchlist;

	function updateWatchlist () {
		var $loadingIndicator = $( '.watchlistLoadingIndicator' ),
			$content = $( '#mw-content-text' );

		$ajaxWatchlist = $( '#ajaxWatchlist' );

		// If this is the first time we run the script, wrap everything
		// after and including the watchlist form in a div with the id
		// "ajaxWatchlist".
		if ( $ajaxWatchlist.length === 0 ) {
			$content.find( '#mw-watchlist-form' ).nextAll().addBack().wrapAll( '<div id="ajaxWatchlist"></div>' );
			$ajaxWatchlist = $( '#ajaxWatchlist' )
				.hover( function () {
					jqxhr.abort();
					clearInterval( interval );
				}, function () {
					interval = setInterval( updateWatchlist, window.watchlistUpdateFrequency || 20000 );
				} );
		}

		// Create a new loading indicator if it doesn't already
		// exist. If it already exists, just show it.
		if ( $loadingIndicator.length === 0 ) {
			$loadingIndicator = $( '<span>' )
				.appendTo( '.firstHeading' )
				.addClass( 'watchlistLoadingIndicator' )
				.append(
					$.createSpinner( {
						size: 'medium',
						type: 'inline'
					} ),
					'Actualizando lista de seguimiento...'
				);
		} else {
			$loadingIndicator.show();
		}

		// Make the ajax request to actually update the watchlist
		jqxhr = $.ajax( {
			url: location.href,
			dataType: 'html'
		} )
		.done( function ( data ) {
			// If the watchlist contents have changed, update the page
			// to display the new contents.
			var $newContent = $( data ).find( '#mw-content-text #mw-watchlist-form' ).nextAll().addBack(); // Same selector as $ajaxWatchlist
			if ( $ajaxWatchlist.text() !== $newContent.text() ) {
				$ajaxWatchlist.empty().append( $newContent );
				mw.hook( 'wikipage.content' ).fire( $ajaxWatchlist ); // So scripts will run on the updated content
			}
			$loadingIndicator.hide();
		} )
		.fail( function ( jqXHR, textStatus ) {
			// Hide the indicator and then display an error notification
			$loadingIndicator.hide();
			if ( textStatus !== 'abort' ) {
					mw.notify( 'ajaxWatchlist: No se puede actualizar la lista de seguimiento.' );
			}
		} );
	}

	if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' ) {
		// Add custom css for the loading indicator
		mw.util.addCSS( '.watchlistLoadingIndicator { float: right; font-size: 12px; } ' );
		// Run updateWatchlist() every 20 seconds by default (can be configured via window.watchlistUpdateFrequency)
		mw.loader.using( , function () {
			interval = setInterval( updateWatchlist, window.watchlistUpdateFrequency || 20000 );
		} );
	}
}( jQuery, mediaWiki ) );