State - arleenpandher/Herozon GitHub Wiki

{

   entities: {
    users: {
        3: {
            id: 3,
            username: "Becki",
            email: "[email protected]",
            authoredReviews: [5],
            purchasedproducts: [87, 92],
            itemsinCart: [76] 
        }
    },
    reviews: {
        5: {
            id: 5,
            user_id: 3,
            product_id: 35,
            title: "Best Product out there",
            body: "I love this product would but again",
            ratings: 5
        }
    },
    transactions: {
        87: {
            id: 87,
            user_id: 3,
            product_id: 35
        },
        92: {
            id: 92,
            user_id: 3,
            product_id: 46
        }
    },
    cart: {
        76: {
            id: 76,
            user_id: 3,
            product_id: 14,
            purchased: false
        },
    products: {
        35: {
            id: 14,
            title: "Gloves",
            descriptions: "Black Winter Gloves Size: M",
            overall_ratings: 4.1
        },
        35: {
            id: 35,
            title: "Soap",
            descriptions: "Tide Soap",
            overall_ratings: 4.5
        },
        46: {
            id: 46,
            title: "Iphone Case",
            descriptions: "Apple Iphone 12 Case with Pink butterflies",
            overall_ratings: 2.6
        }
    },
   session: {
            currentUserId: 3
            },
   errors: {
           login: ["Incorrect username/password combination"]
           }
}