I have Rx Observable
from interval
and another observable from react prop, I did merge with withLatestFrom
both Observables to listen update and render stream component with recompose
, its working fine but issue is its not updating when i change the prop to local
to utc
.
You can try with increase interval and try to change the LOCAL/UTC button, its not triggering, but its update only when time changes.
const locale$ = prop$.pipe(p => p)
const timeInterval$ = prop$.pipe(
switchMap(({intervalTime}) => interval(intervalTime)),
withLatestFrom(locale$, (b, c) => {
return c.locale === 'local' ? moment().format('HH:mm:ss') : moment().utc().format('HH:mm:ss')
})//.pipe(map(p => p))
)
What you are looking for is combineLatest (not withLatestFrom).
withLatestFrom
Combines the source with another observable (or more!) into an observable emitting arrays with latest values of each, only when the source emits.
combineLatest
Combines multiple observables into an observable that emits an array with the latest values of each source, every time one of these observables emits.
This is the example for combineLatest: