Skip to content

Function.formatDateTimeToParts

kodiakhq[bot] edited this page Nov 1, 2024 · 45 revisions

@sumup-oss/intl / formatDateTimeToParts

Function: formatDateTimeToParts()

formatDateTimeToParts(date, locales?, options?): (DateTimeFormatPart | object)[]

Formats a Date to parts with support for various date and time styles.

Parameters

Parameter Type
date FormattableDateTime
locales? string | string[]
options? DateTimeFormatOptions

Returns

(DateTimeFormatPart | object)[]

Example

import { formatDateTimeToParts } from '@sumup-oss/intl';

const time = new Date(2000, 1, 1, 9, 55);

formatDateTimeToParts(date, 'de-DE');
// [
//   { type: 'day', value: '1' },
//   { type: 'literal', value: '.' },
//   { type: 'month', value: '2' },
//   { type: 'literal', value: '.' },
//   { type: 'year', value: '2000' },
// ]
formatDateTimeToParts(date, ['ban', 'id']);
// [
//   { type: 'day', value: '1' },
//   { type: 'literal', value: '/' },
//   { type: 'month', value: '2' },
//   { type: 'literal', value: '/' },
//   { type: 'year', value: '2000' },
// ]
formatDateTimeToParts(date, 'en-GB', {
  year: 'numeric',
  month: 'short',
  day: 'numeric',
});
// [
//   ({ type: 'day', value: '1' },
//   { type: 'literal', value: ' ' },
//   { type: 'month', value: 'Feb' },
//   { type: 'literal', value: ' ' },
//   { type: 'year', value: '2000' })
// ]

Remarks

In runtimes that don't support the Intl.DateTimeFormat.formatToParts API, the date is localized and returned as a single string literal part.

Defined in

lib/date-time-format/index.ts:213