Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Gadget-recentChanges.js: Difference between revisions

MediaWiki interface page
More languages
m (Trying to store entire line into variable so it gets easier to track)
m (Forgot whitespace)
 
(24 intermediate revisions by the same user not shown)
Line 1: Line 1:
//<nowiki>
/**
/**
  * Adds a recent changes widget to the sidebar
  * Recent changes sidebar gadget for Citizen skin
  *
  * Originally created by @author JaydenKieran (RunescapeWiki), adapted to the Citizen skin by Forte (ProleWiki)
* @author JaydenKieran
**/
*/
"use strict";
'use strict';
 


;
(function($, mw) {
(function($, mw) {
     var $prependTo
function format_time(seconds) {
     var $rcContainer
var unit_str = '';
     var recentChanges
var n = '';
     var $recentChangesDOM
if (seconds < 60) {
unit_str = 's'; // Shorthand for seconds
n = seconds;
} else if (seconds < 3600) {
unit_str = 'm'; // Same for minutes
n = Math.floor(seconds/60);
} else if (seconds < 86400) {
unit_str = 'h'; // Hours...
n = Math.floor(seconds/3600);
} else if (seconds >= 86400) {
unit_str = 'd'; // You get the point
n = Math.floor(seconds/86400);
} else {
unit_str = 'm'; // Defaults to minutes in case shit goes wrong
n = 1 + Math.floor(Math.random() * 10);
}
return n + unit_str + ' ago'; // Produces e.g. for (n=3 | unit_str="h"): "3h ago".
// Change text and order to your language
}
// Text to be changed according to language
var str_recentChanges = 'Recent changes';
var str_noRecentChanges = 'No recent changes.';
var str_recentLink = '/wiki/Special:RecentChanges';
var str_seeMore = 'See more...';
     var $prependTo;
     var $rcContainer;
     var recentChanges;
     var $recentChangesDOM;
    var $final;


     function init() {
     function init() {
         $prependTo = $('#p-Navigation');
         $prependTo = $('#p-navigation');
         var api = new mw.Api();
         var api = new mw.Api();
 
       
        // Build our container
    $final = $('<ul>').after($rcContainer);
        var $rcLabel = $('<label>').text('Recent changes')
var $div = $('<div>').text(str_recentChanges)
.addClass('citizen-menu__heading')
    .addClass('citizen-menu__heading');
.attr('id', 'p-RecentChanges-label');
         $rcContainer = $('<nav>')
         $rcContainer = $('<nav>')
.addClass('mw-portlet mw-portlet-RecentChanges')
.addClass('citizen-menu mw-portlet mw-portlet-RecentChanges')
.attr('id', 'p-RecentChanges')
.attr('id', 'p-RecentChanges')
.append($rcLabel);
.append($div)
 
.append($final);
       
         // Add the container to the sidebar
         // Add the container to the sidebar
         $prependTo.after($rcContainer)
         $prependTo.after($rcContainer)
Line 61: Line 87:
currentDate = currentDate.getTime() + (currentDate.getTimezoneOffset() * 60000)
currentDate = currentDate.getTime() + (currentDate.getTimezoneOffset() * 60000)
var diffDate = currentDate - editDate;
var diffDate = currentDate - editDate;
var diffDays = Math.floor(diffDate/(1000*60*60*24));
var diffHours = Math.floor(diffDate/(1000*60*60));
var diffMinutes = Math.floor(diffDate/(1000*60));
var diffSeconds = Math.floor(diffDate/(1000));
var diffSeconds = Math.floor(diffDate/(1000));
if (diffDays > 0) {
Time = format_time(diffSeconds) + ' – ';
Time = diffDays + 'd ago – ';
} else if (diffHours > 0) {
var $a = $('<a>')
Time = diffHours + 'h ago – ';
                            .css('white-space', 'normal')
} else if (diffMinutes > 0) {
Time = diffMinutes + 'm ago – ';
} else if (diffSeconds > 0) {
Time = diffSeconds + 's ago – ';
} else {
Time = 1 + Math.floor(Math.random() * 10) + 'm ago – ';
}
 
                        return $('<div>').addClass('rc-sidebar-item').append(
                            $('<a>')
                             .addClass('rc-sidebar-page')
                             .addClass('rc-sidebar-page')
                            .css({
                            'padding-top': '0.25em',
                            'padding-bottom': '0.25em'
                            })
                             .text(' ' + rc.title)
                             .text(' ' + rc.title)
                             .attr('href', new mw.Title(rc.title).getUrl()),
                             .attr('href', new mw.Title(rc.title).getUrl());
                            $('<p>')
                        var $p = $('<p>')
                            .css({
                            'text-align': 'right',
                            'margin-right': '2.5em'
                            })
                             .addClass('rc-sidebar-user')
                             .addClass('rc-sidebar-user')
                             .text(Time)
                             .text(Time)
                             .append(
                             .append(
                                 $('<a>')
                                 $('<a>')
                                .css({
                            'display' : 'contents',
                            'padding' : '0px'
                                })
                                 .text(rc.user)
                                 .text(rc.user)
                                 .attr('href', new mw.Title(rc.user, 2).getUrl())
                                 .attr('href', new mw.Title(rc.user, 2).getUrl())
                             )
                             );
                         )
                         return $('<li>').addClass('mw-list-item').append($a,$p);
                     })
                     })
                 } else {
                 } else {
                     $recentChangesDOM = $('<p>').text('No recent changes.')
                     $recentChangesDOM = $('<p>').text(str_noRecentChanges)
                 }
                 }
 
                 $final.append($recentChangesDOM)
                 $rcContainer.append($recentChangesDOM)
                 var $showMore
                 var $showMore
