-
Notifications
You must be signed in to change notification settings - Fork 0
Store Shape
Josh Salcido edited this page Jun 24, 2022
·
3 revisions
store = {
session: {},
spots: {
spotId: {
spotData,
reviews:{
reviewId: {
reviewData,
user: {userData for who reviewed}
}
},
images: {normalizedImageData}
},
optionalOrderedList: []
}
}
store = {
session: {},
spots: {
spotId: {
spotData,
reviews:{
reviewId: {
reviewData,
user: {userData for who reviewed}
}
},
images: {normalizedImageData}
},
optionalOrderedList: []
}
bookings: {
bookingId: {
bookingData,
user: {userData of user that booked}.
spot: {spotData for the booking}
},
optionalOrderedList: []
}
}