SampleState - mdean7/mikEtsy GitHub Wiki

{
  entities: {   
      users: {
          113: {
              id: 113,
              username: "HanShotFirst497"       
          },
          253: {
              id: 253,
              username: "FluffIsBest"
          }
      }, 
  },
 products: {
      1: {
        id: 1,
        title: "Lightsaber",
        description: "handmade star wars lightsaber",
        price: 99.99,
        userId: 113,
        orderId: 123
      },
      2: {
        id: 2,
        title: "PuppersbasketTM",
        description: "a basket for puppies",
        price: 29.99,
        userId: 253,
        orderId: 199
      },
      3: {
        id: 3,
        title: "StormPupper Costume",
        body: "storm trooper costume for a dog",
        price: 49.99,
        userId: 113,
        orderId: 123
      }
    },
   reviews {
      1: {
        id: 1,
        title: "This is the weapon of a Jedi Knight...",
        body: "Not as clumsy or random as a blaster; an elegant weapon for a more civilized age.",
        rating: 5,
        productId: 1,
        userId: 061
      },
      2: {
        id: 2,
        title: "A basket for puppies!?!?!",
        body: "I now have an amazing hand crafted basket for all my fluffy puppies. 10/10 recommended!!!!",
        rating: 5,
        productId: 2,
        userId: 061
      },
    }
    orders: {
      199: {
        id: 199,
        total: 29.99,
        userId: 253
      },
    },
  ui: {
    loading: true/false,
    modal: true/false,
    darkMode: true/false
  },
  errors: {
      sessionErrors: {
                   login: ["Incorrect username/password combination"],
                   productListingForm: ["Product title/body cannot be blank"],
      },
  },
  session: { currentUserId: 253 }
}