Introducing Countdown.js

Hey people! Just a quick article to introduce Countdown.js, a little script I recently made. During the last weeks, I’ve been practicing with JavaScript. It has been on my wishlist for 2013 and I’m glad that I could made some progress with it.

In order to start making clean scripts and not poorly designed pieces of crappy jQuery dumped in the global object, I have revisited an old countdown script I made a while back with the object literal pattern.

Why another countdown script?

There are like a billion scripts for countdowns, timers and clocks made of JavaScript. That’s like the “hello world!” of JS scripts so why making another one? Everything has been done yet!

Well, for one it was mostly about practicing. Making a timer script is something quite simple yet there is often lot of room for improvements. It turns out to be quite a nice playground to work in.

Secondly, I needed a script able to display a countdown in the way I like and not only hh:mm:ss. I wanted to be able to display a sentence like There are still X days, Y hours and Z minutes left or whatever. And since I didn’t know any script that allowed the use of patterns in a string ({days}, {years}…), I started building one.

It worked pretty well and the code was clean enough so that I wasn’t ashamed to release it on CodePen in early September. But I wanted to try something else than the litteral object pattern.

As good as this pattern can be, it becomes highly annoying when you have to deal with multiple occurrences of your widget on the same page. For some things, that’s not a problem at all. But you could definitely come with the need to display multiple timers/countdowns on the same page so I needed something moar.

So here comes Object Oriented JavaScript in all its glory!

How to

Well, obviously you need to include the script in your page. But I made it pretty tiny plus it doesn’t have any requirement! It’s under 2Kb minified (which is about ~1.3Kb once gzipped).

script src="js/countdown.js">script>

Then using the countdown is as easy as instanciating the Countdown class:

var countdown = new Countdown()

This creates a new instance with all defaults values but you can pass quite a few options:

selector

Default: .timer

The selector you want to inject Countdown into. It should be a valid string for document.querySelector().

dateStart

Default: new Date() (now)

The date to start the countdown to. It should be a valid instance of class Date

dateEnd

Default: new Date(new Date().getTime() + (24 * 60 * 60 * 1000)) (tomorrow)

The date to end the countdown to. It should be a valid instance of class Date

msgBefore

Default: Be ready!

The message to display before reaching dateStart

msgAfter

Default: It’s over, sorry folks!

The message to display once reaching dateEnd

msgPattern

Default: {days} days, {hours} hours, {minutes} minutes and {seconds} seconds left

The message to display during the countdown where values between braces get replaced by actual numeric values. The possible patterns are:

  • {years}
  • {months}
  • {weeks}
  • {days}
  • {hours}
  • {minutes}
  • {seconds}

onStart

Default: null

The function to run whenever the countdown starts.

onEnd

Default: null

The function to run whenever the countdown stops.

Example

var countdown = new Countdown({
selector: '#timer',
msgBefore: 'Will start at Christmas!',
msgAfter: 'Happy new year folks!',
msgPattern:
'{days} days, {hours} hours and {minutes} minutes before new year!',
dateStart: new Date('2013/12/25 12:00'),
dateEnd: new Date('Jan 1, 2014 12:00'),
onStart: function() {
console.log('Merry Christmas!')
},
onEnd: function() {
console.log('Happy New Year!')
}
})

Pushing things further

Custom events

The script doesn’t use jQuery at all, mostly because there is no need for such a library for this. However if you happen to use jQuery in your project, you’ll be glad to know the Countdown throws custom events on the element you’re binding the countdown to.

As of today, two events are being fired: countdownStart and countdownEnd. You can use them as follow:

var countdown = new Countdown({
selector: '.timer'
})

$('.timer').on('countdownStart', function() {
console.log('The countdown has been started.')
})

$('.timer').on('countdownEnd', function() {
console.log('The countdown has reached 0.')
})

Pretty neat, right?

Validating code

My brother Loïc helped me pushing things further by adding a couple of things to the project on GitHub:

  • JSHint tests to check JavaScript code quality
  • Jasmine tests to make sure the script does what it’s supposed to do
  • Grunt to automate building process (also thanks to Lucas Churchill for this)

Thanks bro! Anyway, I’m proud to tell this script as passed strict JSHint validations and Jasmine tests! Hurray!

Final words

That’s all folks! I hope you like this script and if you find anything worth mentioning, please be sure to shoot in the comments or directly on the GitHub repo.

Oh and if you only want to hack around the code, check this pen:

See the Pen Object-oriented JS Countdown Class by Hugo “Kitty” Giraudel (@HugoGiraudel) on CodePen

Hey people! Just a quick article to introduce Countdown.js, a little script I recently made. During the last weeks, I’ve been practicing with JavaScript. It has been on my wishlist for 2013 and I’m glad that I could made some progress with it.

In order to start making clean scripts and not poorly designed pieces of crappy jQuery dumped in the global object, I have revisited an old countdown script I made a while back with the object literal pattern.

Why another countdown script?

There are like a billion scripts for countdowns, timers and clocks made of JavaScript. That’s like the “hello world!” of JS scripts so why making another one? Everything has been done yet!

Well, for one it was mostly about practicing. Making a timer script is something quite simple yet there is often lot of room for improvements. It turns out to be quite a nice playground to work in.

Secondly, I needed a script able to display a countdown in the way I like and not only hh:mm:ss. I wanted to be able to display a sentence like There are still X days, Y hours and Z minutes left or whatever. And since I didn’t know any script that allowed the use of patterns in a string ({days}, {years}…), I started building one.