$showMore = $('<div>')
$showMore = $('<div>')
Line 104: Line 128:
                 $('<a>')
                 $('<a>')
                 .addClass('rc-sidebar-page')
                 .addClass('rc-sidebar-page')
                 .text('See more...')
                 .text(str_seeMore)
                 .attr('href', '/wiki/Special:RecentChanges')
                 .attr('href', str_recentLink)
                 )
                 )
                 $rcContainer.append($showMore)
                 $final.append($showMore)
             })
             })
             .fail(function(_, data) {
             .fail(function(_, data) {
Line 118: Line 142:
     })
     })
}(jQuery, mediaWiki));
}(jQuery, mediaWiki));
//</nowiki>

Latest revision as of 12:07, 18 September 2024

/**
 *		Recent changes sidebar gadget for Citizen skin
 *		Originally created by @author JaydenKieran (RunescapeWiki), adapted to the Citizen skin by Forte (ProleWiki)
**/
"use strict";


(function($, mw) {
	function format_time(seconds) {
		var unit_str = '';
		var n = '';
		if (seconds < 60) {
			unit_str = 's';				// Shorthand for seconds
			n = seconds;
		} else if (seconds < 3600) {
			unit_str = 'm';				// Same for minutes
			n = Math.floor(seconds/60);
		} else if (seconds < 86400) {
			unit_str = 'h';				// Hours...
			n = Math.floor(seconds/3600);
		} else if (seconds >= 86400) {
			unit_str = 'd';				// You get the point
			n = Math.floor(seconds/86400);
		} else {
			unit_str = 'm';				// Defaults to minutes in case shit goes wrong
			n = 1 + Math.floor(Math.random() * 10);
		}
		return n + unit_str + ' ago';	// Produces e.g. for (n=3 | unit_str="h"): "3h ago". 
										// Change text and order to your language
	}
	// Text to be changed according to language
	var str_recentChanges = 'Recent changes';		
	var str_noRecentChanges = 'No recent changes.';
	var str_recentLink = '/wiki/Special:RecentChanges';
	var str_seeMore = 'See more...';
    var $prependTo;
    var $rcContainer;
    var recentChanges;
    var $recentChangesDOM;
    var $final;

    function init() {
        $prependTo = $('#p-navigation');
        var api = new mw.Api();
        
    	$final = $('<ul>').after($rcContainer);
		var $div = $('<div>').text(str_recentChanges)
    		.addClass('citizen-menu__heading');
        $rcContainer = $('<nav>')
			.addClass('citizen-menu mw-portlet mw-portlet-RecentChanges')
			.attr('id', 'p-RecentChanges')
			.append($div)
			.append($final);
        
        // Add the container to the sidebar
        $prependTo.after($rcContainer)

        api.get({
                action: "query",
                list: "recentchanges",
                rcprop: "title|timestamp|sizes|user",
                rcnamespace: "0|3000",
                rclimit: "5",
                rctype: "edit|new",
                rcshow: "!bot|!redirect",
                rctoponly: 1,
                format: "json"
            })
            .done(function(data) {
                if (data.query && data.query.recentchanges) {
                    recentChanges = data.query.recentchanges
                }

                if (recentChanges.length > 0) {
                    var Time = 1;
                    $recentChangesDOM = recentChanges.map(function(rc) {
                        const timeMatch = rc.timestamp.match(/([0-9]+)-([0-9]+)-([0-9]+)T([0-9]+):([0-9]+):([0-9]+)Z/);
                    	var editYear = timeMatch[1];
                    	var editMonth = timeMatch[2];
                    	var editDay = timeMatch[3];
                    	var editHour = timeMatch[4];
                    	var editMinute = timeMatch[5];
                    	var editSecond = timeMatch[6];
                    	
                    	var editDate = new Date(editYear, (editMonth-1), editDay, editHour, editMinute, editSecond);
						var currentDate = new Date();
						currentDate = currentDate.getTime() + (currentDate.getTimezoneOffset() * 60000)
						var diffDate = currentDate - editDate;
						var diffSeconds = Math.floor(diffDate/(1000));
						
						Time = format_time(diffSeconds) + ' – ';
						
						var $a = $('<a>')
                            .css('white-space', 'normal')
                            .addClass('rc-sidebar-page')
                            .css({
                            	'padding-top': '0.25em',
                            	'padding-bottom': '0.25em'
                            })
                            .text(' ' + rc.title)
                            .attr('href', new mw.Title(rc.title).getUrl());
                        var $p = $('<p>')
                            .css({
                            	'text-align': 'right',
                            	'margin-right': '2.5em'
                            	})
                            .addClass('rc-sidebar-user')
                            .text(Time)
                            .append(
                                $('<a>')
                                .css({
                            	'display' : 'contents',
                            	'padding' : '0px'
                                })
                                .text(rc.user)
                                .attr('href', new mw.Title(rc.user, 2).getUrl())
                            );
                        return $('<li>').addClass('mw-list-item').append($a,$p);
                    })
                } else {
                    $recentChangesDOM = $('<p>').text(str_noRecentChanges)
                }
                $final.append($recentChangesDOM)
                var $showMore
				$showMore = $('<div>')
                	.addClass('rc-sidebar-item rc-sidebar-more')
                	.append(
                		$('<a>')
                		.addClass('rc-sidebar-page')
                		.text(str_seeMore)
                		.attr('href', str_recentLink)
                )
                $final.append($showMore)
            })
            .fail(function(_, data) {
                alert(data.error.info)
            });
    }

    mw.loader.using(['mediawiki.util', 'mediawiki.api'], function() {
        $(init)
    })
}(jQuery, mediaWiki));