fluxxor icon indicating copy to clipboard operation
fluxxor copied to clipboard

:hammer_and_wrench: Flux architecture tools for React

Results 38 fluxxor issues
Sort by recently updated
recently updated
newest added

Hello, me again. I'm wondering which are the best practices when there are nested models, for example. I've an action like this ``` load: function() { this.dispatch(Constants.LOAD_PRODUCT) request .get(BASE_URL +...

Hello I am new to React and Flux. On this line https://github.com/BinaryMuse/fluxxor/blob/master/examples/react-router/app/components/recipe_editor.jsx#L85 when the recipe is edited there is a transition to recipe view. How to implement it if I...

I would like to be able to do something like: ``` javascript var TimeMixin = { mixins: [StoreWatchMixin("TimeStore")], ... }; var List = React.createClass({ mixins: [..., StoreWatchMixin("ArticleStore"), TimeMixin, ...], });...

From [this comment](https://github.com/BinaryMuse/fluxxor/issues/55#issuecomment-74965812) on #55.

See the comments at 8eea48c6a65febee91093e3fb4af454261246852 > @svnlto > we have a simple component test using `jest`and that break using `1.5.2`: > > ``` > TypeError: > /home/jenkins/workspace/redacted/src/app/components/contacts/__tests__/header-test.js: > /home/jenkins/workspace/redacted/src/app/components/contacts/header.js: >...

I wrote a Store mixin for my application and was curious if other people had similar issues and were interested in a PR. --- I have a Store in my...

I changed to export the `lib/store` module. By using this directly, we will be able to create stores by using ES6 Classes style. For example in TypeScript: ``` ts import...

this would be very helpful. :)

If you're familiar with one, please let me know. I'd like to surface these in a more centralized location. - [fluxxor-translation](https://github.com/rottmann/fluxxor-translation) - [Fluxxor-AutoBind](https://github.com/STRML/fluxxor-autobind) - [Fluxxor Test Utils](https://github.com/awei01/fluxxor-test-utils/)

It seems odd to have this one event not use a constant when every other emitted event should be using constants. I think that there should be this method in...