Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Formats JavaScript dates to relative time strings (e.g., "3 hours ago").

License

NotificationsYou must be signed in to change notification settings

formatjs/intl-relativeformat

Repository files navigation

Migration Guide

This package has deviated from theIntl.RelativeTimeFormat spec rather heavily. Therefore, we've deprecated this package and add`@formatjs/intl-relativetimeformat as the spec-compliant polyfill.

  1. Allunits (such asday-short) should be migrated similarly to:
newIntlRelativeFormat('en',{units:'second-short'}).format(Date.now()-1000);// will benewIntl.RelativeTimeFormat('en',{style:'short'}).format(-1,'second');newIntlRelativeFormat('en',{units:'day-narrow'}).format(Date.now()-48*3600*1000);// will benewIntl.RelativeTimeFormat('en',{style:'narrow'}).format(-2,'day');
  1. style: numeric will becomenumeric: always per spec (which is also the default)
newIntlRelativeFormat('en',{units:'second-short',style:'numeric'}).format(Date.now()-1000);// will benewIntl.RelativeTimeFormat('en',{style:'short'}).format(-1,'second');
newIntlRelativeFormat('en',{units:'day-narrow',style:'numeric'}).format(Date.now()-48*3600*1000);// will benewIntl.RelativeTimeFormat('en',{style:'narrow'}).format(-2,'day');
  1. style: 'best fit' is a little trickier but we have released@formatjs/intl-utils to ease the transition:
newIntlRelativeFormat('en',{style:'best fit'}).format(Date.now()-1000);// will beimport{selectUnit}from'@formatjs/intl-utils';constdiff=selectUnit(Date.now()-1000);newIntl.RelativeTimeFormat('en',{numeric:'auto'}).format(diff.value,diff.unit);
newIntlRelativeFormat('en',{style:'best fit'}).format(Date.now()-48*3600*1000);// will beimport{selectUnit}from'@formatjs/intl-utils';constdiff=selectUnit(Date.now()-48*3600*1000);newIntl.RelativeTimeFormat('en',{numeric:'auto'}).format(diff.value,diff.unit);
  1. If you were usingoptions.now informat, you can useformatjs/intl-utils to transition as well
newIntlRelativeFormat('en',{style:'best fit'}).format(Date.now()-1000,{now:Date.now()+1000});// will beimport{selectUnit}from'@formatjs/intl-utils';constdiff=selectUnit(Date.now()-1000,Date.now()+1000);newIntl.RelativeTimeFormat('en',{numeric:'auto'}).format(diff.value,diff.unit);
newIntlRelativeFormat('en',{style:'best fit'}).format(Date.now()-48*3600*1000,{now:Date.now()+1000});// will beimport{selectUnit}from'@formatjs/intl-utils';constdiff=selectUnit(Date.now()-48*3600*1000,Date.now()+1000);newIntl.RelativeTimeFormat('en',{numeric:'auto'}).format(diff.value,diff.unit);

Intl RelativeFormat

Formats JavaScript dates to relative time strings (e.g., "3 hours ago").

npm Version

Overview

Goals

This package aims to provide a way to format different variations of relative time. You can use this package in the browser and on the server via Node.js.

This implementation is very similar tomoment.js, in concept, although it provides only formatting features based on the UnicodeCLDR locale data, an industry standard that supports more than 200 languages.

How It Works

varrf=newIntlRelativeFormat(locales,[options]);

Thelocales can either be a single language tag, e.g.,"en-US" or an array of them from which the first match will be used.options provides a way to control the output of the formatted relative time string.

varoutput=rf.format(someDate,[options]);

Common Usage Example

The most common way to use this library is to construct anIntlRelativeFormat instance and reuse it many times for formatting different date values; e.g.:

varrf=newIntlRelativeFormat('en-US');varposts=[{id:1,title:'Some Blog Post',date:newDate(1426271670524)},{id:2,title:'Another Blog Post',date:newDate(1426278870524)}];posts.forEach(function(post){console.log(rf.format(post.date));});// => "3 hours ago"// => "1 hour ago"

