我正在做一个反应本机应用程序,在用户的某些操作上将开始跟踪 gps 位置,并在其他停止。
但是我遇到了一些障碍,没有找到执行这种基于时间的位置跟踪器的正确方法,因为这种模式看起来并不自然。以下是我的想法:
- 使用 . 将其视为异步
redux-thunk
。 - 使用
redux-observable
定时事件。 - 使用
sagas
. - 在
SetTimeout
我的component
(是最简单的解决方案,但我不想阻止我的用户四处导航,我不认为这是 UI 责任)中使用
我正在做一个反应本机应用程序,在用户的某些操作上将开始跟踪 gps 位置,并在其他停止。
但是我遇到了一些障碍,没有找到执行这种基于时间的位置跟踪器的正确方法,因为这种模式看起来并不自然。以下是我的想法:
redux-thunk
。redux-observable
定时事件。sagas
.SetTimeout
我的component
(是最简单的解决方案,但我不想阻止我的用户四处导航,我不认为这是 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
}
}
所以我知道这可能无法扩展,您可能需要epics
在redux-observable
or下使用sagas
。我在这 2 中面临的困难:
redux-observable
clear 重复发生的事件不清楚(或者看起来像是一种暂停它的解决方法)。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})
});
}
特别感谢 Jay Phelps 在我在回购https://github.com/redux-observable/redux-observable/issues/168中提出的问题