Table of Contents
A Temporal.Calendar
is a representation of a calendar system.
It includes information about how many days are in each year, how many months are in each year, how many days are in each month, and how to do arithmetic in that calendar system.
Much of the world uses the Gregorian calendar, which was invented in 1582 C.E. On the modern Internet, the most often used calendar system is the calendar standardized by ISO 8601, which is the same as the Gregorian calendar with the addition of week-numbering rules. In general it is extended backwards ("proleptically") to cover the period of history before its invention, which is an optional modification allowed by the ISO 8601 standard.
However, the ISO 8601 calendar is not the only calendar in common use in the world. Some places use another calendar system as the main calendar, or have a separate calendar system as a commonly-used civil or religious calendar.
NOTE: The Temporal polyfill currently only includes the ISO 8601 calendar, but the Temporal proposal will eventually provide all the calendars supported by Intl. See issue #541.
It is best practice to specify a calendar system when performing calendar-sensitive operations, which are those involving arithmetic or other calculation in months or years.
For example, to add a month to a date in the Hebrew calendar:
date.withCalendar('hebrew').add({ months: 1 });
Temporal types' toLocaleString()
methods use the user's preferred calendar, without needing to call withCalendar()
.
To perform arithmetic consistently with the toLocaleString()
calendar system:
const calendar = new Intl.DateTimeFormat().resolvedOptions().calendar;
date.withCalendar(calendar).add({ months: 1 });
For specialized applications where you need to do calculations in a calendar system that is not supported by Intl, you can implement a custom calendar. There are two ways to do this.
The recommended way is to create a class inheriting from Temporal.Calendar
.
You must use one of the built-in calendars as the "base calendar".
In the class's constructor, call super()
with the identifier of the base calendar.
The class must override toString()
to return its own identifier.
Overriding all the other members is optional.
If you don't override the optional members, then they will behave as in the base calendar.
The other, more difficult, way to create a custom calendar is to create a plain object implementing the Temporal.Calendar
protocol, without subclassing.
The object must implement all of the Temporal.Calendar
properties and methods except for id
, fields()
, and toJSON()
.
Any object with the required methods will return the correct output from any Temporal property or method.
However, most other code will assume that custom calendars act like built-in Temporal.Calendar
objects.
To interoperate with libraries or other code that you didn't write, then you should implement the id
property and the fields()
and toJSON()
methods as well.
Your object must not have a calendar
property, so that it can be distinguished in Temporal.Calendar.from()
from other Temporal objects that have a calendar.
The identifier of a custom calendar must consist of one or more components of between 3 and 8 ASCII alphanumeric characters each, separated by dashes, as described in Unicode Technical Standard 35.
Parameters:
calendarIdentifier
(string): An identifier for the calendar.
Returns: a new Temporal.Calendar
object.
For a list of calendar identifiers, see the documentation for Intl.DateTimeFormat.
If calendarIdentifier
is not a built-in calendar, then a RangeError
is thrown.
Use this constructor directly if you have a string that is known to be a correct built-in calendar identifier.
If you have an ISO 8601 date-time string with a [c=identifier]
annotation, then Temporal.Calendar.from()
is more convenient than parsing the identifier out of the string, and also the only way to parse strings annotated with a non-built-in calendar.
Example usage:
cal = new Temporal.Calendar('iso8601');
cal = new Temporal.Calendar('gregory');
/*⚠️*/ cal = new Temporal.Calendar('discordian'); // not a built-in calendar, throws
Parameters:
thing
: A calendar object, a Temporal object that carries a calendar, or a value from which to create aTemporal.Calendar
.
Returns: a calendar object.
This static method creates a new calendar from another value.
If the value is another Temporal.Calendar
object, or object implementing the calendar protocol, the same object is returned.
If the value is another Temporal object that carries a calendar or an object with a calendar
property, such as a Temporal.ZonedDateTime
, the object's calendar is returned.
Any other value is converted to a string, which is expected to be either:
- a string that is accepted by
new Temporal.Calendar()
; or - a string in the ISO 8601 format.
Note that the ISO 8601 string can be extended with a [c=identifier]
annotation in square brackets appended to it.
Without such an annotation, the calendar is taken to be iso8601
.
This function is often more convenient to use than new Temporal.Calendar()
because it handles a wider range of input.
Usage examples:
// Calendar names
cal = Temporal.Calendar.from('iso8601');
cal = Temporal.Calendar.from('gregory');
// ISO 8601 string with or without calendar annotation
cal = Temporal.Calendar.from('2020-01-13T16:31:00.065858086');
cal = Temporal.Calendar.from('2020-01-13T16:31:00.065858086-08:00[America/Vancouver][c=iso8601]');
// Existing calendar object
cal2 = Temporal.Calendar.from(cal);
// Custom calendar that is a plain object (this calendar does not do much)
cal = Temporal.Calendar.from({ id: 'mycalendar' });
/*⚠️*/ cal = Temporal.Calendar.from('discordian'); // not a built-in calendar, throws
/*⚠️*/ cal = Temporal.Calendar.from('[c=iso8601]'); // lone annotation not a valid ISO 8601 string
The id
property gives an unambiguous identifier for the calendar.
Effectively, this is whatever calendarIdentifier
was passed as a parameter to the constructor.
When subclassing Temporal.Calendar
, this property doesn't need to be overridden because the default implementation gives the result of calling toString()
.
calendar.year(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | object | string) : number
calendar.month(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | Temporal.PlainMonthDay | object | string) : number
calendar.day(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainMonthDay | object | string) : number
calendar.dayOfWeek(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | object | string): number
calendar.dayOfYear(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | object | string): number
calendar.weekOfYear(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | object | string): number
calendar.daysInWeek(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | object | string): number
calendar.daysInMonth(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | object | string): number
calendar.daysInYear(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | object | string): number
calendar.monthsInYear(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | object | string): number
calendar.inLeapYear(date: Temporal.PlainDate | Temporal.PlainDateTime | Temporal.ZonedDateTime | Temporal.PlainYearMonth | object | string): boolean
The above methods are all similar. They provide a way to query properties of a particular date in the calendar's date reckoning.
Parameters:
date
(Temporal.PlainDate
, or value convertible to one): A date.
Returns: some piece of data (year, month, day, etc., depending on the method) associated with date
, in calendar
's calendar system.
If date
is not one of the appropriate Temporal objects, then it will be converted to a Temporal.PlainDate
as if it were passed to Temporal.PlainDate.from()
.
None of the above methods need to be called directly except in specialized code.
They are called indirectly when reading the various properties of Temporal.ZonedDateTime
, Temporal.PlainDateTime
, Temporal.PlainDate
, Temporal.PlainMonthDay
, or Temporal.PlainYearMonth
.
For example:
const date = Temporal.PlainDate.from('2020-05-29').withCalendar('hebrew');
date.year; // => 5780
date.calendar.year(date); // same result, but calling the method directly
date.daysInYear; // => 355
date.calendar.daysInYear(date); // same result, but calling the method directly
calendar.dateFromFields(fields: object, options: object, constructor: function) : Temporal.PlainDate
calendar.yearMonthFromFields(fields: object, options: object, constructor: function) : Temporal.PlainYearMonth
calendar.monthDayFromFields(fields: object, options: object, constructor: function) : Temporal.PlainMonthDay
The above three methods are similar. They provide a way to construct other Temporal objects from values in the calendar's date or time reckoning.
Parameters:
fields
(object): An object with properties similar to what is passed toTemporal.PlainDate.from()
,Temporal.PlainYearMonth.from()
, orTemporal.PlainMonthDay.from()
, respectively.options
: (object): An object with properties representing options for constructing the Temporal object. The following options are recognized:overflow
(string): How to deal with out-of-range values infields
. Allowed values areconstrain
,balance
, andreject
. The default isconstrain
.
constructor
(function): The constructor function of the Temporal type to construct. This is used when subclassing Temporal objects.
Returns: a new object of the type of constructor
.
None of the above methods need to be called directly except in specialized code.
They are called indirectly when using Temporal.PlainDate.from()
, Temporal.PlainDateTime.from()
, Temporal.PlainYearMonth.from()
, and Temporal.PlainMonthDay.from()
.
A custom implementation of these methods would convert the calendar-space arguments to the ISO calendar, and return an object created using new constructor(...isoArgs)
.
(This allows it to create custom subclasses of the built-in Temporal objects.)
For example:
date = Temporal.PlainDate.from({ year: 5780, month: 9, day: 6, calendar: 'hebrew' }, { overflow: 'reject' });
date.year; // => 5780
date.month; // => 9
date.day; // => 6
date.toString(); // => 2020-05-29[c=hebrew]
// same result, but calling the method directly:
date = Temporal.Calendar.from('hebrew').dateFromFields(
{ year: 5780, month: 9, day: 6 },
{ overflow: 'reject' },
Temporal.PlainDate
);
date.year; // => 5780
date.month; // => 9
date.day; // => 6
date.toString(); // => 2020-05-29[c=hebrew]
calendar.dateAdd(date: Temporal.PlainDate | object | string, duration: Temporal.Duration | object | string, options: object, constructor: function) : Temporal.PlainDate
This method provides a way to do time arithmetic in the calendar's date reckoning.
Parameters:
date
(Temporal.PlainDate
, or value convertible to one): A date.duration
(Temporal.Duration
, or value convertible to one): A duration to add todate
. For subtraction, add a negative duration.options
(object): An object with properties representing options for performing the addition or subtraction. The following options are recognized:overflow
(string): How to deal with out-of-range values in the result of the addition or subtraction. Allowed values areconstrain
andreject
. The default isconstrain
.
constructor
(function): The constructor function of the Temporal type to construct. This is used when subclassing Temporal objects.
Returns: a new object of the type of constructor
.
If date
is not a Temporal.PlainDate
object, or duration
not a Temporal.Duration
object, then they will be converted to one as if they were passed to Temporal.PlainDate.from()
or Temporal.Duration.from()
, respectively.
This method does not need to be called directly except in specialized code.
It is called indirectly when using add()
and subtract()
of Temporal.PlainDateTime
, Temporal.PlainDate
, and Temporal.PlainYearMonth
.
A custom implementation of this method would perform the calendar-specific addition, convert the result to the ISO calendar, and return an object created using new constructor(...isoArgs)
.
(This allows it to create custom subclasses of the built-in Temporal objects.)
For example:
date = Temporal.PlainDate.from('2020-05-29')
.withCalendar('islamic')
.add(Temporal.Duration.from({ months: 1 }), { overflow: 'reject' });
date.year; // => 1441
date.month; // => 11
date.day; // => 7
date.toString(); // => 2020-06-28[c=islamic]
// same result, but calling the method directly:
date = Temporal.Calendar.from('islamic').dateAdd(
Temporal.PlainDate.from('2020-05-29'),
Temporal.Duration.from({ months: 1 }),
{ overflow: 'reject' },
Temporal.PlainDate
);
date.year; // => 1441
date.month; // => 11
date.day; // => 7
date.toString(); // => 2020-06-28[c=islamic]
calendar.dateUntil(one: Temporal.PlainDate | object | string, two: Temporal.PlainDate | object | string, options: object) : Temporal.Duration
Parameters:
one
(Temporal.PlainDate
, or value convertible to one): A date.two
(Temporal.PlainDate
, or value convertible to one): Another date.options
(object): An object with properties representing options for the operation. The following options are recognized:largestUnit
(optional string): The largest unit of time to allow in the resultingTemporal.Duration
object. Valid values are'auto'
,'years'
,'months'
, and'days'
. The default is'auto'
.
Returns: a Temporal.Duration
representing the time elapsed after one
and until two
.
If either of one
or two
are not Temporal.PlainDate
objects, then they will be converted to one as if they were passed to Temporal.PlainDate.from()
.
This method does not need to be called directly except in specialized code.
It is called indirectly when using the until()
and since()
methods of Temporal.PlainDateTime
, Temporal.PlainDate
, and Temporal.PlainYearMonth
.
If one
is later than two
, then the resulting duration should be negative.
The default largestUnit
value of 'auto'
is the same as 'days'
.
For example:
d1 = Temporal.PlainDate.from('2020-07-29').withCalendar('chinese');
d2 = Temporal.PlainDate.from('2020-08-29').withCalendar('chinese');
d1.until(d2, { largestUnit: 'months' }); // => P1M2D
// same result, but calling the method directly:
Temporal.Calendar.from('chinese').dateUntil(
Temporal.PlainDate.from('2020-07-29'),
Temporal.PlainDate.from('2020-08-29'),
{ largestUnit: 'months' }
); // => P1M2D
Parameters:
fields
(array of strings): A list of field names.
Returns: a new list of field names.
This method does not need to be called directly except in specialized code.
It is called indirectly when using the from()
static methods and with()
methods of Temporal.PlainDateTime
, Temporal.PlainDate
, Temporal.PlainMonthDay
, Temporal.PlainYearMonth
, and Temporal.ZonedDateTime
.
Custom calendars should override this method if they require more fields with which to denote the date than the standard year
, month
, and day
(for example, era
).
The input array contains the field names that are necessary for a particular operation (for example, 'month'
and 'day'
for Temporal.PlainMonthDay.prototype.with()
), and the method should make a copy of the array and add whichever extra fields are necessary.
When subclassing Temporal.Calendar
, this method doesn't need to be overridden, unless your calendar requires extra fields, because the default implementation returns a copy of fields
.
Usage example:
// In built-in calendars, this method just makes a copy of the input array
Temporal.Calendar.from('iso8601').fields(['month', 'day']);
// => ['month', 'day']
Parameters:
fields
(object): A plain object with properties representing calendar units.additionalFields
(object): Another plain object with properties representing calendar units.
Returns: a new object with properties from both fields
and additionalFields
.
This method does not need to be called directly except in specialized code.
It is called indirectly when using the with()
methods of Temporal.PlainDateTime
, Temporal.PlainDate
, Temporal.PlainMonthDay
, Temporal.PlainYearMonth
, and Temporal.ZonedDateTime
.
Custom calendars should override this method if they allow a calendar unit to be specified in more than one way.
(For example, the Gregorian calendar allows years to be specified either by a year
property or a combination of era
and eraYear
.)
The overridden implementation should return an object with some or all of the properties from the original fields
object and additionalFields
copied onto it.
When subclassing Temporal.Calendar
, this method doesn't need to be overridden, unless your calendar adds more ways to specify a unit other than the built-in properties monthCode
, era
, and eraYear
.
The default implementation copies all properties from additionalFields
onto fields
, taking into account that months may be specified either by month
or monthCode
properties, and any other special cases required by built-in calendars.
Usage example:
// In built-in calendars, this method copies properties, taking `month`
// and `monthCode` into account
Temporal.Calendar.from('iso8601').mergeFields(
{ year: 2006, month: 7, day: 31 },
{ monthCode: '8' }
);
// => { year: 2006, monthCode: '8', day: 31 }
Returns: The string given by calendar.id
.
This method overrides Object.prototype.toString()
and provides the calendar's id
property as a human-readable description.
Example usage:
Temporal.PlainDate.from('2020-05-29[c=gregory]').calendar.toString(); // => gregory
Returns: The string given by calendar.id
.
This method is the same as calendar.toString()
.
It is usually not called directly, but it can be called automatically by JSON.stringify()
.
The reverse operation, recovering a Temporal.Calendar
object from a string, is Temporal.Calendar.from()
, but it cannot be called automatically by JSON.parse()
.
If you need to rebuild a Temporal.Calendar
object from a JSON string, then you need to know the names of the keys that should be interpreted as Temporal.Calendar
s.
In that case you can build a custom "reviver" function for your use case.
When subclassing Temporal.Calendar
, this method doesn't need to be overridden because the default implementation returns the result of calling calendar.toString()
.
Example usage:
const user = {
id: 775,
username: 'robotcat',
password: 'hunter2', // Note: Don't really store passwords like that
userCalendar: Temporal.Calendar.from('gregory')
};
const str = JSON.stringify(user, null, 2);
console.log(str);
// =>
// {
// "id": 775,
// "username": "robotcat",
// "password": "hunter2",
// "userCalendar": "gregory"
// }
// To rebuild from the string:
function reviver(key, value) {
if (key.endsWith('Calendar')) return Temporal.Calendar.from(value);
return value;
}
JSON.parse(str, reviver);