Top "Flux" questions

An application design paradigm used as a replacement for MVC, pioneered at Facebook by Jing Chen

How to handle tree-shaped entities in Redux reducers?

I'm a bit stuck thinking on how to implement a reducer where its entities can have children of the same …

javascript reactjs-flux flux redux
How to call redux action after success of another action?

So I have an auth related reducer set up like this: export default function reducer(state = initialState, action = {}) { switch (action.…

reactjs functional-programming redux react-redux flux
How to pass argument to controller action with FluidTypo3?

How do I have to pass an argument to a flux-enabled controller so it is recognized by the controller action? …

typo3 flux typo3-6.2.x
is there any good Http library for React flux architecture

We have a react application with Flux architecture, I am searching any good library for sending http request like angular's $…

reactjs react-router flux reactjs-flux
Why redux store should be serializable?

When reading the redux doc I found that the doc mentioned this: Still, you should do your best to keep …

javascript reactjs redux flux
Should I define model classes?

React uses Flux architecture and it is said in https://reactjs.org/docs/thinking-in-react.html that React has two models …

javascript reactjs class react-native flux
How to handle complex side-effects in Redux?

I've been struggling for hours to finding a solution to this problem... I am developing a game with an online …

javascript flux redux
Redux - Loading initial state asynchronously

I'm trying to work out the cleanest way to load the initial state of my Redux stores when it comes …

javascript redux flux
Passing CSRF token to REACT/FLUX from node

I'm using nodejs and usually pass down csrf token like the following: util.js module.exports.csrf = function csrf(req, …

reactjs reactjs-flux flux
How do GraphQL & Redux work together?

I am wondering about the relationship between the two. I am quite confused since I see them both as ways …

reactjs redux react-redux graphql flux