Skip to content

sample state

Corey Ladovsky edited this page Oct 22, 2017 · 2 revisions
{
  entities: {
    business: {
      1: {
        id: 1,
        name: "Tony's Pizza",
        address: "1111 Union Ave, Brooklyn New York, 11211",
        phone_number: "(555) 666-6565",
        profile_pic: "image/url../asdfjlsdj",
        category: "restaurant",
        reviewed_by: [23, 45, 222, 7],
        rating: 3           
      },
      2: {
        id: 2,
        name: "Crest Hardware",
        address: "740 Metropolitan Ave, Brooklyn New York, 11211",
        phone_number: "(123) 321-6420",
        profile_pic: "image/url../adfaeeej",
        category: "Home Improvement",
        reviewed_by: [90, 78, 222, 7000],
        rating: 5
      }
    },
    reviews: {
      34: {      
        id: 12,
        author_id: 90,
        business_id: 1,
        body: "This is my absolute favorite place to go to make me happy.",
        rating: 5
      }
    },
    users: {
      12: {
        id: 44,
        businesses_reviewed: [1,2,3,4,5],
        profile_pic: "image/url/foaioqwehje"
      }
    },
    session: {
      currentUser: {
        id: 45,
        username: "Corey Sky",
        profile_pic: "image/url/jdsalfhnfahjks"
      }
    },
    ui: {
      loading: true/false
    },
    errors: {
      login: ["Incorrect username/password combination"],
      reviewForm: ["Review body cant be blank and rating must be given"]
    }
  }  
}

Clone this wiki locally