Home Reference Source

packages/locale/src/format/LocaleDateTimeFormatter.js

  1. /*
  2. * @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
  3. * @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
  4. */
  5.  
  6. import {
  7. _ as jodaInternal,
  8. DateTimeFormatter,
  9. ChronoField,
  10. ResolverStyle,
  11. IsoChronology,
  12. } from '@js-joda/core';
  13. // eslint-disable-next-line no-unused-vars
  14. import Locale from '../Locale';
  15. import CldrDateTimeFormatterBuilder from './cldr/CldrDateTimeFormatterBuilder';
  16.  
  17. const { assert: { requireNonNull } } = jodaInternal;
  18.  
  19. export default class LocaleDateTimeFormatter extends DateTimeFormatter {
  20.  
  21. /**
  22. * Returns a copy of this formatter with a new locale.
  23. * <p>
  24. * This is used to lookup any part of the formatter needing specific
  25. * localization, such as the text or localized pattern.
  26. * <p>
  27. * This instance is immutable and unaffected by this method call.
  28. *
  29. * @param {!Locale} locale the new locale, not null
  30. * @return a formatter based on this formatter with the requested locale, not null
  31. */
  32. withLocale(locale) {
  33. requireNonNull(locale, 'locale');
  34. if (locale.equals(this._locale)) {
  35. return this;
  36. }
  37. return new DateTimeFormatter(this._printerParser, locale, this._decimalStyle, this._resolverStyle, this._resolverFields, this._chrono, this._zone);
  38. }
  39. }
  40.  
  41. export function _init() {
  42. const dow = {
  43. 1: 'Mon',
  44. 2: 'Tue',
  45. 3: 'Wed',
  46. 4: 'Thu',
  47. 5: 'Fri',
  48. 6: 'Sat',
  49. 7: 'Sun',
  50. };
  51.  
  52. const moy = {
  53. 1: 'Jan',
  54. 2: 'Feb',
  55. 3: 'Mar',
  56. 4: 'Apr',
  57. 5: 'May',
  58. 6: 'Jun',
  59. 7: 'Jul',
  60. 8: 'Aug',
  61. 9: 'Sep',
  62. 10: 'Oct',
  63. 11: 'Nov',
  64. 12: 'Dec',
  65. };
  66.  
  67. LocaleDateTimeFormatter.RFC_1123_DATE_TIME = new CldrDateTimeFormatterBuilder()
  68. .parseCaseInsensitive()
  69. .parseLenient()
  70. .optionalStart()
  71. .appendText(ChronoField.DAY_OF_WEEK, dow)
  72. .appendLiteral(', ')
  73. .optionalEnd()
  74. .appendValue(ChronoField.DAY_OF_MONTH, 2)
  75. .appendLiteral(' ')
  76. .appendText(ChronoField.MONTH_OF_YEAR, moy)
  77. .appendLiteral(' ')
  78. .appendValue(ChronoField.YEAR, 4) // 2 digit year not handled
  79. .appendLiteral(' ')
  80. .appendValue(ChronoField.HOUR_OF_DAY, 2)
  81. .appendLiteral(':')
  82. .appendValue(ChronoField.MINUTE_OF_HOUR, 2)
  83. .optionalStart()
  84. .appendLiteral(':')
  85. .appendValue(ChronoField.SECOND_OF_MINUTE, 2)
  86. .optionalEnd()
  87. .appendLiteral(' ')
  88. .appendZoneId()
  89. .toFormatter(ResolverStyle.SMART).withChronology(IsoChronology.INSTANCE);
  90. }