Features

  • Style options for"best fit" ("yesterday") and"numeric" ("1 day ago") output based on thresholds.

  • Units options for always rendering in a particular unit; e.g. "30 days ago", instead of "1 month ago".

  • Ability to specify the "now" value from which the relative time is calculated, allowingformat().

  • Format output in relative time strings using`Intl.RelativeTimeFormat

  • Optimized for repeated calls to anIntlRelativeFormat instance'sformat() method.

Usage

Intl Dependency

This package assumes the following capabilities fromIntl:

  1. Intl.PluralRules
  2. Intl.RelativeTimeFormat

If your environment does not support those, feel free to grab polyfills:

  1. https://www.npmjs.com/package/intl-pluralrules
  2. https://www.npmjs.com/package/@formatjs/intl-relativetimeformat

Loading IntlRelativeFormat in Node.js

Install package and polyfill:

npm install intl-relativeformat --save

Simplyrequire() this package:

varIntlRelativeFormat=require('intl-relativeformat');varrf=newIntlRelativeFormat('en');varoutput=rf.format(dateValue);

Bundling IntlRelativeFormat with Browserify/Webpack/Rollup

Install package:

npm install intl-relativeformat --save

Simplyrequire() this package and the specific locales you wish to support in the bundle:

varIntlRelativeFormat=require('intl-relativeformat');

Note: in Node.js, the data for all 200+ languages is loaded along with the library, but when bundling it with Browserify/Webpack, the data is intentionally ignored (seepackage.json for more details) to avoid blowing up the size of the bundle with data that you might not need.

Public API

IntlRelativeFormat Constructor

To format a date to relative time, use theIntlRelativeFormat constructor. The constructor takes two parameters:

  • locales -{String | String[]} - A string with a BCP 47 language tag, or an array of such strings. If you do not provide a locale, the default locale will be used. When an array of locales is provided, each item and its ancestor locales are checked and the first one with registered locale data is returned.See:Locale Resolution for more details.

  • [options] -{Object} - Optional object with user defined options for format styles.See:Custom Options for more details.

Note: Therf instance should be enough for your entire application, unless you want to use custom options.

Locale Resolution

IntlRelativeFormat uses a locale resolution process similar to that of the built-inIntl APIs to determine which locale data to use based on thelocales value passed to the constructor. The result of this resolution process can be determined by call theresolvedOptions() prototype method.

The following are the abstract stepsIntlRelativeFormat goes through to resolve the locale value:

  • If no extra locale data is loaded, the locale willalways resolved to"en".

  • If locale data is missing for a leaf locale like"fr-FR", but thereis data for one of its ancestors,"fr" in this case, then its ancestor will be used.

  • If there's data for the specified locale, then that locale will be resolved; i.e.,

    varrf=newIntlRelativeFormat('en-US');assert(rf.resolvedOptions().locale==='en-US');// true
  • The resolved locales are now normalized; e.g.,"en-us" will resolve to:"en-US".

Note: When an array is provided forlocales, the above steps happen for each item in that array until a match is found.

Custom Options

The optional second argumentoptions provides a way to customize how the relative time will be formatted.

Units

By default, the relative time is computed to the best fit unit, but you can explicitly call it to forceunits to be displayed in"second","second-short","second-narrow","minute","minute-short","minute-narrow","hour","hour-short","hour-narrow","day","day-short","day-narrow","month","month-short","month-narrow","year","year-short" or"year-narrow":

varrf=newIntlRelativeFormat('en',{units:'day'});varoutput=rf.format(dateValue);

As a result, the output will be "70 days ago" instead of "2 months ago".

Style

By default, the relative time is computed as"best fit", which means that instead of "1 day ago", it will display "yesterday", or "in 1 year" will be "next year", etc. But you can force to always use the "numeric" alternative:

varrf=newIntlRelativeFormat('en',{style:'numeric'});varoutput=rf.format(dateValue);

As a result, the output will be "1 day ago" instead of "yesterday".

resolvedOptions() Method

This method returns an object with the options values that were resolved during instance creation. It currently only contains alocale property; here's an example:

varrf=newIntlRelativeFormat('en-us');console.log(rf.resolvedOptions().locale);// => "en-US"

Notice how the specified locale was the all lower-case value:"en-us", but it was resolved and normalized to:"en-US".

format(date, [options]) Method

The format method (which takes a JavaScript date or timestamp) and optionaloptions arguments will compare thedate with "now" (oroptions.now), and returns the formatted string; e.g., "3 hours ago" in the corresponding locale passed into the constructor.

varoutput=rf.format(newDate());console.log(output);// => "now"

If you wish to specify a "now" value, it can be provided viaoptions.now and will be used instead of queryingDate.now() to get the current "now" value.

License

This software is free to use under the Yahoo! Inc. BSD license.See theLICENSE file for license text and copyright information.

About

Formats JavaScript dates to relative time strings (e.g., "3 hours ago").

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Contributors13


[8]ページ先頭

©2009-2025 Movatter.jp