Skip to content

Sample State

lisza edited this page Sep 16, 2017 · 4 revisions
{
  entities: {
    users: {
      1: {
        id: 1,
        username: "lisza",
        biography: "A user names lisza, with sz.",
        img_url: "https://cdn-images-1.medium.com/fit/c/100/100/1*XPVrlIOjfwhtyBJDZILm6Q.png",
        followers: [2, 4, 12, 34], //or num_followers?
        following: [2, 5, 23, 24, 80],
        followed_by_current_user: true/false
      },
      2: {
        id: 2,
        username: "Unicorn",
        biography: "Mythical animal",
        img_url: "http://content.invisioncic.com/Mnhlcanucks/profile/photo-thumb-40789.png",
        followers: [1, 3, 14, 39], //or num_followers?
        following: [1, 5, 23, 40],
        followed_by_current_user: true/false
      }
    },
    stories: {
      35: {
        id: 35,
        title: "My First Story",
        description: "A story about life, and me.",
        body: "... My first story here...",
        author_id: 1,
        likers: [2, 5, 6, 7], //or num_likes rather?
        liked_by_current_user: true/false,
        comments: [40, 45, 51]
      },
      36: {
        id: 36,
        title: "Some Story",
        description: "A description of some story",
        body: "...Some story here...",
        author_id: 2,
        likers: [1, 3, 21, 40], //or num_likes rather?
        liked_by_current_user: true/false,
        comments: [56, 80]
      }
    },
    comments: {
      40: {
        id: 40,
        body: "I like your story, reminds me of myself.",
        author_id: 2,
        story_id: 35
      }
    },
    ui: {
      loading: true/false
    },
    errors: {
      login: ["Invalid username or password"],
      story_form: ["Body can't be blank"]
    },
    session: {
      currentUser: {
        id: 2,
        username: "Unicorn",
        img_url: "http://content.invisioncic.com/Mnhlcanucks/profile/photo-thumb-40789.png"
      }
    }
  }
Clone this wiki locally