Skip to content

Instantly share code, notes, and snippets.

@lindskogen
Created September 16, 2022 17:09
Show Gist options
  • Save lindskogen/675819ca119411f16c095af055bb17cc to your computer and use it in GitHub Desktop.
Save lindskogen/675819ca119411f16c095af055bb17cc to your computer and use it in GitHub Desktop.
BufferTime higher order saga
import { ActionMatchingPattern } from '@redux-saga/types';
import { ActionPattern, delay, fork, race, take } from 'redux-saga/effects';
export const bufferTime = <P extends ActionPattern, A extends ActionMatchingPattern<P>>(
ms: number,
pattern: P,
worker: (action: A) => any,
mergeFn: (a1: A, a2: A) => A,
) =>
fork(function* () {
while (true) {
let action: A = yield take(pattern);
while (true) {
const { next, timeout } = yield race({
timeout: delay(ms),
next: take(pattern),
});
if (timeout) {
yield fork(worker, action);
break;
}
action = mergeFn(action, next);
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment