Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 16, 2020 03:08 pm GMT

Format Time and Date Relatively with JavaScript

Intl.RelativeTimeFormat enables localized formatting of relative times without sacrificing performance.

We've all seen websites using Just now, an hour ago, a week ago etc. to describe when the post was created.
Almost all of these websites uses popular libraries like Moment.js, Globalize, date_fns and-all to use this feature.

Today we'd look at how we can do that with just Vanilla JavaScript!

A Quick Example

Just to show you how the Intl.RelativeTimeFormat constructor works

const when = new Intl.RelativeTimeFormat('en').format(-1, 'day');console.log(when);// "1 day ago"
Enter fullscreen mode Exit fullscreen mode

Here we passed the Intl.RelativeTimeFormat an argument, a string with a BCP 47 language tag. This argument decides the output language.

Additionally, the Intl.RelativeTimeFormat constructor accepts an optional options argument, which gives us more control over the output. We'd talk about it later in this tutorial.

Then we told the Intl.RelativeTimeFormat constructor to format the relative time (the -1 value) in day unit.

Lets tweak this code a bit (copy this and check the code in your console)

const when = new Intl.RelativeTimeFormat('bn').format(-5, 'day');console.log(when);// "  " (translation: 5 days ago)
Enter fullscreen mode Exit fullscreen mode

And of course we can set times in future as well

const when = new Intl.RelativeTimeFormat('en').format(2, 'day');console.log(when);// in 2 days
Enter fullscreen mode Exit fullscreen mode

The options Object

The options object gives us more control over the output. It have three possible values:

  • localeMatcher
  • numeric
  • style

Read about the options in details here

const options = {  numeric: 'auto',}const when = new Intl.RelativeTimeFormat('en', options).format(-1, 'day')console.log(when);// yesterday
Enter fullscreen mode Exit fullscreen mode

Possible Values for Unit

You can pass in the following values in Intl.RelativeTimeFormat(locale).format(relative time, **UNIT**):

  • second
  • minute
  • hour
  • day
  • month
  • quarter
  • year

Logically Show When Something Was Created

Suppose your post was created at some date

const createdAt = new Date(2020, 11, 10); // December 10, 2020
Enter fullscreen mode Exit fullscreen mode

And I, the user visited your post right now

const userVisited = new Date();
Enter fullscreen mode Exit fullscreen mode

If we subtract createdAt from userVisited we'll get a number in milliseconds

const diff = userVisited - createdAt;// some value in milliseconds
Enter fullscreen mode Exit fullscreen mode

Now we need to convert this diff in days

const toSec = (diff / 1000);// convert the milliseconds to secondsconst toMin = (toSec / 60);// convert the seconds to minutesconst toHour = toMin / 60;// convert the minutes to hoursconst toDays = toHour / 24;// convert the hours to days// now we'll round the days up/downconst rounded = Math.round(toDays);
Enter fullscreen mode Exit fullscreen mode

And finally we'll pass the rounded value to Intl.RelativeTimeFormat constructors format method

const when = new Intl.RelativeTimeFormat('en').format(-rounded, 'day');// because your post was created in past// we pass a minus sign before the rounded// to get the output in past tense
Enter fullscreen mode Exit fullscreen mode

That's it for today, obviously you can make this code a lot more dynamic to show different types of unit based on when the post was created. Try that out on your own.

Format Number With JavaScript

Format Date and Time with JavaScript


Original Link: https://dev.to/shafiemoji/format-time-and-date-relatively-with-javascript-47ap

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To