[8:27 PM] cquill: @acemarke Right, so many portions of the UI will be connected. But does each connected portion typically get its own container component? Seems verbose and redundant to have the following for each CRUD resource: UserList, UserListContainer, UserView, UserViewContainer, UserEdit, UserEditContainer, UserNew, UserNewContainer. Is there a simpler way?
[9:56 PM] acemarke: @cquill : this leads into one of my favorite (?) semi-rants, and one that I apparently need to write down so I can paste it
[9:57 PM] acemarke: A "container" component is simply any component whose primary job is to fetch data from somewhere, and pass that data on to its children
[9:58 PM] acemarke: With Redux, the wrapper components generated by connect are "container" components, since their job is to extract data from the Redux store
[9:58 PM] acemarke: I generally dislike the somewhat-common approach of trying to divide everything into a "components" folder and a "containers" folder
[9:59 PM] acemarke: at least when that's done to keep separation between the presentational components and the use of connect
[10:00 PM] acemarke: granted, my actual hands-on experience is a bit limited, but my take is that you generally have "app-specific components that need to be connected to Redux", and "truly generic components that probably aren't going to get connected, or if they are, will be connected many times for different parts of the app"
[10:00 PM] acemarke: so if you're trying to structure things as, say, components/UserList/UserList.jsx, and containers/UserListContainer/UserListContainer.jsx, that's overkill
[10:01 PM] acemarke: just put both of them in one file, export class UserList
, and export default connect(mapState)(UserList)
[11:20 PM] CelloG: I find that separating containers and components into different files is good if there is complexity. And I have re-used presentation components with different containers, so it depends on context, as always
[11:21 PM] acemarke: right - if a presentational component is going to get connected multiple ways, or if it's truly generic, then it makes sense to separate it out some
[11:22 PM] acemarke: but, the majority of what I've seen is that most connected components are app-specific, and not connected more than once
[11:22 PM] acemarke: here's a good example of a typical connected component file for me: https://github.com/markerikson/project-minimek/blob/master/src/features/pilots/PilotsList/PilotsListRow.jsx
markerikson/project-minimek
project-minimek - A sample app to demonstrate various useful Redux techniques, accompanying the blog series at http://blog.isquaredsoftware.com/series/practical-redux
[11:23 PM] acemarke: so yeah, as always, YMMV, and that's just my opinion, but I do think that trying to separate all "components" and "containers" just for the sake of keeping them separate is a waste of effort
[11:24 PM] acemarke: especially when you do more work and realize that you actually do need to connect a given component
[10:36 PM] acemarke: okay, so: it helps to understand that the phrase "container component" is just a descriptive term
[10:37 PM] acemarke: that can be applied to any component whose primary job is to fetch data from somewhere, and pass that data to its children
[10:37 PM] don: right
[10:37 PM] acemarke: this could involve making AJAX calls and calling this.setState({theData}), subscribing to a Flux store, or something else
[10:38 PM] acemarke: in the case of Redux, the wrapper components generated by connect() are "container components"
[10:38 PM] acemarke: because all they do is subscribe to the Redux store, extract the requested data, and pass that down to the wrapped component
[10:38 PM] acemarke: now, those wrapped component could themselves be doing additional data fetching or something
[10:38 PM] acemarke: and also be labeled as "containers" if that term is appropriate
[10:39 PM] acemarke: that said, in a typical React+Redux app, the wrapped components generally are not doing data fetching themselves
[10:39 PM] acemarke: they might call this.props.someFunctionThatFetchesData()
[10:39 PM] acemarke: but that function usually goes off and does the fetching and then dispatches the Redux action to store it
[10:39 PM] acemarke: so the component itself isn't actually doing the "container"-type work
[10:39 PM] acemarke: it's just calling whatever function it was given as a prop
[10:40 PM] acemarke: so, as a general observation, most Redux-connected components would be mostly "presentational"
[10:40 PM] BTM: I just generally think of connect() and the intermediate component that it generates under-the-hood as the container.
i think this would be a very good blogpost because most people organize code like this