By type: one folder for components, one for reducers, one for actions, and so on
By feature: all files related to one feature are inside the same folder.
I started from grouping by type. It works for a small application but to add a new feature you have to create: reducers/myfeature.js, selectors/myfeature.js, components/MyFeature.js and a few more. It’s annoying and difficult to explain to new team members.
Now I group files by view or page: dashboard, users, and so on
Here are main folders I have in my application:
app: Redux store configuration and root reducer, React Router routes, application root components with connections to Redux, Redux DevTools, React Router and React Intl.
components: shared components.
models: Immutable.js records.
util: any shared non-React JavaScript code.
features.
Feature folders look like this:
I follow the Ducks convention so instead of separate files for actions, reducers and constants there are single duck file. I also put Reselect selectors into the duck file as selector named export.
The components folder contains all React components that are unique to this view.
FeatureNameView is connected to Redux and contains all action calls. Nested components receive handlers as props and don’t know anything about Redux. All page layout goes to FeatureNameLayout component.
For simple applications I like the simplest structure:
It works fine until you add more styles and other non-JavaScript files to your components. In this case I’d put every component into a separate folder:
Filenames are still contain component class names so you can open them using a fuzzy search in your editor. I also have an extra entry file in every component folder, index.js:
It allows you to import components like this: components/Component1 instead of components/Component1/Component1.
Each feature has its own duck file duck.js structured as follows:
Then import it at the root reducer, app/reducers.js:
I use selectors as the only way to access Redux state in components. So I connect selectors and actions to feature’s root component, FeatureNameView.jsx:
In a few places I have separate files for development and production builds: containers/Root and store/configureStore, for example. I think they are easier to use then a single file with a bunch of ifs.
For example, configureStore.development.js and configureStore.production.js are completely independent modules and configureStore.js chooses which one to use:
It allows you to do import configureStore from './store/configureStore and have the right version of the module depending on the current environment.