Frontend Routes & Components - nramabad/Clone-ify GitHub Wiki

Frontend Routes

Component Overview

  • Root
    • App
    • NavBar (Albums, Artists, Songs, Playlists, New Playlist button)
    • SideBar (Search, Home, Library)
    • (main component will render here)
    • MusicPlayer

NavBar, SideBar and MusicPlayer will only render when a user is logged in.

User Authentication

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm

Main Components

/library

  • /library/albums
    • AlbumIndex
    • AlbumIndexItem
  • /library/artists
    • ArtistIndex
    • ArtistIndexItem
  • /library/songs
    • SongIndex
    • SongIndexItem
  • /library/playlists
    • PlaylistIndex
    • PlaylistIndexItem

/search

  • /search/:query
    • SearchIndex
  • /search/:query/results (displays album, artist, song, and playlist results separately)
    • SearchIndex

/users

  • /users/:userId
    • UserIndex
    • UserShow