import React, { Component } from 'react' | |
import Subapp from './subapp/Root' | |
class BigApp extends Component { | |
render() { | |
return ( | |
<div> | |
<Subapp /> | |
<Subapp /> | |
<Subapp /> | |
</div> | |
) | |
} | |
} | |
// These subapps will be completely independent. | |
// | |
// They won't share data or actions, and won't see or communicate with each other. | |
// If you mix this approach with standard Redux approach of composing reducers, it | |
// will get extremely confusing so it's best if you pick just one: either your app | |
// is composed of pieces that follow Redux pattern holistically, or your app is so | |
// large and disjointed that smaller independent "subapps" make more sense. | |
// | |
// The first case is probably closer to normal web products, and the second case is | |
// closer to a "product hub", a "dashboard", or enterprise software where unrelated | |
// tools are grouped together because they're part of one package. |
// This is our subapp's root connected component. | |
// It can render more components, connected or not, below, just like normally. | |
// Usually we'd render it in <Provider> and be done with it. | |
class App extends Component { ... } | |
export default connect(mapStateToProps)(App) |
// However we don't have to call ReactDOM.render(<Provider><App /></Provider>) | |
// if we're interested in hiding the fact that it's a Redux app. | |
// | |
// Maybe we want to be able to run multiple instances of it in the same "bigger" app | |
// and keep it as a complete black box, with Redux being an implementation detail. | |
// To hide Redux behind a React API, we can wrap it in a special component that | |
// initializes the store in the constructor. This way every instance will be independent. | |
// | |
// Note that this is *not* recommended for parts of the same app that share data. | |
// But it can be useful when the bigger app has zero access to smaller apps' internals, | |
// and we'd like to keep the fact that they are implemented with Redux an implementation detail. | |
// Each component instance will have its own store, so they won't "know" about each other. | |
import React, { Component } from 'react' | |
import { Provider } from 'react-redux' | |
import reducer from './reducers' | |
import App from './App' | |
class Root extends Component { | |
constructor(props) { | |
super(props) | |
this.store = createStore(reducer) | |
} | |
render() { | |
return ( | |
<Provider store={this.store}> | |
<App /> | |
</Provider> | |
) | |
} | |
} |
This comment has been minimized.
This comment has been minimized.
nice, but how will DevTools work if there are 3 instances of the same app which may all use the same devtool? |
This comment has been minimized.
This comment has been minimized.
@slorber if you use the Chrome extension you'd have to instrument it in each store, but theoretically that should work. It's already capable of keeping track of stores in different tabs simultaneously. |
This comment has been minimized.
This comment has been minimized.
thanks :) didn't know that as I don't use redux devtools yet unfurtunatly |
This comment has been minimized.
This comment has been minimized.
@StevenLangbroek, yes, that would work, also you could name each subapp instance and easily switch between them. |
This comment has been minimized.
This comment has been minimized.
FYI: following the example, if you also need to wrap the root application component (e.g. To solve that, based on Dan's feedback, I've put together a small library that allows you to define a custom store name, effectively allowing to have nested providers. |
This comment has been minimized.
This comment has been minimized.
Thanks for this nice Gist! But I wonder how to |
This comment has been minimized.
This comment has been minimized.
Which approach would someone take if each 'subapp' is rendered in a separate page instead of nested in a parent div? |
This comment has been minimized.
This comment has been minimized.
Nice, but let's say I have a use case where smaller subapps makes sense, but I also need them to communicate with each other? Has anyone tried that? My specific use case is updating a monolith rails app by replacing chunks of the frontend piecemeal into isolated sub apps (eg. navigationApp, chatApp, contentApp). |
This comment has been minimized.
This comment has been minimized.
@ghernandez345 has a point. Has anyone ever tried this? In my case I have some small amount of shared state between what really are independent apps. Basic user info needs to be shared to know login status, user name, and account lists, but we have a couple of apps that should remain independent of the global state since nothing else will use that data once the users are done. |
This comment has been minimized.
This comment has been minimized.
Having a similar problem to @ghernandez345 and @tylerwgoza, my |
This comment has been minimized.
This comment has been minimized.
@jochakovsky I think in that case I will use
|
This comment has been minimized.
This comment has been minimized.
the annoyance of using this method is that in the official redux documentation states - "You probably only need this if you are in the inadvisable position of having multiple stores". |
This comment has been minimized.
This comment has been minimized.
Has anyone figured this out yet? I am using react to build components for a WordPress site. Each 'root' component will need its own state, but how would I use useDispatch and useSelector to get each component's appropriate state? |
This comment has been minimized.
Nice Work Dan