25
Thu, Apr
0 New Articles

TechTip: Let’s Have a Date, Part 2

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Date-handling in jQuery is so much easier with moment.js.

In the last tip, I showed you the fundamentals of moment.js, and I hope that got you started. This tip will show you some more basics and hopefully increase your interest in the moment.js plugin.

Moment.get ()

Sometimes you need to be able to do something at a specific time. In my first example, I show you a way to do that using the “set” function that moment.js provides. My example defines a simple clock that updates every 1 second, and I want to something different every 15 seconds, in this case change the background color in a <div> box.

In a real-world example, you might want to rotate through different figures or something of the sort.

Here is the code to define the clock:

$('#clock').html(moment().format('HH:mm:ss') );

I then use setInterval to call updateClock every 1 second.

setInterval(updateClock, 1000);

Here is the function that sets the clock and uses moment.get() to get the second part of the current time.

var currentSeconds = moment().get('second');

I then use a simple if/else block to set the color:

if ( currentSeconds == 15 ) {

$('#setColor').css('background-color','BurlyWood');

}

else if ( currentSeconds == 30 ) {

      $('#setColor').css('background-color','SeaGreen');

}

else if ( currentSeconds == 45 ) {

      $('#setColor').css('background-color','Wheat');

}

else if ( currentSeconds == 00 ) {

      $('#setColor').css('background-color','Crimson');

}

The HTML to define the clock and the box looks like this:

<div id="clock" class="h1">...</div>           

       

<div id="setColor" style="width:100px;height:100px;background-color:Tomato" class="border border-dark p2 text-center"></div>

Figure 1 shows the results (Note: I used Bootstrap together with jQuery to easily make the figures in this article.):

TechTip: Let’s Have a Date, Part 2 - Figure 1 

Figure 1: Use moment.get() to change color every 15 seconds. (Click image or here to try the example.)

There is also a moment.set() function that can change the date, but I simply could not get my head around a good example, so I left it out, but it’s there and can be called if ever needed.

You can of course also use moment.js to get the year, month, week, day, and likewise from a date, which is very useful when you want to make something happen on any specific part of any date.

Use moment.js to Add to or Subtract from a Date

Another useful function is the ability to add to or subtract from a date in an easy way. This is handy when you create from/to date fields when creating lists to display a subset of data.

You will most likely have a date picker to select a date range, but wouldn’t it be nice if you could provide the date range that the user is mostly likely to select when executing the list? Moment.js lets you do that easily, as you can see by the examples below.

Set the root date:

$('#root-date').html( moment().format('DD-MM-YYYY HH:mm:ss') );

Add to the root date:

$('#ex1').html( moment().add(70,'days').format('DD-MM-YYYY HH:mm:ss') + ' - add 70 days' );

$('#ex2').html( moment().add(5,'hours').format('DD-MM-YYYY HH:mm:ss') + ' - add 5 hours' );

$('#ex3').html( moment().add(5,'minutes').add(2,'months').format('DD-MM-YYYY HH:mm:ss') + ' - add 2 months and 3 minutes' );

$('#ex4').html( moment().add(2,'isoweek').format('DD-MM-YYYY HH:mm:ss') + ' - add 2 iso weeks' );

Subtract from the root date:

$('#ex5').html( moment().subtract(2,'isoweek').format('DD-MM-YYYY HH:mm:ss') + ' - subtract 2 iso weeks' );

$('#ex6').html( moment().subtract(70,'days').subtract(5,'hours').subtract(100,'seconds').format('DD-MM-YYYY HH:mm:ss') + ' - subtract 70 days, 5 hours and 100 seconds' );

Figure 2 shows the results:

TechTip: Let’s Have a Date, Part 2 - Figure 2

Figure 2: Add to or subtract from a date. (Click image or here to try the example.)

Use moment.js to Calculate Time Between Dates

The last example shows how you can calculate the hours, minutes, and seconds between two dates using moment.js.

Let’s start by looking at the result, shown in Figure 3:

TechTip: Let’s Have a Date, Part 2 - Figure 3

Figure 3: Calculate the time between dates. (Click image or here to try the example.)

The main thing in this example is the function called calculateDuration(), which looks like this:

function calculateDuration()

{

        

A)

// Get dates

var fromDate = $('#from-date').val();

var toDate = $('#to-date').val();

B)

var fromDate = moment(fromDate,'DD-MM-YYYY HH:mm:ss');

var toDate = moment(toDate,'DD-MM-YYYY HH:mm:ss');

C)

var seconds = toDate.diff(fromDate,'seconds');   

D)

if ( seconds > 0 ) {

      $('#duration-date-seconds').html( seconds );

      var time = moment.duration(seconds,'seconds').format('HH:mm:ss');

      $('#duration-date-time').html( time );   

} else {

      $('#duration-date-seconds').html( 'error' );

      $('#duration-date-time').html( 'error' );

}

     

}

Here’s what happens:

The function retrieves the from and to dates from the input fields at A).

The two dates are then converted to moment.js objects in B).

At C), the seconds between the two dates are calculated using the diff() method.

When the seconds are calculated, we convert back to hours, minutes, and seconds unless the seconds were less than zero, which means that the from date was bigger than the to date, in which case we show an error.

All this happens at D).

I have made it so that you can change the dates and calculate the time.

Let’s Sum It Up

I have shown you some basic examples of what moment.js can do, and I hope these will get you started.

Moment.js has much more than what I have written about, so if you need things like locales or validation or if you want to dig deeper into the “display” options, look here:

Display

https://momentjs.com/docs/#/displaying/

Query (validation)

https://momentjs.com/docs/#/query/

Locale

https://momentjs.com/docs/#/durations/locale/

Till next time, dig into the world of moment.js and become a true date master. Discover and use all the good functionality that has been put into moment.js.

Jan Jorgensen

Jan Jorgensen is one of the owners of www.reeft.dk, which specializes in mobile and i5 solutions. He works with RPG, HTML, JavaScript, Perl, and PHP. You can reach him at This email address is being protected from spambots. You need JavaScript enabled to view it.

 

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: