Skip to content

Redux State Shape

Adam Tang edited this page May 4, 2023 · 1 revision
{
  "session": { 
    "user": {
      "firstname": "demo",
      "lastname": "user",
      "username": "demo_user69",
      "email": "demo@user.com",
      "profilePicture": "https://www.himalmag.com/wp-content/uploads/2019/07/sample-profile-picture.png",
      "followed_users": {},
      "followers": {}
    }
  },
  "sessionUsersPosts": {
    "1": 
      {
        "userId": 1,
        "description": "I enjoyed going to this place and taking a picture of my food",
        "content": "aws_url_of_picture_or_video",
        "likes": {
          "1(userId)": { 
            "firstname": "demo", 
            "lastname": "user", 
            "username": "demo_user69", 
            "email": "demo@user.com" 
          }
        },
        "comments": {
          "2": {
            "description": "This is a great photo/video!",
            "userId": 1,
            "postId": 1
          },
          "5": {
          "description": "Hate this!",
          "userId": 5,
          "postId": 1
        },      
      },
    }
  },
  "followedUsersPosts": 
                  {
                    "1": 
                         {
                           "userId": 1,
                           "description": "I enjoyed going to this place and taking a picture of my food",
                           "content": "aws_url_of_picture_or_video",
                           "likes": 
                               {
                                  "1": { "userId": 1, "postId": 1 },
                                  "4": { "userId": 2, "postId": 1 }
                               },
                           "comments": 
                               {
                                  "2": {
                                        "description": "This is a great photo/video!",
                                        "userId": 1,
                                        "postId": 1
                                     },
                                  "5": {
                                        "description": "Hate this!",
                                        "userId": 5,
                                        "postId": 1
                                     },      
                               },
                         }
                  },
  "nonFollowedUsersPosts": 
                  {
                    "1": 
                         {
                           "userId": 1,
                           "description": "I enjoyed going to this place and taking a picture of my food",
                           "content": "aws_url_of_picture_or_video",
                           "likes": 
                               {
                                  "1": { "userId": 1, "postId": 1 },
                                  "4": { "userId": 2, "postId": 1 }
                               },
                           "comments": 
                               {
                                  "2": {
                                        "description": "This is a great photo/video!",
                                        "userId": 1,
                                        "postId": 1
                                     },
                                  "5": {
                                        "description": "Hate this!",
                                        "userId": 5,
                                        "postId": 1
                                     },      
                               },
                         }
                  },
  "users": 
     {
        "1": {           
             "firstname": "demo",
             "lastname": "user",
             "username": "demo_user69",
             "email": "demo@user.com",
             "profilePicture": "https://www.himalmag.com/wp-content/uploads/2019/07/sample-profile-picture.png",
             "followed_users": {},
             "followers": {}
           },
        "2": {
              "firstname": "demo",
              "lastname": "user",
              "username": "demo_user69",
              "email": "demo@user.com",
              "profilePicture": "https://www.himalmag.com/wp-content/uploads/2019/07/sample-profile-picture.png",
              "followed_users": {},
              "followers": {}
           }
     },

}
Clone this wiki locally