假设我有两个redux连接组件。第一个是一个简单的todo加载/显示容器,以下函数传递给connect()
; mapStateToProps
从redux状态读取待办事项,mapDispatchToProps
用于请求状态从服务器提供最新的待办事项列表:
import TodoWidgetDisplayComponent from '...'
function mapStateToProps(state) {
return {
todos: todoSelectors.getTodos(state)
};
}
function mapDispatchToProps(dispatch) {
return {
refreshTodos: () => dispatch(todoActions.refreshTodos())
};
}
connect(mapStateToProps, mapDispatchTo)(TodoWidgetDisplayComponent);
第二个redux组件旨在应用于页面上的任何组件,以便组件可以指示是否显示全局“加载”图标。由于这可以在任何地方使用,我创建了一个辅助函数,它将MapDispatchToProps
包装在一个闭包中,并为每个组件生成一个ID,用于确保请求加载器的所有组件都表明它们不再需要它,并且全局加载器可以隐藏。
这些函数基本上如下,mapStateToProps
将加载器的可见性暴露给组件,mapDispatchToProps
允许它们请求加载器显示或隐藏。
function mapStateToProps(state) {
return {
openLoader: loaderSelectors.getLoaderState(state)
};
}
function mapDispatchToProps() {
const uniqId = v4();
return function(dispatch) {
return {
showLoader: () => {
dispatch(loaderActions.showLoader(uniqId));
},
hideLoader: () => {
dispatch(loaderActions.hideLoader(uniqId));
}
};
};
}
export default function Loadify(component) {
return connect(mapStateToProps, mapDispatchToProps())(component);
}
所以现在,如果我有一个我想要访问加载器的组件,我可以这样做:
import Loadify from '...'
class DisplayComponent = new React.Component { ... }
export default Loadify(DisplayComponent);
它应该给它一个唯一的ID,允许它请求加载器显示/隐藏,只要有一个组件要求它显示,加载器图标就会显示。到目前为止,这一切看起来都很好。
我的问题是,如果我想将它应用于todos组件,以便该组件可以请求/接收其待办事项,同时也允许请求加载器在处理时显示,我可以执行以下操作:
import Loadify from '...'
import TodoWidgetDisplayComponent from '...'
function mapStateToProps(state) {
return {
todos: todoSelectors.getTodos(state)
};
}
function mapDispatchToProps(dispatch) {
return {
refreshTodos: () => dispatch(todoActions.refreshTodos())
};
}
const TodoContainer = connect(mapStateToProps, mapDispatchTo)(TodoWidgetDisplayComponent);
export default Loadify(TodoContainer);
假设没有重复的密钥,redux会自动将对象合并在一起以使它们兼容吗?或者它只需要最新的mapStateToProps
/ mapDispatchTo
,除非我做某种手动合并?或者有没有更好的方法来获得我没有看到的这种可重用性?我真的宁愿避免为我们需要的每个组件创建一组自定义容器。
connect
将自动合并“传递给包装组件的道具”,“来自此组件的mapState
的道具”和“来自此组件的mapDispatch
的道具”的组合。该逻辑的默认实现很简单:
export function defaultMergeProps(stateProps, dispatchProps, ownProps) {
return { ...ownProps, ...stateProps, ...dispatchProps }
}
因此,如果您将connect
的多个级别堆叠在一起,则包装的组件将接收所有这些道具,只要它们没有相同的名称即可。如果这些道具中的任何一个具有相同的名称,那么基于此逻辑,只会显示其中一个道具。
好吧,这就是我要做的。创建一个更高阶的组件(HOC),为您的reducer添加一个新的微调器引用。 HOC将通过绑定生命周期方法来初始化和销毁对reducer中微调器的引用。 HOC将为基本组件提供两个属性。第一个是isLoading
,它是一个带布尔参数的函数;真是开,假是开。第二个属性是spinnerState
,它是微调器当前状态的只读布尔值。
我在没有动作创建者或缩减器的情况下创建了这个示例,如果您需要它们的示例,请告诉我。
/*---------- Vendor Imports ----------*/
import React from 'react';
import { connect } from 'react-redux';
import v4 from 'uuid/v4';
/*---------- Action Creators ----------*/
import {
initNewSpinner,
unloadSpinner,
toggleSpinnerState,
} from '@/wherever/your/actions/are'
const loadify = (Component) => {
class Loadify extends React.Component {
constructor(props) {
super(props);
this.uniqueId = v4();
props.initNewSpinner(this.uniqueId);;
this.isLoading = this.isLoading.bind(this);
}
componentWillMount() {
this.props.unloadSpinner(this.uniqueId);
}
// true is loading, false is not loading
isLoading(isOnBoolean) {
this.props.toggleSpinner(this.uniqueId, isOnBoolean);
}
render() {
// spinners is an object with the uuid as it's key
// the value to the key is weather or not the spinner is on.
const { spinners } = this.props;
const spinnerState = spinners[this.uniqueId];
return (
<Component isLoading={this.isLoading} spinnerState={spinnerState} />
);
}
}
const mapStateTopProps = state => ({
spinners: state.ui.spinners,
});
const mapDispatchToProps = dispatch => ({
initNewSpinner: uuid => dispatch(initNewSpinner(uuid)),
unloadSpinner: uuid => dispatch(unloadSpinner(uuid)),
toggleSpinner: (uuid, isOn) => dispatch(toggleSpinnerState(uuid, isOn))
})
return connect(mapStateTopProps, mapDispatchToProps)(Loadify);
};
export default loadify;
import loadify from '@/location/loadify';
import Spinner from '@/location/SpinnerComponent';
class Todo extends Component {
componentWillMount() {
this.props.isLoading(true);
asyncCall.then(response => {
// process response
this.props.isLoading(false);
})
}
render() {
const { spinnerState } = this.props;
return (
<div>
<h1>Spinner Testing Component</h1>
{ spinnerState && <Spinner /> }
</div>
);
}
}
// Use whatever state you need
const mapStateToProps = state => ({
whatever: state.whatever.youneed,
});
// use whatever dispatch you need
const mapDispatchToProps = dispatch => ({
doAthing: () => dispatch(doAthing()),
});
// Export enhanced Todo Component
export default loadify(connect(mapStateToProps, mapDispatchToProps)(Todo));