Closed anba closed 1 year ago
I think such concern is already in the Status Quo with the singular .timeZone, right? Assuming we do not have this proposal, we also need to address the issue for .timeZone (singular) which is pre-exist in ECMA402. I think the same resolution could just be applied to .timeZones .
There's no singular timeZone
property on Intl.Locale
, though.
There's no singular
timeZone
property onIntl.Locale
, though.
good point. I got confused.
I am not sure what would be a good action item for this issue
I think if I were in your shoes, I'd simply present this issue at the next ECMA-402 meeting, so more folks can chime in. The two most likely outcomes are:
usnyc
), we'll simply add another accessor with a different name than timeZone
.timeZone
.I don't even know if anyone actually has any opinion on this particular issue.
This issue was filed under many assumptions which is hard to discuss before resolving them first. The core issues based on
which is really a totally different name space
Therefore, I transfer this issue to ECMA402 for the consideration and leave this issue for whoever champion to add the support to read "tz" extension in Unicode Locale identifier to solve. I think likely that will be stored in a different internal slot and access via a different name if that will ever happen.
I wasn't aware of this issue.
I agree it would be nice to not take the name timeZones
when there is a BCP-47 tag of the same name with different semantics, even if we don't currently support it and have no short or medium term plans to support it.
I suggest one of the following:
timeZoneIds
can return IANA names and is consistent with the .timeZoneId
getter on Temporal objectsgetTimeZones()
could be a function returning upgraded Temporal.TimeZone instancesI suggest (1) to unblock the Intl Locale Info proposal.
CC @justingrant
I agree with Shane's proposal to use timeZoneIds
.
I suggest one of the following:
timeZoneIds
can return IANA names and is consistent with the.timeZoneId
getter on Temporal objects
It return an Array - which is an object, therefore, it cannot be a getter. but a function. We have discussed this early this year. It must be a getXXX function. I do not think we should go back to rediscuss this again.
getTimeZones()
could be a function returning upgraded Temporal.TimeZone instances
I think that should be done in a proposal which allow the Intl.DateTimeFormat to take Temporal.TimeZone as parameter for the timeZone option bag instead of in the Intl Locale Info API proposal.
Also in https://www.unicode.org/reports/tr35/#UnicodeTimezoneIdentifier the issue @anba referring to is the "Short identifiers", Not "Time Zone Identifier"
"The short identifiers are defined in the file common/bcp47/timezone.xml."
I agree it would be nice to not take the name
timeZones
when there is a BCP-47 tag of the same name with different semantics
But Intl.DateTimeFormat constructor and Intl.DateTimeFormat.prototype.resolvedOptons() ALREADY take the name "timeZone" YEARS ago.
a BCP-47 tag of the same name with different semantics
This is not true. Not the SAME name. The name for BCP-47 tz name is "Short Identifier" not "Time Zone Identifier", as mentioned in the UTS 35.
timeZoneIds
can return IANA names and is consistent with the.timeZoneId
getter on Temporal objectsIt return an Array - which is an object, therefore, it cannot be a getter. but a function. We have discussed this early this year. It must be a getXXX function. I do not think we should go back to rediscuss this again.
Makes sense. getTimeZoneIds()
would be fine, assuming that the result is an array of IANA IDs and not CLDR short codes. I would not support getTimeZones()
because it seems too similar with Temporal.ZonedDateTime's getTimeZone()
method that returns a Temporal.TimeZone object.
I think that should be done in a proposal which allow the Intl.DateTimeFormat to take Temporal.TimeZone as parameter for the timeZone option bag instead of in the Intl Locale Info API proposal.
FWIW, this case is already supported, because if timeZone
is an Object, then it's coerced to a String, which returns the id
of the TimeZone. I guess there could be an improvement that adds a fast path to avoid the observable Get. But if the goal is simply to support TimeZone objects in DTF, then there's no action needed beyond the current spec.
+1 on getTimeZoneIds()
I think the precedent of the Intl.DateTimeFormat field called timeZone
is not very strong because we are taking an approach that this option coerces its inputs to a better form, such as calling ToString on the Temporal.TimeZone type. However, this getter on Intl.Locale will only ever return exactly one format (IANA names as strings).
@anba what is your view about changing it to getTimeZoneIds() since you are the one who filed this issue.
I am not quite sure how would renaming this to getTimeZoneIds() will address the forward-compatibility issue @anba is filing about. In that world, if one day we do support let loc = new Intl.Locale("en-u-tz-usnyc")
then a. what getter will return "usnyc" ? and b. what getter will return "America/New_York"?
For both this issue and #70, I am comfortable with ECMA-402 objects supporting multiple namespaces (Unicode vs. IANA here, Unicode vs. ISO 8601 in #70), provided that each is associated with a distinct property name and (for input) inconsistency and possibly also non-inconsistent redundancy is rejected. For example, new Intl.Locale("en-u-tz-usnyc")
might produce an object for which getTimeZoneIds()
returns an array containing "America/New_York" and unicodeShortTimeZone
returns "usnyc", as would new Intl.Locale("en-u-tz-uslax", { timeZone: "America/New_York" })
and new Intl.Locale("en-u-tz-uslax", { unicodeShortTimeZone: "usnyc" })
per the already-established pattern of options data taking precedence over language tag data.
Yeah, I'm convinced that if/when we add support for Unicode-style time zone IDs, we should give them a very clearly unique namespace, such as unicodeShortTimeZone
or timeZoneBcp47Id
or similar.
Agree, separate names seems like the way to go.
OK, we have several options to resolve this issue
Option A- Keep the prospoal as is, getTimeZones() return an array (therefore it is an object) which contains Strings Option B- Rename that getTimeZones() to getTimeZoneIds()
As a stage 3 proposal. My understanding is according to https://tc39.es/process-document/ "Post-Acceptance Changes Expected" for Stage 3 is "Limited: only those deemed critical based on implementation experience"
Therefore, unless we have a implementer find a critical issue based on " implementation experience" we should not make such change. Is there a case showing us that is the case now?
As v8 implementer, I do NOT feel it is a "critical based on implementation experience" to rename it. It will be nice if we have implementater for other engines or library to speak about their " implementation experience".
I'll note that this issue was opened by @anba (an implementer). There is also new information since this reached Stage 3, which is that Temporal only recently decided to go with timeZoneId
.
I think the only real options are getTimeZones()
and getTimeZoneIds()
. They have pros and cons:
getTimeZones()
:
timeZone
optiongetTimeZoneIds()
:
getTimeZones()
name open for future proposalsThe point @anba made while filing this bug is not about getTimeZones vs getTimeZoneIds but how to deal with "tz" Unicode extension in the future and that issue exist regardless how we name this function between getTimeZones and getTimeZoneIds, right?
getTimeZoneIds()
is consistent with timeZoneId
in Temporal which is defined as an IANA time zone, leaving getTimeZones()
open if we wanted to make it either BCP-47 or Temporal.TimeZone objects.
I think there's probably room for -u-tz
to change the content of the returned list like we do for Collations and Calendars and others.
@anba what is your view about changing it to getTimeZoneIds() since you are the one who filed this issue.
Changing getTimeZones()
to getTimeZoneIds()
based on Temporal kind of ignores Intl.Locale.prototype.getCalendars()
and calendarId
in Temporal.
The following advantages for getTimeZoneIds()
were mentioned:
timeZoneId
in Temporal and allows to add Intl.Locale.prototype.getTimeZones()
which returns an array of Temporal.TimeZone
objects. (https://github.com/tc39/proposal-intl-locale-info/issues/73#issuecomment-1629379836)getTimeZones()
is too similar to Temporal.ZonedDateTime.prototype.getTimeZone()
. (https://github.com/tc39/proposal-intl-locale-info/issues/73#issuecomment-1629596052)But these points all also apply to Intl.Locale.prototype.getCalendars()
. (The only difference is that we already have Intl.Locale.prototype.calendar
, which returns a String value.)
We discussed this in 2023-09-07 TG2, and attendees supprt keeping the current spec text with getTimeZones() and getCalendars() without changing it to Ids() suffix.
get Intl.Locale.prototype.timeZones
is spec'ed to return IANA names, so if we ever extendIntl.Locale
to support the "tz" Unicode extension, I have to assume thatget Intl.Locale.prototype.timeZone
will also return the resolved IANA name instead of the "tz" value. For examplenew Intl.Locale("en-u-tz-usnyc").timeZones
will then return["America/New_York"]
. And following that line of thought, I assumenew Intl.Locale("en-u-tz-usnyc").timeZone
(so singular "timeZone") will then also return"America/New_York"
, to keep things consistent.Do we expect that this will cause any issues for users who want to access the actual value "usnyc"?