Created
September 16, 2022 17:09
-
-
Save lindskogen/675819ca119411f16c095af055bb17cc to your computer and use it in GitHub Desktop.
BufferTime higher order saga
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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