Skip to content

Frontend Routes

PlasmaNuke edited this page Jan 27, 2024 · 4 revisions

If logged in

*

  • <Navigation />
  • <AudioPlayerContainer />
    • <AudioControls />
    • <ProgressBar />
    • <AudioPlayer />
    • <TrackDisplay />

/

  • TrackIndex
    • TrackIndexItem
  • PlaylistIndex
    • PlaylistIndexItem
  • AlbumIndex
    • AlbumIndexItem

/login

  • <LoginForm />

/signup

  • <SignUpForm />

/:username

  • <UserView />
  • <TrackIndex />
    • <TrackIndexItem />
  • <PlaylistIndex />
    • <PlaylistIndexItem />
  • <AlbumIndex />
    • <AlbumIndexItem />
  • tracks/new
    • TrackForm
    • NavBar
    • PlayBar
  • tracks/:trackId
    • TrackShow
    • NavBar
    • PlayBar
  • tracks/:trackId/edit
    • TrackShow
    • NavBar
    • PlayBar
  • playlists/new
    • PlaylistForm
    • NavBar
    • PlayBar
  • playlists/:playlistId
    • TrackIndex
      • TrackIndexItem
    • NavBar
    • PlayBar
  • playlists/:playlistId/edit
    • PlaylistForm
    • NavBar
    • PlayBar

Clone this wiki locally