diff --git a/frontend/src/metabase/lib/formatting.js b/frontend/src/metabase/lib/formatting.js index 9cec63dc54e99bc0b21a27f2f0b7d3d4f9ecebee..c462d4b44ab80cef06d835f207af55d63ca8af16 100644 --- a/frontend/src/metabase/lib/formatting.js +++ b/frontend/src/metabase/lib/formatting.js @@ -532,7 +532,7 @@ export function formatDateTimeWithUnit( ); } - return formatDateTimeWithFormats(value, dateFormat, timeFormat, options); + return formatDateTimeWithFormats(m, dateFormat, timeFormat, options); } export function formatTime(value: Value) { diff --git a/frontend/src/metabase/lib/time.js b/frontend/src/metabase/lib/time.js index 25bbd18c93d3a3a3e6d5598c3014512dd9346c93..c277cc0bbc8cd5044ef7669473da0f6edce69c1a 100644 --- a/frontend/src/metabase/lib/time.js +++ b/frontend/src/metabase/lib/time.js @@ -33,6 +33,10 @@ function addAbbreviatedLocale() { moment.locale(initialLocale); } +const TEXT_UNIT_FORMATS = { + "day-of-week": value => moment.parseZone(value, "ddd").startOf("day"), +}; + const NUMERIC_UNIT_FORMATS = { // workaround for https://github.com/metabase/metabase/issues/1992 year: value => @@ -81,6 +85,8 @@ export function parseTimestamp(value, unit = null, local = false) { m = value; } else if (typeof value === "string" && /(Z|[+-]\d\d:?\d\d)$/.test(value)) { m = moment.parseZone(value); + } else if (unit in TEXT_UNIT_FORMATS && typeof value === "string") { + m = TEXT_UNIT_FORMATS[unit](value); } else if (unit in NUMERIC_UNIT_FORMATS && typeof value == "number") { m = NUMERIC_UNIT_FORMATS[unit](value); } else { @@ -119,6 +125,7 @@ export function formatHourAMPM(hour) { } } +// @deprecated use formatDateTimeWithUnit(day, "day-of-week") export function formatDay(day) { switch (day) { case "mon": diff --git a/frontend/test/metabase/lib/formatting.unit.spec.js b/frontend/test/metabase/lib/formatting.unit.spec.js index a34ceba10f1f9295b0cf023fbcafe29254e75153..81a1583cb8b5abc6954e55ef10ff6b62bb7aeaf2 100644 --- a/frontend/test/metabase/lib/formatting.unit.spec.js +++ b/frontend/test/metabase/lib/formatting.unit.spec.js @@ -464,9 +464,23 @@ describe("formatting", () => { ).toEqual("julio 7, 2019 – julio 13, 2019"); } finally { // globally reset locale - moment.locale(false); + moment.locale("en"); } }); + + it("should format days of week with default options", () => { + expect(formatDateTimeWithUnit("mon", "day-of-week")).toEqual("Monday"); + }); + + it("should format days of week with compact option", () => { + const options = { + compact: true, + }; + + expect(formatDateTimeWithUnit("sun", "day-of-week", options)).toEqual( + "Sun", + ); + }); }); describe("formatTimeWithUnit", () => {