// @ts-nocheck // This file is generated by Umi automatically // DO NOT CHANGE IT MANUALLY! import { history } from 'dumi'; import React, { useState, useLayoutEffect, useCallback, type ReactNode } from 'react'; import { RawIntlProvider, createIntl, createIntlCache } from '/Users/leiemi/iglooform/node_modules/dumi/node_modules/react-intl'; import { useIsomorphicLayoutEffect } from '/Users/leiemi/iglooform/node_modules/dumi/dist/client/theme-api/utils.js' import { locales, messages } from './config'; const cache = createIntlCache(); const LocalesContainer: FC<{ children: ReactNode }> = (props) => { const getIntl = useCallback(() => { const matched = locales.slice().reverse().find((locale) => ( 'suffix' in locale // suffix mode ? history.location.pathname.replace(/([^/])\/$/, '$1').endsWith(locale.suffix) // base mode : history.location.pathname.replace(/([^/])\/$/, '$1') .startsWith("" + locale.base) )); const locale = matched ? matched.id : locales[0].id; const localeMessages = messages[locale] || {}; // append internal message, for use intl as string template util localeMessages['$internal.edit.link'] = undefined; return createIntl({ locale, messages: localeMessages }, cache); }, []); const [intl, setIntl] = useState(() => getIntl()); useIsomorphicLayoutEffect(() => { return history.listen(() => { setIntl(getIntl()); }); }, []); return {props.children}; } export function i18nProvider(container: Element) { return React.createElement(LocalesContainer, null, container); }