i come from Reflux to Redux. in Reflux your business logic is exist only in store but in Redux its seems different..for exampl
Quoting the Redux FAQ entry on "how to split business logic between action creators and reducers":
There's no single clear answer to exactly what pieces of logic should go in a reducer or an action creator.
If you put all the logic in the action creator, you end up with fat action objects that declare the updates to the state. Reducers become pure, dumb, add-this, remove that, update these functions. They will be easy to compose. But not much of your business logic will be there. If you put more logic in the reducer, you end up with nice, thin action objects, most of your data logic in one place, but your reducers are harder to compose since you might need info from other branches. You end up with large reducers or reducers that take additional arguments from higher up in the state.
It's valid to dispatch an action that gets ignored by the reducers, and it's also valid to inspect the state first and decide to not dispatch an action. Ultimately, it does come down to what you're comfortable with.