Skip to content

Sample State

Anna Oh edited this page Nov 20, 2017 · 8 revisions
{
  entities: {
    photos: {
      1: {
        id: 1,
        img_url: "https://github.com/AnnaNOh/instagram/wiki/Sample-State/_edit",
        body: "Taken in the East Bay",
        author_id: 11,
        likes: 12,
        comments: [1,2],
        // current_user_likes allows us to know whether to post or delete a user's like!
        current_user_likes: false
      },
      2: {
        id: 2,
        img_url: "https://github.com/AnnaNOh/instagram/wiki/MVP-List",
        body: "I love coffee",
        author_id: 25,
        likes: 45,
        comments: [],
        current_user_likes: true
      },
      3: {
        id: 3,
        img_url: "https://balsamiq.cloud/swh30/pk4xz/r9CE5",
        body: "Cats are the best",
        author_id: 25,
        likes: 16,
        comments: [],
        current_user_likes: true
      }
        },
        comments: {
      1: {
        id: 1,
        body: "I've been there before",
        author_id: 25,
        photo_id: 1,
      },    
      2: {
        id: 2,
        body: "The sunset is so pretty",
        author_id: 57,
        photo_id: 1,
      }
    },
    users: {
      11: {
        id: 11,
        username: "blue_macaw",
        img_url: "http://maxpixel.freegreatpicture.com/static/photo/1x/Wildlife-Tropical-Pet-Colorful-Macaw-Parrot-Bird-410144.jpg"
      }
      23: {
        id: 23,
        username: "blue_parakeet",
        img_url: "https://cdn.pixabay.com/photo/2013/11/03/14/56/bird-204842_960_720.jpg"
      },
      25: {
        id: 25,
        username: "blue_toucan",
        img_url: "https://cdn.pixabay.com/photo/2015/10/01/16/43/toucan-967334_960_720.jpg"
      }
     }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    commentForm: ["Comment cannot be empty" ]
  },
  session: {
    currentUser: {
      id: 57,
      username: "blue_hawk",
      img_url: "https://cdn.pixabay.com/photo/2013/12/29/03/47/hawk-234999_960_720.jpg"
    }
  }
}

Clone this wiki locally