import React from 'react'; import { useI18nStore, formatMessage, type I18nKey, type I18nParams } from './store'; import { I18nContext, type I18nContextValue } from './react-context'; import { LOCALE_LABEL_KEYS, LOCALES } from './runtime'; export const I18nProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { const locale = useI18nStore((state) => state.locale); const dictionary = useI18nStore((state) => state.dictionary); const setLocale = useI18nStore((state) => state.setLocale); React.useEffect(() => { if (typeof document === 'undefined') { return; } document.documentElement.lang = locale; }, [locale]); const value = React.useMemo(() => { const t = (key: I18nKey, params?: I18nParams) => formatMessage(dictionary, key, params); return { locale, locales: LOCALES, setLocale, label: (targetLocale) => t(LOCALE_LABEL_KEYS[targetLocale]), t, }; }, [dictionary, locale, setLocale]); return {children}; };