Skip to content

Redux State

Steven Inouye edited this page Dec 6, 2018 · 2 revisions

Redux State

{
   entities: {
      users: {
         12: {
            id: 12,
            username: "bubugump",
            location: "1581 Sloat BlvdSan Francisco, CA 94132"
         },
         14: {
            id: 14,
            username: "macgrill",
            location: "3735 Balboa StSan Francisco, CA 94121"
         },
         15: {
            id: 15,
            username, "cpk",
            location: "14 Precita AveSan Francisco, CA 94110"
         }
      },
      products: {
         14: {
            id: 14,
            userId: 12,
            sellBy: "Dec 25, 2018 14:06:48",
            title: "Mint Condition Samsung Galaxy S7",
            description: "Sometimes the scent of seasonal hand wash is all we need to rouse our holiday spirits. Available in an array of festive fragrances, our naturally derived gel hand wash will leave your hands soft, clean and ready to be tucked into a pair of fair isle mittens. It really is the most wonderful time of the year.",
            location: "2001 Pine StSan Francisco, CA 94115",
            buyItNow: 10000
         },
         15: {
            id: 15,
            userId: 12,
            sellBy: "Jan 2, 2019 09:06:59",
            title: "2015 MacBook Pro (for parts)",
            description: "There is a person who is the hero of every BBQ or family cookout and that is the Grill Master. We always looked up to our Mom or Dad as they tended the grill and looked forward to the day when we could be in charge of charring the meatstuff and searing delicious slices of fresh pineapple. Now that we're adults, it's finally our turn and technology has smiled upon us, giving us a tool that is destined to impress.",
            location: "2489 Mission StSan Francisco, CA 94110",
            buyItNow: null
         }
      },
      bids: {
         8859: {
            id: 8859,
            userId: 14,
            productId: 15,
            bidAmt: 9900
         },
         8860: {
            id: 8860,
            userId: 15,
            productId: 15,
            bidAmt: 10500
         }
      },
      watches: {
         777: {
            id: 777,
            userId: 15,
            productId: 15,
         },
         778: {
            id: 778,
            userId: 15,
            productId: 14
         }
      },
      product_categories: {
         77: {
            id: 77,
            productId: 14,
            categoryId: 3
         },
         78: {
            id: 78,
            productId: 14,
            categoryId: 4
         },
         79: {
            id: 79,
            productId: 15,
            categoryId: 4
         }
      },
      categories: {
         3: {
            id: 3,
            name: "electronics"
         },
         4: {
            id: 4,
            name: "household items"
         }
      }
   },
   session: {
      currentUser: 12
   },
   ui: {
      modalOpen: false
   },
   errors: {
      session: [],
      bid: [],
      listing: []
   }
}
Clone this wiki locally