2020-10-24 20:02:06 +00:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
2020-10-21 18:54:19 +00:00
|
|
|
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
2020-07-31 20:48:15 +00:00
|
|
|
import React from 'react';
|
|
|
|
import addons from '@storybook/addons';
|
|
|
|
import omit from 'lodash/omit';
|
2020-10-24 19:46:36 +00:00
|
|
|
import { IntlProvider} from '../../intl';
|
2020-11-24 22:20:51 +00:00
|
|
|
const messages = require('../../../i18n').default;
|
2020-10-24 20:02:06 +00:00
|
|
|
|
2020-07-31 20:48:15 +00:00
|
|
|
export let _config:any = null;
|
|
|
|
|
|
|
|
const EVENT_SET_CONFIG_ID = "intl/set_config";
|
|
|
|
const EVENT_GET_LOCALE_ID = "intl/get_locale";
|
|
|
|
const EVENT_SET_LOCALE_ID = "intl/set_locale";
|
|
|
|
class WithIntl extends React.Component<any,any> {
|
|
|
|
constructor (props:any) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2020-09-30 17:05:22 +00:00
|
|
|
locale: props.intlConfig.defaultLocale || null,
|
2020-07-31 20:48:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this.setLocale = this.setLocale.bind(this);
|
|
|
|
|
|
|
|
const { channel } = this.props;
|
|
|
|
|
|
|
|
// Listen for change of locale
|
|
|
|
channel.on(EVENT_SET_LOCALE_ID, this.setLocale);
|
|
|
|
|
|
|
|
// Request the current locale
|
|
|
|
channel.emit(EVENT_GET_LOCALE_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this.props.channel.removeListener(EVENT_SET_LOCALE_ID, this.setLocale);
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
// If the component is not initialized we don't want to render anything
|
|
|
|
if (!this.state.locale) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
|
|
|
children,
|
|
|
|
getMessages,
|
|
|
|
getFormats,
|
2020-09-30 17:05:22 +00:00
|
|
|
intlConfig,
|
2020-07-31 20:48:15 +00:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const { locale } = this.state;
|
|
|
|
const messages = getMessages(locale);
|
|
|
|
|
|
|
|
const customProps:any = {
|
|
|
|
key: locale,
|
|
|
|
locale,
|
|
|
|
messages,
|
|
|
|
};
|
|
|
|
// if getFormats is not defined, we don't want to specify the formats property
|
|
|
|
if(getFormats) {
|
|
|
|
customProps.formats = getFormats(locale);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2020-10-24 19:46:36 +00:00
|
|
|
<IntlProvider {...intlConfig} {...customProps}>
|
2020-07-31 20:48:15 +00:00
|
|
|
{children}
|
2020-10-24 19:46:36 +00:00
|
|
|
</IntlProvider>
|
2020-07-31 20:48:15 +00:00
|
|
|
);
|
|
|
|
}
|
2020-10-22 19:24:14 +00:00
|
|
|
|
|
|
|
setLocale (locale:string) {
|
|
|
|
this.setState({
|
|
|
|
locale: locale,
|
|
|
|
});
|
|
|
|
}
|
2020-07-31 20:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-21 18:54:19 +00:00
|
|
|
export const setIntlConfig = (config:typeof _config):void => {
|
2020-07-31 20:48:15 +00:00
|
|
|
_config = config;
|
|
|
|
|
|
|
|
const channel = addons.getChannel();
|
|
|
|
channel.emit(EVENT_SET_CONFIG_ID, {
|
|
|
|
locales: config.locales,
|
2020-09-30 17:05:22 +00:00
|
|
|
defaultLocale: config.defaultLocale,
|
2020-07-31 20:48:15 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-10-21 18:54:19 +00:00
|
|
|
export const withIntl = (story:any):JSX.Element => {
|
2020-07-31 20:48:15 +00:00
|
|
|
const channel = addons.getChannel();
|
|
|
|
|
|
|
|
const intlConfig = omit(_config, ['locales', 'getMessages', 'getFormats']);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<WithIntl intlConfig={intlConfig}
|
|
|
|
locales={_config.locales}
|
|
|
|
getMessages={_config.getMessages}
|
|
|
|
getFormats={_config.getFormats}
|
|
|
|
channel={channel}>
|
|
|
|
{story()}
|
|
|
|
</WithIntl>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2020-10-24 20:02:06 +00:00
|
|
|
export default function decorate() {
|
|
|
|
setIntlConfig({
|
|
|
|
locales: Object.keys(messages.translations),
|
|
|
|
defaultLocale: messages.defaultLocale,
|
|
|
|
// we use this form becuase it allows the story to be viewed in IE11
|
|
|
|
getMessages: function(locale:string) { return {...messages.translations[messages.defaultLocale], ...messages.translations[locale]};},
|
|
|
|
});
|
|
|
|
return withIntl;
|
|
|
|
}
|
|
|
|
|
2020-07-31 20:48:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|