Browse Source

redux ready

kurkabein 2 years ago
parent
commit
913e81eb8d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      redux/main.js

+ 3 - 3
redux/main.js

@@ -1,4 +1,4 @@
-function reducer(state, {type, ШО, СКОКА,БАБОС,касса}){ //объект action деструктуризируется на три переменных
+function reducer(state, {type, ШО, СКОКА,БАБОС}){ //объект action деструктуризируется на три переменных
     if (!state){ //начальная уборка в ларьке:
         return {
             пиво: {count: 100, price: 25},
@@ -21,7 +21,7 @@ function reducer(state, {type, ШО, СКОКА,БАБОС,касса}){ //об
         return {
             ...state, //берем все что было из ассортимента
             [ШО]: {count:state[ШО].count - СКОКА, price:state[ШО].price},
-            [касса]: state[касса] + (+БАБОС),
+            касса: state.касса + (+БАБОС),
           //и уменьшаем то, что покупается на количество
         }
     }
@@ -103,7 +103,7 @@ function createTable(){
         }
     } 
 buyButtton.addEventListener("click",function buyProducts() {
-            store.dispatch({type: 'КУПИТЬ', ШО:select.value,СКОКА:numberOfProducts.value,БАБОС:money.value, касса:'касса'})
+            store.dispatch({type: 'КУПИТЬ', ШО:select.value,СКОКА:numberOfProducts.value,БАБОС:money.value})
 })