-
Notifications
You must be signed in to change notification settings - Fork 29
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
RangeError on Chrome for Android only #284
Comments
This looks like a bug in new Intl.DateTimeFormat(`en-US-u-ca-islamic-umalqura`, { era: 'short' })
.formatToParts(new Date(2024, 04, 27))
.find(part => part.type === 'era')
.value If it returns "AH" (as it does on Chrome for Mac 125.0.6422.77) then it's working properly. If it returns "BC" then there's a problem with the calendar data available on that version of Chrome. It might be that this particular Android version was not compiled with non-Gregorian calendar data. You can check this by simply running this: new Intl.DateTimeFormat(`en-US-u-ca-islamic-umalqura`, { era: 'short' })
.formatToParts(new Date(2024, 04, 27)) Do the results look like Gergorian dates or Islamic calendar dates? This will be useful into to put in your bug report. @sffc if this is indeed an Android-specific Chrome bug with |
Thank you for the swift reply. It seems that indeed the era is not being resolved properly. as: console.log(
"Era",
new Intl.DateTimeFormat("en-US-u-ca-islamic-umalqura", { era: "short" })
.formatToParts(new Date(2024, 4, 27))
.find((part) => part.type === "era")?.value
); Outputs "Era BC" However the rest of the data seems to be working fine only the era seems problematic as: console.log(
"date",
new Intl.DateTimeFormat(`en-US-u-ca-islamic-umalqura`, {
era: "short",
}).formatToParts(new Date(2024, 4, 27))
); Prints [
{
"type": "month",
"value": "11"
},
{
"type": "literal",
"value": "/"
},
{
"type": "day",
"value": "19"
},
{
"type": "literal",
"value": "/"
},
{
"type": "year",
"value": "1445"
},
{
"type": "literal",
"value": " "
},
{
"type": "era",
"value": "BC"
}
] I would be happy to file a bug wherever it should be if I am directed. Also worth noting that on the same Android phone Firefox for Android works fine. so the non-Gregorian data is being compiled properly and it seems that it's a bug specifically on Chrome for android. |
Looks like this bug was already reported here: https://issues.chromium.org/issues/40856332 You'll want to watch that issue for status. If you want to try making a PR to work around this issue in Temporal polyfills, we'd be happy to review it. Please file the PR in the proposal-temporal repo and the commit will eventually percolate down here to this repo. The fix you'll probably want to try is to override the |
Thank you for the guidance @justingrant I appreciate it. I will raise a PR today or tomorrow. |
Chrome for Android as of v 142.0.6367.179 mishandled the era option in Intl.DateTimeFormat and was returning 'bc' instead of 'ah'. Fix: js-temporal/temporal-polyfill#284
@justingrant FYI. I have raised a PR for this here as advised. |
Chrome for Android as of v 142.0.6367.179 mishandled the era option in Intl.DateTimeFormat and was returning 'bc' instead of 'ah'. Fix: js-temporal/temporal-polyfill#284
@justingrant will the patch be published to npm? if yes, then I would appreciate it if I could know when |
it will eventually, the production polyfill in the other repo needs to get caught up with upstream and that may take a while. There's another polyfill from @arshaw that's probably closer to upstream at this point. FYI Adam, you may want to pick up this fix too. |
@khawarizmus, I just released v0.2.5 of |
Hey @arshaw. Thank you for the fix and apologies for taking some time to reply. I have already managed to get thinsg working by using pnpm-patch-i. I have a lot of code (including published libraries) that rely on the However I went ahead and tested your polyfill (using v0.2.5). The following code const HDate = FullTemporal.Now.zonedDateTime("islamic-umalqura", timeZone);
console.log(HDate.day);
console.log(
new FullIntl.DateTimeFormat(locale.value, {
era: "short",
calendar: Calendars.UMM_AL_QURA,
}).format(HDate.toInstant())
);
console.log(
new FullIntl.DateTimeFormat(locale.value, {
dateStyle: "full",
calendar: Calendars.UMM_AL_QURA,
}).format(HDate.toInstant())
); outputs:
The numbers are correct. the line |
Thanks for checking @khawarizmus. Glad my fix works for fixing the numbers, but sad the fix doesn't apply to Intl.DateTimeFormat. More extensive monkeypatching/polyfilling would need to happen on Intl.DateTimeFormat to get this to work as you guessed. |
Chrome for Android as of v 142.0.6367.179 mishandled the era option in Intl.DateTimeFormat and was returning 'bc' instead of 'ah'. Fix: #284 UPSTREAM_COMMIT=474378970ecf3557b6e3c4cb9f4915b98c7267b8
Chrome for Android as of v 142.0.6367.179 mishandled the era option in Intl.DateTimeFormat and was returning 'bc' instead of 'ah'. Fix: #284 UPSTREAM_COMMIT=474378970ecf3557b6e3c4cb9f4915b98c7267b8
The following snippet of code works well on all major browsers (desktop) and it works on Firefox for android as well as safari for IOS
However on Chrome for Android it throws the following error:
My chrome version is 142.0.6367.179
Tested no Android 14.
If it helps the error is coming from here
The text was updated successfully, but these errors were encountered: