Frontend Routes and Components - darrenyong/aprtr GitHub Wiki
Component Hierarchy
Root
App
NavBar
Main Component
Footer
Frontend Routes
The following routes will be rendered between the NavBar
and Footer
General
/
-> Splash page (homepage splash OR photos index depending on loggedIn?)/login
-> New Session form/signup
-> New User form/upload
-> Upload photo form/users/:userId
-> View user's photos throughPhotosIndex
andPhotosIndexItem
Photos
/photos
-> View all photos throughPhotosIndex
andPhotosIndexItem
/photos/:photoId
-> View specific photo throughPhotosShow
/photos/:photoId/edit
-> Edit a specific photo throughPhotoForm
Albums
/users/:userId/albums
-> View user's albums throughAlbumsIndex
andAlbumIndexItem
/users/:userId/albums/:albumId
-> View all photos in an album throughPhotosIndex
andPhotoIndexItem
/users/:userId/albums/:albumId/edit
-> Edit a specific album throughAlbumForm
Tags
/tags/:tagId
-> View all photos with a tag throughPhotosIndex
andPhotoIndexItem