mirror of
				https://github.com/elyby/accounts-frontend.git
				synced 2025-05-31 14:11:58 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			921 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			921 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import React, { useState, useEffect, ComponentType } from 'react';
 | 
						|
import { RawIntlProvider, IntlShape } from 'react-intl';
 | 
						|
 | 
						|
import i18n from 'app/services/i18n';
 | 
						|
import { useReduxSelector } from 'app/functions';
 | 
						|
 | 
						|
const IntlProvider: ComponentType = ({ children }) => {
 | 
						|
    const [intl, setIntl] = useState<IntlShape>();
 | 
						|
    const locale = useReduxSelector(({ i18n: i18nState }) => i18nState.locale);
 | 
						|
 | 
						|
    useEffect(() => {
 | 
						|
        if (process.env.NODE_ENV === 'test') {
 | 
						|
            // disable async modules loading in tests
 | 
						|
            setIntl(i18n.getIntl());
 | 
						|
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        (async () => {
 | 
						|
            setIntl(await i18n.changeLocale(locale));
 | 
						|
        })();
 | 
						|
    }, [locale]);
 | 
						|
 | 
						|
    // don't run the application until locale bundle will be loaded
 | 
						|
    if (!intl) {
 | 
						|
        return null;
 | 
						|
    }
 | 
						|
 | 
						|
    return <RawIntlProvider value={intl}>{children}</RawIntlProvider>;
 | 
						|
};
 | 
						|
 | 
						|
export default IntlProvider;
 |