Component Hierarchy - mwei210/pixionary GitHub Wiki
React Component Hierarchy
Functional Component Hierarchy
Root
App
NavBar
MainPage
Footer
NavBar
NavBar
- Components:
SessionButtonsContainer
+SessionButtons
- State:
session
- State:
- Components:
Note: All other components are rendered inside of MainPage
Photos
-
ProfileContainer
+PhotoIndexContainer
+PhotoIndex
- Route:
/#/profile
- State:
photos
,users
- Components:
PhotoIndexItem
- State:
photos[:id]
,users[:id]
,ui
- State:
- Route:
-
UserShowContainer
+PhotoIndexContainer
+PhotoIndex
- Route:
/#/users/:userId
- State:
photos
,users
- Components:
PhotoIndexItem
- State:
photos[:id]
,users[:id]
,ui
- State:
- Route:
-
PhotoShowContainer
+PhotoShow
- Route:
/#/photos/:photoId
- State:
photos[:id]
,users[:id]
,ui
- Route:
-
PhotoFormContainer
+PhotoForm
- Route:
/#/photos/create
- State:
errors.photoForm
- Route:
Session
SessionFormContainer
+SessionForm
- Route:
/#/login
and/#/signup
- State:
errors.login
- Route:
Feed
FeedIndexContainer
+FeedIndex
- Route:
/#/
- State:
photos
,users
- Components:
FeedIndexItem
- State:
photos[:id]
,users[:id]
- Route: