admin管理员组文章数量:1342522
I let a user scroll a page and in every scroll event - I'm checking if there's a new items in the viewport
( if there are , I do some operation on those new items - irrelevant for now).
So I have something like this :
const observable = Rx.Observable.fromEvent(window, 'scroll');
const subscriber = observable.throttleTime(300 /* ms */).subscribe(
(x) => {
console.log('Next: event!');
},
(err) => {
console.log('Error: %s', err);
},
() => {
console.log('Completed');
});
This code is working as expected and I do see a message after each 300 ms.
But there's a problem. A user might scroll while not pleting the 300 ms ( event won't be raised) and a new item got visible while scrolling.
This is where I need the debounce
method. (which means "after X ms of last event time - raise an event")
Which is exactly what I need.
I've tried this :
const subscriber = observable.throttleTime(300 /* ms */).debounceTime(350)....
But I only see the debounced events.
Question
How can I use throttle and at the end of a throttle - attach a debounce ?
I let a user scroll a page and in every scroll event - I'm checking if there's a new items in the viewport
( if there are , I do some operation on those new items - irrelevant for now).
So I have something like this :
const observable = Rx.Observable.fromEvent(window, 'scroll');
const subscriber = observable.throttleTime(300 /* ms */).subscribe(
(x) => {
console.log('Next: event!');
},
(err) => {
console.log('Error: %s', err);
},
() => {
console.log('Completed');
});
This code is working as expected and I do see a message after each 300 ms.
But there's a problem. A user might scroll while not pleting the 300 ms ( event won't be raised) and a new item got visible while scrolling.
This is where I need the debounce
method. (which means "after X ms of last event time - raise an event")
Which is exactly what I need.
I've tried this :
const subscriber = observable.throttleTime(300 /* ms */).debounceTime(350)....
But I only see the debounced events.
Question
How can I use throttle and at the end of a throttle - attach a debounce ?
Share Improve this question edited Mar 31, 2017 at 21:40 Royi Namir asked Mar 31, 2017 at 21:34 Royi NamirRoyi Namir 149k144 gold badges492 silver badges831 bronze badges 3- I think the solution would be something very close to this answer. – cartant Commented Apr 1, 2017 at 2:24
- Check if merging two streams: throttled and debounced works for you plnkr.co/edit/lHYVxSSrYA05wBWVqnqr?p=preview – Yury Tarabanko Commented Apr 7, 2017 at 8:45
- @YuryTarabanko Indeed. thank you. Please post it as as an answer ( if you want) – Royi Namir Commented Apr 7, 2017 at 8:46
2 Answers
Reset to default 8 +50You could merge two streams: throttled and debounced into one using merge
. Demo.
const observable = Rx.Observable.fromEvent(window, 'scroll');
const subscriber = observable
.throttleTime(300 /* ms */)
.map(() => 'throttle')
.merge(observable
.debounceTime(350)
.map(() => 'debounce')
)
.subscribe(
(x) => {
console.log('Next: event!', x);
},
(err) => {
console.log('Error: %s', err);
},
() => {
console.log('Completed');
});
here is updated solution due to rxjs changes
import { fromEvent } from 'rxjs';
import { debounceTime, map, throttleTime } from 'rxjs/operators';
const observable = fromEvent(window, 'scroll');
const subscriber = observable
.pipe(
throttleTime(300 /* ms */),
map((data) => {
console.log('throttle');
console.log(window.pageYOffset);
return data;
}),
debounceTime(350)
)
.subscribe(
(x) => {
console.log(window.pageYOffset);
},
(err) => {
console.log('Error: %s', err);
},
() => {
console.log('Completed');
}
);
本文标签: javascriptRxJSdebounce event after throttleStack Overflow
版权声明:本文标题:javascript - RxJS - debounce event after throttle? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701440a2524391.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论