Skip to content

Frontend Routes

Simon DeBevoise edited this page Dec 4, 2019 · 2 revisions

Frontend Routes

Root
 │  
 └── App
      ├── Header (Log In / Sign Up: not displayed if logged in)
      ├── Main
      │    ├── Nav Column
      │    └── (main component display)
      └── Footer (media player)

The routes included below will render components in the main component display:

  • /

    • Home page
  • /search

    • Search form, Genres index
  • /collection/ - Index of User collections, default: /playlists

    • /collection/playlists
    • /collection/albums
    • /collection/artists
    • /collection/tracks

    Bonus:

    • /collection/podcasts
  • /queue

    • Queued tracks index
  • /playlist/:id

    • Playlist show page
  • /artist/:id

    • Artist show page
  • /artist/:id/about

    • Artist show page detail
  • /album/:id

    • Album show page
  • /track/:id

    • Redirects to /album/:album_id
  • /settings/account

    • Logout
    • Edit User Form

Clone this wiki locally