Last active
January 21, 2021 01:56
-
-
Save jed/f8444ae8e6e40e08a7b29944840ac20d to your computer and use it in GitHub Desktop.
Turning callbacks into async iterators, with a React hook-like API.
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
// Example usage: | |
// | |
// void async function() { | |
// let [clicks, onclick] = iterator() | |
// document.querySelector('button').addEventListener('click', onclick) | |
// for await (let click of clicks) console.log(click) | |
// }() | |
export default function iterator() { | |
let done = false | |
let events = [] | |
let resolve | |
let promise | |
defer() | |
return [read(), write, end] | |
function defer() { | |
promise = new Promise(r => resolve = r) | |
} | |
async function* read() { | |
await promise | |
yield* events.splice(0) | |
if (!done) yield* read() | |
} | |
function write(event) { | |
events.push(event) | |
resolve() | |
defer() | |
} | |
function end() { | |
done = true | |
resolve() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment