State Shape Sample - KingApe714/TableOpen GitHub Wiki

{
  entities: {
    users: {
      1: {
        id: 1,
        username: "KingApe",
        email: "[email protected]
      },
      2: {
        id: 2,
        username: "JonaTheGreat",
        email: "[email protected]
      },
      31: {
        id: 31,
        username: "TheOtherGuy"
        email: "[email protected]"
      }
    },
    restaurants: {
      21: {
        id: 21,
        name: "Omelette House",
        phone_number: 5551234567,
        hours_of_op: "10-4",
        Executive_Chef: "KingApe",
        city: "Montclair",
        description: "The greatest restaurant in town",
        rating: 4.5
      },
      35: {
        id: 35,
        name: "Chicken Shack",
        phone_number: 5557654321,
        hours_of_op: "4-10",
        Executive_Chef: "ApeKing",
        city: "San Francisco",
        description: "The not so greatest restaurant in town",
        rating: 4.2
    }
    reviews: {
      23: {
        id: 23,
        user_id: 1,
        restaurant_id: 21,
        title: "this place sucks",
        body: "They couldn't even scramble an egg, I'm never coming back",
        rating: 2.7
      },
      32: {
        id: 32,
        user_id: 2,
        restaurant_id: 35,
        title: "loved this place",
        body: "Brunch drink specials were amazing",
        rating: 4.8
      }
    }
    reservations: {
      5: {
        id: 5,
        user_id: 1,
        restaurant_id: 35,
        time: 17:30 21/23/2020,
        party_size: 3
      },
      6: {
        id: 6,
        user_id: 2,
        restaurant_id: 21,
        time: 16:30 21/23/2020,
        party_size: 5
      }
    }
  },
  session: {
    currentUser: {
      id: 1,
      username: "KingApe",
      email: "[email protected]"
    }
  },
  ui: {
    modalOpen: true
  },
  errors: {
    userErrors: [],
    sessionErrors: [],
    restaurantErrors: [],
    reviewErrors: []
  }
}