Skip to content

Commit

Permalink
Merge pull request #1729 from sunaurus/locale_fallback
Browse files Browse the repository at this point in the history
Add fallback date-fns locale import
  • Loading branch information
SleeplessOne1917 authored Jul 1, 2023
2 parents 61255bf + 515f5f5 commit d00a4fa
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions src/shared/utils/app/setup-date-fns.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import setDefaultOptions from "date-fns/setDefaultOptions";
import { I18NextService } from "../../services";

const EN_US = "en-US";

export default async function () {
let lang = I18NextService.i18n.language;
if (lang === "en") {
lang = "en-US";
lang = EN_US;
}

// if lang and country are the same, then date-fns expects only the lang
Expand All @@ -17,12 +19,26 @@ export default async function () {
}
}

const locale = (
await import(
/* webpackExclude: /\.js\.flow$/ */
`date-fns/locale/${lang}`
)
).default;
let locale;

try {
locale = (
await import(
/* webpackExclude: /\.js\.flow$/ */
`date-fns/locale/${lang}`
)
).default;
} catch (e) {
console.log(
`Could not load locale ${lang} from date-fns, falling back to ${EN_US}`
);
locale = (
await import(
/* webpackExclude: /\.js\.flow$/ */
`date-fns/locale/${EN_US}`
)
).default;
}
setDefaultOptions({
locale,
});
Expand Down

0 comments on commit d00a4fa

Please sign in to comment.