-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot output only era or timeZoneName #461
Comments
A workaround to get the time zone resp. era name is to invoke js> new Intl.DateTimeFormat("en", {timeZoneName:"long"}).formatToParts().filter(({type}) => type === "timeZoneName")[0].value
"Pacific Daylight Time"
js> new Intl.DateTimeFormat("en", {era:"long"}).formatToParts().filter(({type}) => type === "era")[0].value
"Anno Domini" I wonder if there are any meeting notes or es-discuss mails why "era" and "timeZoneName" aren't allowed as standalone elements in ToDateTimeOptions. |
yea, but that is a very clumsy way to get it, right? |
This sounds like something for DisplayNames, no? DateTimeFormat should be for formatting dates and times. If anything, we should do more to make sure there is enough information in a string to decipher a date, not less. |
First of all, the reason I raise this is not just for the functionality, but for the coherence / consistency of the Intl.DateTimeFormat |
In the case, the time zone implicitly defaults to the system time zone, so |
That assumes the presentation of the era/time zone in broader context, is suitable for use in standalone context as well. That may not be a universal assumption, nor one that will hold in the future, seems like. |
CLDR doesn't seem to provide standalone formats for time zone resp. era in <availableFormats>. (I'm not even sure there's an explicit standalone support for era and time zones at all in CLDR. https://unicode.org/reports/tr35/tr35-dates.html#months_days_quarters_eras doesn't mention standalone contexts for eras. The same seems to apply for https://unicode.org/reports/tr35/tr35-dates.html#Time_Zone_Names.) |
I could imagine that the time zone or era name could be context-dependent, like grammatical case, pluralization rules, etc., although I don't know of this being done in practice. |
Just adding to this - it would be amazing if we could obtain only the Timezone name from Date object. It seems strange to me that when we look for timezone name, we get the date thrown in as well, because of the different display options for the date (slashes, dots, spaces, before / after the timezone name) it makes it very difficult to strip out just the timezone name from the resulting string - here's a few examples in different languages: Here's the code I am using: const timezoneFormat = new Intl.DateTimeFormat(userLocale, {
timeZoneName: 'long',
});
const tz = timezoneFormat.format(new Date());
const tf = timezoneFormat.format(new Date()).split(' ').slice(1).join(' ');
console.log(`tz: ${tz}`);
console.log(`tf: ${tf}`);
console.log(` `); As you can see, I find it strange that the date is thrown into the result and attempts to split it out are hampered in some timezones due to the formatting. I'm glad to see the workaround above but it would be great to address this :) |
Running into this as well while trying to use the |
Note that this doesn't apply to > new Date().toLocaleString('en-CA', {dayPeriod: 'short'})
'in the afternoon' |
If CLDR doesn't provide standalone formats for |
The minimum available format subsets for each locale contain neither |
I don't think availableFormats is necessary for time zone name. It is usually always just glued to the end. I can imagine that availableFormats could be useful for era name. It might let a certain locale or calendar override short and long, for example. However, it is very likely a reasonable fallback if the input era name length is also used as the output era name length. If this isn't in UTS 35, it could be added. |
Looks like But just to make sure there's no confusion, I was referring to this required list of available formats → https://tc39.es/ecma402/#sec-intl.datetimeformat-internal-slots and not CLDR's |
In ECMA-402, the culprit lines seem to be
Thanks @ptomato for your investigation on this. Why is "era" not in that list? |
Previously, if `era` or `timeZoneName` were given by themselves in the formatting options, the default formatting for the other date/time components would be added. This is inconsistent with what we do for `dayPeriod` where a lone `dayPeriod` produces formats such as "in the afternoon". The use case of obtaining the localized era name has also been mentioned several times. This change makes a lone `era` or `timeZoneName` be passed to the format matcher algorithm without added date/time components. Closes: tc39#461
Previously, if `era` was given by itself in the formatting options, the default formatting for the other date/time components would be added. This is inconsistent with what we do for `dayPeriod` where a lone `dayPeriod` produces formats such as "in the afternoon". The use case of obtaining the localized era name has also been mentioned several times. This change makes a lone `era` be passed to the format matcher algorithm without added date/time components, and requires implementations to have at least a year-month-day-era and year-month-era format available (which looks to be widely available across languages in CLDR.) See: tc39#461
Previously, if `timeZoneName` was given by itself in the formatting options, the default formatting for the other date/time components would be added. This is inconsistent with what we do for `dayPeriod` where a lone `dayPeriod` produces formats such as "in the afternoon". The use case of obtaining the localized time zone name in all its possible variants such as specific/generic, has been mentioned several times. This change makes a lone `timeZoneName` be passed to the format matcher algorithm without added date/time components, and requires implementations to have at least a year-month-day-hour-minute-second-timeZoneName format available. See: tc39#461
Currently, we can use the option in Date.toLocale*String or Intl.DateTimeFormat to output most of the property in "Table 6: Components of date and time formats"
https://ecma-international.org/ecma-402/#datetimeformat-objects
But if we put era or timeZoneName into the option, it will output more than just era / timeZoneName due to the ToDateTimeOptions
Should we change ToDateTimeOptions to consider also era and timeZoneName so we can only output era or timeZoneName as the following. Would that be better?
The text was updated successfully, but these errors were encountered: