Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Frontend Routes and Components

Jon Tran edited this page Nov 15, 2020 · 5 revisions

Components structure:

  • Root
    • App
      • MainNav
        • SearchBarForm
      • SideNav
        • SubscriptionsIndex (BONUS)
          • SubscriptionsIndexItem
      • Main Component

Main Component structure:

  • /

    • VideoIndex
      • VideoIndexItem
  • /login

    • SessionForm
  • /signup

    • SessionForm
  • /channel/:channel_id

    • VideoIndex
      • VideoIndexItem
  • /videos/:videoId

    • VideoShow
    • VideoNav
      • LikeForm?
    • UpNextComponent
      • VideoIndex
        • VideoIndexItem
    • CommentsIndex
      • CreateCommentForm
      • EditCommentForm
      • CommentsIndexItem
  • /videos/new

    • VideoUploadForm
  • /videos/:video_id/edit

    • VideoUpdateForm
  • /results

    • SearchIndex
      • SearchIndexItem
Clone this wiki locally