From bce557cc2dc767628bed6aac87301a1be7c5431b Mon Sep 17 00:00:00 2001 From: rxliuli Date: Tue, 4 Nov 2025 05:03:50 +0800 Subject: init commit --- shared/storefronts/src/index.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shared/storefronts/src/index.js (limited to 'shared/storefronts/src') diff --git a/shared/storefronts/src/index.js b/shared/storefronts/src/index.js new file mode 100644 index 0000000..74f4843 --- /dev/null +++ b/shared/storefronts/src/index.js @@ -0,0 +1,19 @@ +// helper functions available for use at runtime +/** + * @param {Region[]} regions - array of region objects that include region name and locales + * @returns {StorefrontNameTranslations} - storefront ID (ie: us) mapped to that storefront name translated in all supported languages + */ +export function getFormattedStorefrontNameTranslations(regions) { + return Object.fromEntries( + regions.flatMap(({ locales }) => { + const storefronts = {}; + for (const locale of locales) { + if (!(locale.id in storefronts)) { + storefronts[locale.id] = { default: locale.name }; + } + storefronts[locale.id][locale.language] = locale.name; + } + return Object.entries(storefronts); + }), + ); +} -- cgit v1.2.3