admin管理员组文章数量:1343376
I have two observables
load$
is a stream of load events, emitted on startup or when a reload button is clickedselection$
is a stream of selected list items, emitted when a list item is selected
I'm wondering if there is an operator that lets me (A) get the latest value emitted by selection$
whenever load$
emits, while (B) ignoring the value emitted by load$
.
I was able to acplish (A) by using withLatestFrom
but that doesn't satisfy (B) because withLatestFrom
does not ignore the source observable.
load$.withLatestFrom(selection$).subscribe(([_, latestSelection) => {
// _ is not needed and I don't like to write code like this
// I only need the latest selection
});
I've looked at switchMapTo
which satisfies (B) but not (A) without also using first()
or take(1)
.
load$.switchMapTo(selection$.take(1)).subscribe(latestSelection => {
// I would like to avoid having to use take(1)
});
I'm looking for a hypothetical switchMapToLatestFrom
operator.
load$.switchMapToLatestFrom(selection$).subscribe(latestSelection => {
// switchMapToLatestFrom doesn't exist :(
});
Unfortunately it doesn't exist and I don't like the two other ways that I came up with because it's not immediately obvious why the code contains take(1)
or unused arguments.
Are there any other ways to bine two observables so that the new observable emits only the latest value from the second observable whenever the first observable emits?
I have two observables
load$
is a stream of load events, emitted on startup or when a reload button is clickedselection$
is a stream of selected list items, emitted when a list item is selected
I'm wondering if there is an operator that lets me (A) get the latest value emitted by selection$
whenever load$
emits, while (B) ignoring the value emitted by load$
.
I was able to acplish (A) by using withLatestFrom
but that doesn't satisfy (B) because withLatestFrom
does not ignore the source observable.
load$.withLatestFrom(selection$).subscribe(([_, latestSelection) => {
// _ is not needed and I don't like to write code like this
// I only need the latest selection
});
I've looked at switchMapTo
which satisfies (B) but not (A) without also using first()
or take(1)
.
load$.switchMapTo(selection$.take(1)).subscribe(latestSelection => {
// I would like to avoid having to use take(1)
});
I'm looking for a hypothetical switchMapToLatestFrom
operator.
load$.switchMapToLatestFrom(selection$).subscribe(latestSelection => {
// switchMapToLatestFrom doesn't exist :(
});
Unfortunately it doesn't exist and I don't like the two other ways that I came up with because it's not immediately obvious why the code contains take(1)
or unused arguments.
Are there any other ways to bine two observables so that the new observable emits only the latest value from the second observable whenever the first observable emits?
Share Improve this question asked Jul 13, 2017 at 9:35 Steven LiekensSteven Liekens 14.1k9 gold badges66 silver badges94 bronze badges2 Answers
Reset to default 11withLatestFrom
takes an optional project
function that's passed the values.
You can use it to ignore the value from load$
and emit only the latest selection:
load$
.withLatestFrom(selection$, (load, selection) => selection)
.subscribe(selection => {
// ...
});
use "sample" operator In your case:
selection$.pipe(sample(load$)).subscribe(
// the code you want to run
)
本文标签:
版权声明:本文标题:javascript - How to switch to another Observable when a source Observable emits but only use latest value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694828a2523326.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论