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

E.g. a form submits via an action, then the action errors. We want to display the error to the user, but when the form goes away we want to stop...

There's no good way to create reusable bits of stores, for example, default methods, action handlers, or initialize methods. See #31 for a good example. Mixins could certainly do the...

api

Namely with multiple "keys" in `bindActions`; also think about semantics re #37

Some sugar for simple stores. It implements `handleAdd`, `handleRemove`, `handleEmpty`, `getState`, `emptyWhere`, `setCollectionName`. ``` js var TodoStore = Fluxxor.createCollectionStore({ actions: { "ADD_TODO": "handleAdd", "TOGGLE_TODO": "handleToggleTodo", "CLEAR_TODOS": "handleClear" }, initialize: function()...

Not sure if this is in scope, but it would be very cool (and easy I think) if Fluxxor supported running in a web worker. That way your "business logic"...

enhancement

Could help bridge the gap between the React blog post/core ideas and the Fluxxor implementation

documentation