私はreselectとreact reduxを使用しています。基本的なモーダル実装のセレクターを作成しようとしています。
私のセレクターは
const selectModal = (state) => state.get('modal');
のエラーをスローします
Cannot read property 'get' of undefined
編集: select modal と呼ぶ方法を示すように要求されましたが、違いはありません。
const mapStateToProps = createStructuredSelector({
isVisible: selectModalIsVisible(),
});
const mapDispatchToProps = {
hideModal,
showModal
};
export default connect(mapStateToProps, mapDispatchToProps)(Modal);
これは、モーダル状態のコンテナが見つからないことを意味すると思います
おそらく、レデューサーまたはストアを正しく設定していません。私の減速機は
function modalReducer(state = initialState, action) {
switch (action.type) {
case HIDE_MODAL:
return state.set(
'isVisible', false);
case SHOW_MODAL:
return state.set(
'isVisible', true);
default:
return state;
}
}
これは結合レデューサーと結合されてグロブになります
export default function createReducer(asyncReducers){
return combineReducers({
route: routeReducer,
auth: authReducer,
modal: modalReducer,
...asyncReducers
});
}
そして私の店に注入されました
function configureStore(initialState = {}, history) {
const middlewares = [
sagaMiddleware,
routerMiddleware(history),
];
const enhancers = [
applyMiddleware(...middlewares),
]
const store = createStore(
createReducer(),
fromJS(initialState),
compose(...enhancers)
);
store.runSaga = sagaMiddleware.run;
//store.close = () => store.dispatch(END)
store.runSaga(sagas);
store.asyncReducers = {};
return store;
}
var initialState = {}
const store = configureStore(fromJS(initialState), browserHistory);
reselect 内のエラーは行 73/74 params = dependencies.map にあります。
var selector = function selector(state, props) {
for (var _len4 = arguments.length, args = Array(_len4 > 2 ? _len4 - 2 : 0), _key4 = 2; _key4 < _len4; _key4++) {
args[_key4 - 2] = arguments[_key4];
}
var params = dependencies.map(function (dependency) {
return dependency.apply(undefined, [state, props].concat(args));
});
return memoizedResultFunc.apply(undefined, _toConsumableArray(params));
};
モーダルにアクセスするには、immutableJS を別の方法で使用する必要がありますか、それともアプリの設定が正しくありませんか? フィードバックをお寄せいただきありがとうございます。