Почему состояние в mapStateToProps не определено? - PullRequest
0 голосов
/ 27 июня 2018

редукторы / counter.js

export type counterStateType = {
  +ctr: number,
  +counter: boolean
};

type actionType = {
  +type: string,
  +value: any
};    

export default function counter(state: counterStateType = { ctr: 0, counter: true}, action: actionType) {
  console.log("Reducer called with");
  console.log(state);//has valid value ie { ctr: 0, counter: true}  
  switch (action.type) {
    case TOGGLE:
      state.counter = !state.counter;
      return state;
    case UPDATE:
      state.ctr = action.value;
      return state;
    default:
      return state;
  }
}

enter image description here

counterPage.js

function mapStateToProps(state) {
  console.log("mapStateToProps called with");
  console.log(state.counter);

  return {
    ctr: state.counter.ctr,//<= undefined
    counter: state.counter.counter
  };
}

function mapDispatchToProps(dispatch) {
  return bindActionCreators(CounterActions, dispatch);
}

export default connect(mapStateToProps, mapDispatchToProps)(Counter);

enter image description here

PS: выше указано на маршрутизаторе LOCATION_CHANGE

1 Ответ

0 голосов
/ 27 июня 2018

Проблема была в редукторе, я забыл об неизменности состояний редукса. изменение

  switch (action.type) {
    case TOGGLE:
      state.counter = !state.counter;
      return state;
    case UPDATE:
      state.ctr = action.value;
      return state;
    default:
      return state;
  }

до

  switch (action.type) {
    case TOGGLE:
      return {ctr: state.ctr, counter: !state.counter};
    case UPDATE:
      return {ctr: action.value, counter: state.counter};
    default:
      return state;
  }

решил.

...