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

MediaWiki:Gadget-countdown.js

MediaWiki interface page
Revision as of 22:11, 10 November 2021 by ChaoticShadow (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
(function ($) {
	function format(n, suffixes) {
		const pr = new Intl.PluralRules('en-US');
		return n + ' ' + suffixes.get(pr.select(n));
	}
	
	function calcDiff(d1, d2) {
		let remDiff = d2 - d1;
		const days = Math.floor(remDiff / (1000*60*60*24));
		remDiff = remDiff % (1000*60*60*24);
		const hours = Math.floor(remDiff / (1000*60*60));
		remDiff = remDiff % (1000*60*60);
		const minutes = Math.floor(remDiff / (1000*60));
		
		return {
			days: days,
			hours: hours,
			minutes: minutes
		};
	}
	
	const daySuffixes = new Map([
		['one',   'day'],
		['other', 'days'],
	]);
	const hourSuffixes = new Map([
		['one', 'hour'],
		['other', 'hours']
	]);
	const minuteSuffixes = new Map([
		['one', 'minute'],
		['other', 'minutes']
	]);
	
	function updateHTML(targetDate, countdownNode, finishedText) {
		let finished = false;
		let diff = calcDiff(new Date(), targetDate);
		
		countdownNode.html(
			`
			${format(diff.days, daySuffixes)}, 
			${format(diff.hours, hourSuffixes)}, 
			${format(diff.minutes, minuteSuffixes)}
			`
		);
		
		if (diff.days <= 0 && diff.hours <= 0 && diff.minutes <= 0) {
			countdownNode.html(finishedText || 'Countdown has ended');
		}
		
		return finished;
	}
	
	function init() {
		let intervals = [];
		
		$('.js-countdown-wrapper2').each(function(idx) {
			
			let countdown = $(this).children('.js-countdown');
			let d1 = new Date(countdown.data('countdown-end'));
			
			const finished = updateHTML(d1, countdown, countdown.data('end-text'));
			$(this).css({ 'display': 'block'});
			
			let interval = setInterval(function() {
				const finished = updateHTML(d1, countdown, countdown.data('end-text'));
				if (finished) {
					clearInterval(interval);
				}
			}, 30000);
			intervals.push(interval);
		});
	}
	
	$(document).ready(init);
}(jQuery));
Cookies help us deliver our services. By using our services, you agree to our use of cookies.