react-moment
React component for the moment date library.
Installing
Node 6.4.0 or greater is required. Use npm to install react-moment
along with its peer dependency, moment
.
Timezone Support
The moment-timezone
package is required to use the timezone related functions.
Then import the package into your project.
Quick Start
Outputs:
The above example could also be written this way if you prefer to pass the date using an attribute rather than as a child to <Moment>
.
The date value may be a string, object, array, or Date
instance.
Props
The component supports the following props. See the Moment docs for more information.
Interval
interval={number}
By default the time updates every 60 seconds (60000 milliseconds). Use the interval
prop to change or disable updating.
Updates the time every 30 seconds (30000 milliseconds).
Disables updating.
Formatting
format={string}
Formats the date according to the given format string. See the Moment docs on formatting for more information.
Outputs:
Parsing Dates
parse={string}
Moment can parse most standard date formats. Use the parse
attribute to tell moment how to parse the given date when non-standard. See the Moment docs on parsing for more information.
Add and Subtract
add={object}
subtract={object}
Used to add and subtract periods of time from the given date, with the time periods expressed as object literals. See the Moment docs on add and subtract for more information.
From Now
fromNow={bool}
Sometimes called timeago or relative time, displays the date as the time from now, e.g. "5 minutes ago".
Outputs:
Including ago
with fromNow
will omit the suffix from the relative time.
Outputs:
From Now During
fromNowDuring={number}
Setting fromNowDuring will display the relative time as with fromNow but just during its value in milliseconds, after that format will be used instead.
From
from={string}
Outputs:
To Now
toNow={bool}
Similar to fromNow
, but gives the opposite interval.
Outputs:
To
to={string}
Outputs:
Filter
filter={function}
A function which modifies/transforms the date value prior to rendering.
Outputs:
With Title
withTitle={bool}
Adds a title
attribute to the element with the complete date.
Outputs:
Title Format
titleFormat={string}
How the title
date is formatted when using the withTitle
attribute.
Outputs:
Difference
diff={string}
decimal={bool}
unit={string}
Duration
duration={string}
date={string}
Shows the duration (elapsed time) between two dates. duration
property should be behind date
property time-wise.
Duration From Now
durationFromNow={bool}
Shows the duration (elapsed time) between now and the provided datetime.
Unix Timestamps
unix={bool}
Tells Moment to parse the given date value as a unix timestamp.
Outputs:
Timezone
tz={string}
Sets the timezone. To enable server side rendering (SSR), client and server has to provide same datetime, based on common Timezone. The tz
attribute will enable set the common timezone.
Outputs:
Calendar
calendar={object|bool}
Customize the strings used for the calendar function.
Locale
locale={string}
Sets the locale used to display the date.
Note
In some cases the language file is not automatically loaded by moment, and it must be manually loaded. For example, to use the French locale, add the following to your bootstrap (e.g. index.js) script.
Element
element={string|React.Component}
The element type to render as (string or function).
Outputs:
OnChange
onChange={func}
The onChange
prop is called each time the date is updated, which by default is every 60 seconds. The function receives the new date value.
Other Props
Any other properties are passed to the <time>
element.
Outputs:
Pooled Timer
By default a timer is created for each mounted <Moment />
instance to update the date value, which is fine when you only have a few instances on the page. However, performance can take a hit when you have many mounted instance. The problem is solved by using a pooled timer.
When pooled timing is enabled, react-moment will only use a single timer to update all mounted <Moment />
instances. Pooled timing is enabled by calling startPooledTimer()
and stopped by calling clearPooledTimer()
.
Call the startPooledTimer()
static method from your bootstrapping script (usually index.js) to initialize the timer.
Note: The interval
prop set on each <Moment />
instance is ignored when using pooled timing, except where interval={0}
to disable updating.
Note: The startPooledTimer()
method must be called before any <Moment />
instances are mounted.
Global Config
Some prop values may be set globally so you don't have to set them on every react-moment instance.
- globalMoment
- globalLocale
- globalFormat
- globalParse
- globalFilter
- globalElement
- globalTimezone
You can override the global values on a per-instance basis using regular props.
Usage with React Native
If you are using React Native then you'll have to pass in Text
.
Then: