Skip to content

Sample State

lk340 edited this page Jan 20, 2019 · 1 revision

Sample State

{
  entities: {
    users: {
      1: {
        id: 1,
        username: "bestzealotprotoss",
        fullname: "IAm Zealot",
        biography: "MY LIFE FOR AUIR!!!"
        authoredPostIds: [1, 2],
        likedPostIds: [1],
        
      },
      2: {
        id: 2,
        username: "emperorofthedominion",
        fullname: "Arcturus Mengsk",
        biography: "Them filthy Zerg will get what's coming for them."
        authoredPostIds: [3],
        likedPostIds: [1, 3]
      }
    },
    Posts: {
      1: {
        id: 1,
        body: "HONOR GUIDE ME !!!",
        authorId: 11,
        imageUrl: "https://vignette.wikia.nocookie.net/starcraft/images/0/06/Zealot_SC2_Art1.jpg/revision/latest?cb=20171016170616"
      },
      2: {
        id: 2,
        body: "En taro Adun, executor!",
        authorId: 25,
        imageUrl: "https://vignette.wikia.nocookie.net/starcraft/images/9/91/Zealot_SC1_Art3.jpg/revision/latest?cb=20091230035738"
      },
      3: {
        id: 3,
        body: "Good day, magistrate. My name is Arcturus Mengsk, and I represent the Sons of Korhal.",
        authorId: 11,
        imageUrl: "https://vignette.wikia.nocookie.net/starcraft/images/a/a4/ArcturusMengsk_SC2_Head3.jpg/revision/latest?cb=20151129213638"
      }
    },
    Likes: {
      1: {
        id: 1,
        userId: 1,
        postId: 2
      },
      2: {
        id: 2,
        userId: 4,
        postId: 1
      }
    },
    Comments: {
      1: {
        id: 1,
        userId: 1,
        postId: 2,
        commentBody: "You cannot destroy the Zerg without our assistance, human."
      },
      2: {
        id: 2,
        user_id: 2,
        post_id: 2,
        commentBody: "I do not need sympathy from you, alien."
      }
    },
    Following: {
      1: {
        id: 1,
        userId: 1,
        followerId: 2
      },
      2: {
        id: 2,
        user_id: 2,
        followerId: 2
      }
    }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    postForm: ["Post body cannot be blank"],
    signUp: ["Missing username full name, email, and/or password"],
    commentForm: ["Your comment is too long"]
  },
  session: { currentUserId: 25 }
}

Clone this wiki locally