sample state - Priya67/onetouchBnB GitHub Wiki
{
session: {
currentUser: {
id: 1,
username: “Tom”,
email: “[email protected]",
img_url: "https://res.cloudinary.com/dlgwlvcuy/image/upload/v1506420041/users/u4.png",
fname: "John",
lname: "Doe",
phone_number: "1234567890"
},
errors: {
login: ["Incorrect username/ password combination"]
},
reviews: {
1: {
author: {
id: 1,
username: “Priya"
img_url: “https://res.cloudinary.com/dlgwlvcuy/image/upload/v1506420041/users/u2.jpg",
},
body: "It was a lovely stay!!",
id: 1,
rating: 5,
spot_id: 1
},
},
spots: {
1: {
id: 1,
description: “Brand new place",
headline: "Beautiful place",
house_rules: "No smoking",
img_url: "https://res.cloudinary.com/dlgwlvcuy/image/upload/v1506407116/spots/new3_oudh7p.jpg",
city: "San Francisco",
cancellations: "Flexible",
lat: 37.771448,
lng: -122.438111,
number_of_beds: "2",
number_of_bathroom: 1,
number_of_bedroom: 1,
number_of_guests: 3,
price: 150,
location: "100 Powell Street, San Francisco, CA"
rating: 5,
reviews: [1, 2...],
},
},
bookings: {
1: {
id: 1,
spot_id: 1,
user_id: 2,
from: 1/10/2016,
to: 7/10/2016
}
}
}