-
Notifications
You must be signed in to change notification settings - Fork 0
Sample State
aciffone23 edited this page May 23, 2023
·
4 revisions
{
entities: {
products: {
1: {
id: 1,
name: "Diablo IV",
description: "Great game",
price: 69.99,
category: "Video Games"
},
2: {
id: 2,
name: "The Legend of Zelda: Tears of the Kingdom",
description: "Great game",
price: 69.00,
category: "Video Games"
},
3: {
id: 3,
name: "DJI Mini 3 (DJI RC)",
description: "Great game",
price: 609.00,
category: "Camera & Photo"
}
},
users: {
7: {
id: 7,
username: "luckysevens",
email: "luckysevens777@gmail.com"
},
23: {
id: 23,
username: "theGoat",
email: "mikejordan@aol.com"
}
},
reviews: {
1: {
id: 1,
user_id: 7,
product_id: 1,
body: "can't wait to play it",
rating: 5
},
2: {
id: 1,
user_id: 23,
product_id: 3,
body: "my kid crashed it into a tree",
rating: 1
}
},
cart: {
1: {
id: 1,
product_id: 3,
user_id: 2,
quantity: 6
}
}
},
ui: {
loading: true/false,
modal: true/false
},
errors: {
login: ["Email already in use"]
},
session: { currentUserId: 23 }
}