rangle / rangle-starter

48 stars 23 forks source link

Better folder structure #151

Open SethDavenport opened 8 years ago

SethDavenport commented 8 years ago

Our current approach to assembling the redux store is confusing. We want to work more with feature-based folders while not giving up redux's ability to decouple UI and store.

One proposal is something like the following:

actions
store (all non-action redux stuff)
pages (top level components, formerly containers)
  + (page-specific components/services in feature-named folders under each page (could be smart, could be dumb)
core
  + components
    + general-purpose, reusable components (dumb only)
  + pipes
  + directives
utils
  + general-purpose services in feature-named folders
SethDavenport commented 8 years ago

Thoughts?