我正在做一个反应本机应用程序,在用户的某些动作上将开始跟踪GPS位置,并在其他站点上
。但是我遇到了一些障碍,没有找到正确的方法来执行这种基于时间的位置跟踪器,因为对于该模式来说似乎并不自然。以下是我的想法:
- 使用
redux-thunk
将其视为异步。 - 使用
redux-observable
定时事件。 - 使用
sagas
. - 在我的
component
中使用SetTimeout
(是最简单的解决方案,但我不想阻止我的用户四处导航,而且我不认为这是 UI 的责任)
因此,我将把它作为将来的参考,在我写这个问题时,我终于有了简单的解决方案。
import * as types from './types'
var gpsGetInterval
export function startLocationTracking(time = 1000){
return dispatch => {
gpsGetInterval = setInterval(() =>{
navigator.geolocation.getCurrentPosition(
(position) => {
dispatch({
type: types.NEW_POSITION,
state: JSON.stringify(position)
})
})
}, time)
dispatch({
type: types.START_RUN
})
}
}
export function stopLocationTracking(){
clearInterval(gpsGetInterval)
return {
type: types.STOP_RUN
}
}
所以我知道这可能不可扩展,您可能需要在 redux-observable
或 sagas
下使用 epics
.我在这 2 中面临的困难在哪里:
- 使用
redux-observable
清除重复发生的事件并不清楚(或者看起来像是暂停它的解决方法)。 - 使用
sagas
似乎并不容易缩放或聚合。
有了redux-observables
这是我必须的代码,如果有人对这种情况有好主意,我想听听:):
export function inStartRun(action$){
return action$.ofType(types.START_RUN)
.switchMap(function () {
Rx.Observable
.interval(1000)
.do(function () { console.log('tick...') })
.share()
.mapTo({ type: types.STOP_RUN})
});
}
特别感谢杰伊菲尔普斯在我在回购 https://github.com/redux-observable/redux-observable/issues/168 中提出的问题