Giampaolo Bellavite
Giampaolo Bellavite
@yachaka thanks for caring about this! I'm ok for disabling circular dependencies if case memoization is enabled. I'm thinking to export another function enabling memoization, which turns circular dependencies off....
The solution by @yachaka in #20 works, but it needs some refactoring to keep the code more maintainable. I wonder if it makes sense supporting external cache libraries such as...
> Shouldn't it be considered a new feature rather than a breaking change @yachaka sure! I was thinking to add a new `options` argument: ``` js denormalize(entity, entities, schema, {...
Hi @tanekim77, sure – I have no idea how this works, a PR is greatly appreciated :)
Hi @jcarbo, yes I wouldn't alter the schema definition just for denormalization. What about passing a `transform` option to `denormalize`? ``` js const transforms = { articles: _.identity }; const...
Hi @selaromi! I suggest you to upgrade to react-intl v2 and read its documentation about loading locales. This project is rather old and it is using an older version of...
I agree with you @robink, I couldn't find a better solution. The problem here is to download locale data only for the user's language before rendering the app. With this...
@dmitry thanks for joining in :-) What do you mean for _translation data_ ? We need: 1) "messages" (as in the react-int jargon): translated strings used in the interface 2)...
We could make a webpack plugin loading a set of locales. The plugin should receive an array of the scripts to be included for each language. It could work with...
woah @danilobuerger you rock!! Does it even work with react-intl 2.0?