触发 Redux 操作以响应 React Router 中的路由转换
Firing Redux actions in response to route transitions in React Router
我在我最新的应用程序中使用了 react-router 和 redux,我面临着一些与基于当前 url 参数和查询所需的状态更改相关的问题。
基本上我有一个组件需要在每次 url 更改时更新它的状态。像这样的装饰器通过 redux 通过 props 传递状态
@connect(state => ({
campaigngroups: state.jobresults.campaigngroups,
error: state.jobresults.error,
loading: state.jobresults.loading
}))
目前我正在使用 componentWillReceiveProps 生命周期方法来响应来自 react-router 的 url 变化,因为当 url this.props.params 和 this.props.query - 这种方法的主要问题是我在这个方法中触发一个动作来更新状态 - 然后它会传递新的道具组件,这将再次触发相同的生命周期方法- 所以基本上创建了一个无限循环,目前我正在设置一个状态变量来阻止这种情况发生。
componentWillReceiveProps(nextProps) {
if (this.state.shouldupdate) {
let { slug } = nextProps.params;
let { citizenships, discipline, workright, location } = nextProps.query;
const params = { slug, discipline, workright, location };
let filters = this._getFilters(params);
// set the state accroding to the filters in the url
this._setState(params);
// trigger the action to refill the stores
this.actions.loadCampaignGroups(filters);
}
}
是否有一种标准方法可以根据路由转换触发操作,或者我可以让商店的状态直接连接到组件的状态,而不是通过道具传递它吗?我曾尝试使用 willTransitionTo 静态方法,但我无权访问那里的 this.props.dispatch。
好吧,我最终在 redux 的 github 页面上找到了答案,因此 post 也会在这里找到答案。希望它可以减轻一些人的痛苦。
@deowk 我想说这个问题有两个部分。首先是 componentWillReceiveProps() 不是响应状态变化的理想方式——主要是因为它迫使你以命令式的方式思考,而不是像我们对 Redux 所做的那样被动地思考。解决方案是将您当前的路由器信息(位置、参数、查询)存储在您的商店中。然后你的所有状态都在同一个地方,你可以使用与其他数据相同的 Redux API 订阅它。
诀窍是创建一个只要路由器位置发生变化就会触发的动作类型。这在即将推出的 React Router 1.0 版本中很容易:
// routeLocationDidUpdate() is an action creator
// Only call it from here, nowhere else
BrowserHistory.listen(location => dispatch(routeLocationDidUpdate(location)));
现在您的商店状态将始终与路由器状态同步。这解决了手动响应上面组件中的查询参数更改和 setState() 的需要 — 只需使用 Redux 的连接器。
<Connector select={state => ({ filter: getFilters(store.router.params) })} />
问题的第二部分是你需要一种方法来对视图层之外的 Redux 状态变化做出反应,比如触发一个动作来响应路由变化。如果您愿意,您可以继续将 componentWillReceiveProps 用于您所描述的简单情况。
不过,对于任何更复杂的事情,如果您愿意的话,我建议您使用 RxJS。这正是 Observable 的设计目的——反应式数据流。
要在 Redux 中做到这一点,首先要创建一个可观察的存储状态序列。您可以使用 rx 的 observableFromStore() 来做到这一点。
按照 CNP 的建议进行编辑
import { Observable } from 'rx'
function observableFromStore(store) {
return Observable.create(observer =>
store.subscribe(() => observer.onNext(store.getState()))
)
}
那么只需要使用可观察运算符来订阅特定的状态变化即可。以下是成功登录后从登录页面重定向的示例:
const didLogin$ = state$
.distinctUntilChanged(state => !state.loggedIn && state.router.path === '/login')
.filter(state => state.loggedIn && state.router.path === '/login');
didLogin$.subscribe({
router.transitionTo('/success');
});
此实现比使用命令式模式(如 componentDidReceiveProps())的相同功能简单得多。
如前所述,解决方案分为两部分:
1) Link路由信息到状态
为此,您只需设置 react-router-redux。按照说明进行操作,您会没事的。
设置好所有内容后,您应该有一个 routing
状态,如下所示:
2) 观察路由变化并触发您的操作
你代码中的某处现在应该有这样的东西:
// find this piece of code
export default function configureStore(initialState) {
// the logic for configuring your store goes here
let store = createStore(...);
// we need to bind the observer to the store <<here>>
}
你要做的是观察商店的变化,这样你就可以dispatch
在发生变化时采取行动。
如@deowk所述,您可以使用rx
,或者您可以编写自己的观察者:
reduxStoreObserver.js
var currentValue;
/**
* Observes changes in the Redux store and calls onChange when the state changes
* @param store The Redux store
* @param selector A function that should return what you are observing. Example: (state) => state.routing.locationBeforeTransitions;
* @param onChange A function called when the observable state changed. Params are store, previousValue and currentValue
*/
export default function observe(store, selector, onChange) {
if (!store) throw Error('\'store\' should be truthy');
if (!selector) throw Error('\'selector\' should be truthy');
store.subscribe(() => {
let previousValue = currentValue;
try {
currentValue = selector(store.getState());
}
catch(ex) {
// the selector could not get the value. Maybe because of a null reference. Let's assume undefined
currentValue = undefined;
}
if (previousValue !== currentValue) {
onChange(store, previousValue, currentValue);
}
});
}
现在,您所要做的就是使用我们刚刚编写的 reduxStoreObserver.js
来观察变化:
import observe from './reduxStoreObserver.js';
export default function configureStore(initialState) {
// the logic for configuring your store goes here
let store = createStore(...);
observe(store,
//if THIS changes, we the CALLBACK will be called
state => state.routing.locationBeforeTransitions.search,
(store, previousValue, currentValue) => console.log('Some property changed from ', previousValue, 'to', currentValue)
);
}
上面的代码使我们的函数在每次 locationBeforeTransitions.search 状态变化时被调用(作为用户导航的结果)。如果你愿意,你可以观察que查询字符串等等。
如果你想在路由更改时触发一个动作,你所要做的就是在处理程序中store.dispatch(yourAction)
。
我在我最新的应用程序中使用了 react-router 和 redux,我面临着一些与基于当前 url 参数和查询所需的状态更改相关的问题。
基本上我有一个组件需要在每次 url 更改时更新它的状态。像这样的装饰器通过 redux 通过 props 传递状态
@connect(state => ({
campaigngroups: state.jobresults.campaigngroups,
error: state.jobresults.error,
loading: state.jobresults.loading
}))
目前我正在使用 componentWillReceiveProps 生命周期方法来响应来自 react-router 的 url 变化,因为当 url this.props.params 和 this.props.query - 这种方法的主要问题是我在这个方法中触发一个动作来更新状态 - 然后它会传递新的道具组件,这将再次触发相同的生命周期方法- 所以基本上创建了一个无限循环,目前我正在设置一个状态变量来阻止这种情况发生。
componentWillReceiveProps(nextProps) {
if (this.state.shouldupdate) {
let { slug } = nextProps.params;
let { citizenships, discipline, workright, location } = nextProps.query;
const params = { slug, discipline, workright, location };
let filters = this._getFilters(params);
// set the state accroding to the filters in the url
this._setState(params);
// trigger the action to refill the stores
this.actions.loadCampaignGroups(filters);
}
}
是否有一种标准方法可以根据路由转换触发操作,或者我可以让商店的状态直接连接到组件的状态,而不是通过道具传递它吗?我曾尝试使用 willTransitionTo 静态方法,但我无权访问那里的 this.props.dispatch。
好吧,我最终在 redux 的 github 页面上找到了答案,因此 post 也会在这里找到答案。希望它可以减轻一些人的痛苦。
@deowk 我想说这个问题有两个部分。首先是 componentWillReceiveProps() 不是响应状态变化的理想方式——主要是因为它迫使你以命令式的方式思考,而不是像我们对 Redux 所做的那样被动地思考。解决方案是将您当前的路由器信息(位置、参数、查询)存储在您的商店中。然后你的所有状态都在同一个地方,你可以使用与其他数据相同的 Redux API 订阅它。
诀窍是创建一个只要路由器位置发生变化就会触发的动作类型。这在即将推出的 React Router 1.0 版本中很容易:
// routeLocationDidUpdate() is an action creator
// Only call it from here, nowhere else
BrowserHistory.listen(location => dispatch(routeLocationDidUpdate(location)));
现在您的商店状态将始终与路由器状态同步。这解决了手动响应上面组件中的查询参数更改和 setState() 的需要 — 只需使用 Redux 的连接器。
<Connector select={state => ({ filter: getFilters(store.router.params) })} />
问题的第二部分是你需要一种方法来对视图层之外的 Redux 状态变化做出反应,比如触发一个动作来响应路由变化。如果您愿意,您可以继续将 componentWillReceiveProps 用于您所描述的简单情况。
不过,对于任何更复杂的事情,如果您愿意的话,我建议您使用 RxJS。这正是 Observable 的设计目的——反应式数据流。
要在 Redux 中做到这一点,首先要创建一个可观察的存储状态序列。您可以使用 rx 的 observableFromStore() 来做到这一点。
按照 CNP 的建议进行编辑
import { Observable } from 'rx'
function observableFromStore(store) {
return Observable.create(observer =>
store.subscribe(() => observer.onNext(store.getState()))
)
}
那么只需要使用可观察运算符来订阅特定的状态变化即可。以下是成功登录后从登录页面重定向的示例:
const didLogin$ = state$
.distinctUntilChanged(state => !state.loggedIn && state.router.path === '/login')
.filter(state => state.loggedIn && state.router.path === '/login');
didLogin$.subscribe({
router.transitionTo('/success');
});
此实现比使用命令式模式(如 componentDidReceiveProps())的相同功能简单得多。
如前所述,解决方案分为两部分:
1) Link路由信息到状态
为此,您只需设置 react-router-redux。按照说明进行操作,您会没事的。
设置好所有内容后,您应该有一个 routing
状态,如下所示:
2) 观察路由变化并触发您的操作
你代码中的某处现在应该有这样的东西:
// find this piece of code
export default function configureStore(initialState) {
// the logic for configuring your store goes here
let store = createStore(...);
// we need to bind the observer to the store <<here>>
}
你要做的是观察商店的变化,这样你就可以dispatch
在发生变化时采取行动。
如@deowk所述,您可以使用rx
,或者您可以编写自己的观察者:
reduxStoreObserver.js
var currentValue;
/**
* Observes changes in the Redux store and calls onChange when the state changes
* @param store The Redux store
* @param selector A function that should return what you are observing. Example: (state) => state.routing.locationBeforeTransitions;
* @param onChange A function called when the observable state changed. Params are store, previousValue and currentValue
*/
export default function observe(store, selector, onChange) {
if (!store) throw Error('\'store\' should be truthy');
if (!selector) throw Error('\'selector\' should be truthy');
store.subscribe(() => {
let previousValue = currentValue;
try {
currentValue = selector(store.getState());
}
catch(ex) {
// the selector could not get the value. Maybe because of a null reference. Let's assume undefined
currentValue = undefined;
}
if (previousValue !== currentValue) {
onChange(store, previousValue, currentValue);
}
});
}
现在,您所要做的就是使用我们刚刚编写的 reduxStoreObserver.js
来观察变化:
import observe from './reduxStoreObserver.js';
export default function configureStore(initialState) {
// the logic for configuring your store goes here
let store = createStore(...);
observe(store,
//if THIS changes, we the CALLBACK will be called
state => state.routing.locationBeforeTransitions.search,
(store, previousValue, currentValue) => console.log('Some property changed from ', previousValue, 'to', currentValue)
);
}
上面的代码使我们的函数在每次 locationBeforeTransitions.search 状态变化时被调用(作为用户导航的结果)。如果你愿意,你可以观察que查询字符串等等。
如果你想在路由更改时触发一个动作,你所要做的就是在处理程序中store.dispatch(yourAction)
。