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 through PhotosIndex and PhotosIndexItem

Photos

  • /photos -> View all photos through PhotosIndex and PhotosIndexItem
  • /photos/:photoId -> View specific photo through PhotosShow
  • /photos/:photoId/edit -> Edit a specific photo through PhotoForm

Albums

  • /users/:userId/albums -> View user's albums through AlbumsIndex and AlbumIndexItem
  • /users/:userId/albums/:albumId -> View all photos in an album through PhotosIndex and PhotoIndexItem
  • /users/:userId/albums/:albumId/edit -> Edit a specific album through AlbumForm

Tags

  • /tags/:tagId -> View all photos with a tag through PhotosIndex and PhotoIndexItem