Skip to content

Commit 23a368a

Browse files
committed
Add simple polyfill for Intl.ListFormat
1 parent 2008075 commit 23a368a

File tree

4 files changed

+65
-2
lines changed

4 files changed

+65
-2
lines changed

src/impl/locale.js

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
import { hasLocaleWeekInfo, hasRelative, padStart, roundTo, validateWeekSettings } from "./util.js";
1+
import {
2+
hasList,
3+
hasLocaleWeekInfo,
4+
hasRelative,
5+
padStart,
6+
roundTo,
7+
validateWeekSettings,
8+
} from "./util.js";
29
import * as English from "./english.js";
310
import Settings from "../settings.js";
411
import DateTime from "../datetime.js";
@@ -317,6 +324,26 @@ class PolyRelFormatter {
317324
}
318325
}
319326

327+
/**
328+
* @private
329+
*/
330+
class PolyListFormatter {
331+
constructor(intl, opts) {
332+
this.opts = opts;
333+
if (hasList()) {
334+
this.lf = getCachedLF(intl, opts);
335+
}
336+
}
337+
338+
format(list) {
339+
if (this.lf) {
340+
return this.lf.format(list);
341+
} else {
342+
return list.join(", ");
343+
}
344+
}
345+
}
346+
320347
const fallbackWeekSettings = {
321348
firstDay: 1,
322349
minimalDays: 4,
@@ -499,7 +526,7 @@ export default class Locale {
499526
}
500527

501528
listFormatter(opts = {}) {
502-
return getCachedLF(this.intl, opts);
529+
return new PolyListFormatter(this.intl, opts);
503530
}
504531

505532
isEnglish() {

src/impl/util.js

+8
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ export function hasRelative() {
4444
}
4545
}
4646

47+
export function hasList() {
48+
try {
49+
return typeof Intl !== "undefined" && !!Intl.ListFormat;
50+
} catch (e) {
51+
return false;
52+
}
53+
}
54+
4755
export function hasLocaleWeekInfo() {
4856
try {
4957
return (

test/duration/format.test.js

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* global test expect */
22
import { Duration } from "../../src/luxon";
33

4+
const Helpers = require("../helpers");
5+
46
const dur = () =>
57
Duration.fromObject({
68
years: 1,
@@ -314,3 +316,15 @@ test("Duration#toHuman works in differt languages", () => {
314316
"1 an, 2 mois, 1 semaine, 3 jours, 4 heures, 5 minutes, 6 secondes, 7 millisecondes"
315317
);
316318
});
319+
320+
Helpers.withoutLF("Duration#toHuman works without LF", () => {
321+
expect(dur().toHuman()).toEqual(
322+
"1 year, 2 months, 1 week, 3 days, 4 hours, 5 minutes, 6 seconds, 7 milliseconds"
323+
);
324+
});
325+
326+
Helpers.withoutLF("Duration#toHuman falls back to commas", () => {
327+
expect(dur().reconfigure({ locale: "ja" }).toHuman()).toEqual(
328+
"1 年, 2 か月, 1 週間, 3 日, 4 時間, 5 分, 6 秒, 7 ミリ秒"
329+
);
330+
});

test/helpers.js

+14
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@ exports.withoutRTF = function (name, f) {
1515
});
1616
};
1717

18+
exports.withoutLF = function (name, f) {
19+
const fullName = `With no ListFormat support, ${name}`;
20+
test(fullName, () => {
21+
const lf = Intl.ListFormat;
22+
try {
23+
Intl.ListFormat = undefined;
24+
Settings.resetCaches();
25+
f();
26+
} finally {
27+
Intl.ListFormat = lf;
28+
}
29+
});
30+
};
31+
1832
exports.withoutLocaleWeekInfo = function (name, f) {
1933
const fullName = `With no Intl.Locale.weekInfo support, ${name}`;
2034
test(fullName, () => {

0 commit comments

Comments
 (0)