It worked pretty well and the code was clean enough so that I wasn’t ashamed to release it on CodePen in early September. But I wanted to try something else than the litteral object pattern.

As good as this pattern can be, it becomes highly annoying when you have to deal with multiple occurrences of your widget on the same page. For some things, that’s not a problem at all. But you could definitely come with the need to display multiple timers/countdowns on the same page so I needed something moar.

So here comes Object Oriented JavaScript in all its glory!

How to

Well, obviously you need to include the script in your page. But I made it pretty tiny plus it doesn’t have any requirement! It’s under 2Kb minified (which is about ~1.3Kb once gzipped).

<script src="js/countdown.js">script>

Then using the countdown is as easy as instanciating the Countdown class:

var countdown = new Countdown()

This creates a new instance with all defaults values but you can pass quite a few options:

selector

Default: .timer

The selector you want to inject Countdown into. It should be a valid string for document.querySelector().

dateStart

Default: new Date() (now)

The date to start the countdown to. It should be a valid instance of class Date

dateEnd

Default: new Date(new Date().getTime() + (24 * 60 * 60 * 1000)) (tomorrow)

The date to end the countdown to. It should be a valid instance of class Date

msgBefore

Default: Be ready!

The message to display before reaching dateStart

msgAfter

Default: It’s over, sorry folks!

The message to display once reaching dateEnd

msgPattern

Default: {days} days, {hours} hours, {minutes} minutes and {seconds} seconds left

The message to display during the countdown where values between braces get replaced by actual numeric values. The possible patterns are:

  • {years}
  • {months}
  • {weeks}
  • {days}
  • {hours}
  • {minutes}
  • {seconds}

onStart

Default: null

The function to run whenever the countdown starts.

onEnd

Default: null

The function to run whenever the countdown stops.

Example

var countdown = new Countdown({
selector: '#timer',
msgBefore: 'Will start at Christmas!',
msgAfter: 'Happy new year folks!',
msgPattern:
'{days} days, {hours} hours and {minutes} minutes before new year!',
dateStart: new Date('2013/12/25 12:00'),
dateEnd: new Date('Jan 1, 2014 12:00'),
onStart: function() {
console.log('Merry Christmas!')
},
onEnd: function() {
console.log('Happy New Year!')
}
})

Pushing things further

Custom events

The script doesn’t use jQuery at all, mostly because there is no need for such a library for this. However if you happen to use jQuery in your project, you’ll be glad to know the Countdown throws custom events on the element you’re binding the countdown to.

As of today, two events are being fired: countdownStart and countdownEnd. You can use them as follow:

var countdown = new Countdown({
selector: '.timer'
})

$('.timer').on('countdownStart', function() {
console.log('The countdown has been started.')
})

$('.timer').on('countdownEnd', function() {
console.log('The countdown has reached 0.')
})

Pretty neat, right?

Validating code

My brother Loïc helped me pushing things further by adding a couple of things to the project on GitHub:

  • JSHint tests to check JavaScript code quality
  • Jasmine tests to make sure the script does what it’s supposed to do
  • Grunt to automate building process (also thanks to Lucas Churchill for this)

Thanks bro! Anyway, I’m proud to tell this script as passed strict JSHint validations and Jasmine tests! Hurray!

Final words

That’s all folks! I hope you like this script and if you find anything worth mentioning, please be sure to shoot in the comments or directly on the GitHub repo.

Oh and if you only want to hack around the code, check this pen:

See the Pen Object-oriented JS Countdown Class by Hugo “Kitty” Giraudel (@HugoGiraudel) on CodePen


Print Share Comment Cite Upload Translate
APA
Hugo “Kitty” Giraudel | Sciencx (2024-03-28T18:19:56+00:00) » Introducing Countdown.js. Retrieved from https://www.scien.cx/2013/12/12/introducing-countdown-js/.
MLA
" » Introducing Countdown.js." Hugo “Kitty” Giraudel | Sciencx - Thursday December 12, 2013, https://www.scien.cx/2013/12/12/introducing-countdown-js/
HARVARD
Hugo “Kitty” Giraudel | Sciencx Thursday December 12, 2013 » Introducing Countdown.js., viewed 2024-03-28T18:19:56+00:00,<https://www.scien.cx/2013/12/12/introducing-countdown-js/>
VANCOUVER
Hugo “Kitty” Giraudel | Sciencx - » Introducing Countdown.js. [Internet]. [Accessed 2024-03-28T18:19:56+00:00]. Available from: https://www.scien.cx/2013/12/12/introducing-countdown-js/
CHICAGO
" » Introducing Countdown.js." Hugo “Kitty” Giraudel | Sciencx - Accessed 2024-03-28T18:19:56+00:00. https://www.scien.cx/2013/12/12/introducing-countdown-js/
IEEE
" » Introducing Countdown.js." Hugo “Kitty” Giraudel | Sciencx [Online]. Available: https://www.scien.cx/2013/12/12/introducing-countdown-js/. [Accessed: 2024-03-28T18:19:56+00:00]
rf:citation
» Introducing Countdown.js | Hugo “Kitty” Giraudel | Sciencx | https://www.scien.cx/2013/12/12/introducing-countdown-js/ | 2024-03-28T18:19:56+00:00
https://github.com/addpipe/simple-recorderjs-demo