-
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,
brand: Blizzard,
name: "Diablo IV",
dimensions: null,
description: "Great game",
price: 69.99,
category: "Video Games"
},
2: {
id: 2,
brand: Nintendo,
name: "The Legend of Zelda: Tears of the Kingdom",
dimensions: null,
description: "Great game",
price: 69.00,
category: "Video Games"
},
3: {
id: 3,
Brand: DJI,
name: "DJI Mini 3 (DJI RC)",
dimensions: 14.3 x 9.9 x 2.8 inches,
description: "Great game",
price: 609.00,
category: "Camera & Photo"
}
},
users: {
7: {
id: 7,
name: "gambit",
email: "luckysevens777@gmail.com"
},
23: {
id: 23,
name: "michael",
email: "mikejordan@aol.com"
}
},
reviews: {
1: {
id: 1,
user_id: 7,
product_id: 1,
title: "best game 2023"
body: "can't wait to play it",
rating: 5
},
2: {
id: 1,
user_id: 23,
product_id: 3,
title: "beware of trees"
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 }
}