frontend routes - Patrick-Mondala/facebook-clone GitHub Wiki

Frontend Routes

Our components are organized as follows:

  • Root
    • App
      • NavBar
        • NavSearch
      • (main components go here)
      • Footer

The following routes, defined in App, will render components between NavBar and Footer.

  • /

    • not logged in (no current_user)
      • SessionForm
    • logged in
      • SideNav
      • NewsFeed
        • PostForm
        • PostIndex
          • CommentsIndex
            • CommentItem
          • CommentForm
  • /users/:userId

    • Profile
      • ProfileCover
        • ProfilePicture
          • ProfilePictureForm
        • ProfileCoverPicture
          • ProfileCoverPictureForm
        • ProfileNav
          • ProfileNavItem
      • ProfileSidebar
        • ProfileIntro
          • ProfileBio
          • ProfileInformation
        • ProfilePhotos
          • ProfilePhotoItem
        • ProfileFriends
          • ProfileFriendsIndex
            • ProfileFriendItem
      • ProfileTimeline
        • ProfilePostForm
        • ProfilePostIndex
          • ProfilePostItem