My entire project uses (Bluebird) Promises, but there's one particular library that uses EventEmitter.
I want to achieve something like:
Promise.on('connect', function() {
x.doSomething();
}).then(function() {
return new Promise(function(resolve) {
y.doAction(resolve); // this will result in `eventB` getting emitted
});
}).on('eventB', function() {
z.handleEventB();
}).then(function() {
z.doSomethingElse();
});
I read the answer to EventEmitter in the middle of a chain of Promises. That gives me a way to execute the callback for 'connect' event. Here's where I have got so far
var p = new Promise(function(resolve) {
emitter.on('connect', resolve);
});
p.on = function() {
emitter.on.apply(emitter, arguments);
return p;
};
p.on('connect', function() {
x.doSomething();
}).then(function() {
return new Promise(function(resolve) {
y.doAction(resolve); // this will result in eventB getting emitted
});
});
Now how to chain further for 'eventB' ?
An asynchronous event listener for Promise/A+ implementations. This module inherits Node's built-in EventEmitter interface, except that selected methods are overridden to return a promise for easy workflow.
Promise resolve() method: If the value is a promise then promise is returned. If the value has a “then” attached to the promise, then the returned promise will follow that “then” to till the final state. The promise fulfilled with its value will be returned.
setTimeout() is not exactly a perfect tool for the job, but it's easy enough to wrap it into a promise: const awaitTimeout = delay => new Promise(resolve => setTimeout(resolve, delay)); awaitTimeout(300).
I assume you want to do a different chain of things for each event. Even if eventB
is triggered by the actions of connect
, you can treat it like another stream of logic.
Side note: To avoid confusion for you and anyone else who has to read this codebase, I'd recommend against supplementing promises with additional methods unless you are very thorough about documenting them.
From your example, it seems like the following would work.
var Promise = require( 'bluebird' ) var emitter = someEmitter() var connected = new Promise( function( resolve ){ emitter.on( 'connect', resolve ) }) var eventBHappened = new Promise( function( resolve ){ emitter.on( 'eventB', resolve ) }) connected.then( function(){ return x.doSomething() }).then( function(){ return y.doSomethingElse() // will trigger `eventB` eventually }) // this promise stream will begin once `eventB` has been triggered eventBHappened.then( function(){ return z.doSomething() })
If you'd like to simplify this constant
var p = new Promise( function( resolve ){ emitter.on( 'something', resolve ) })
You can use something like this
function waitForEvent( emitter, eventType ){ return new Promise( function( resolve ){ emitter.on( eventType, resolve ) }) }
Which turns the code solution above into
var Promise = require( 'bluebird' ) var emitter = someEmitter() function waitForEvent( eventEmitter, eventType ){ return new Promise( function( resolve ){ eventEmitter.on( eventType, resolve ) }) } waitForEvent( emitter, 'connect' ).then( function(){ return x.doSomething() }).then( function(){ return y.doSomethingElse() // will trigger `eventB` eventually }) // this promise stream will begin once `eventB` has been triggered waitForEvent( emitter, 'eventB' ).then( function(){ return z.doSomething() })
And because functions in Javascript capture the scope where they were defined, this code could be further simplified to
var Promise = require( 'bluebird' ) var emitter = someEmitter() function waitForEvent( type ){ return new Promise( function( resolve ){ //emitter has been captured from line #2 emitter.on( type, resolve ) }) } waitForEvent( 'connect' ).then( function(){ return x.doSomething() }).then( function(){ return y.doSomethingElse() // will trigger `eventB` eventually }) // this promise stream will begin once `eventB` has been triggered waitForEvent( 'eventB' ).then( function(){ return z.doSomething() })
I faced with the same problem and wrote a tiny promise-wrapping library (controlled-promise) that allows to promisify event emitters. The solution for your example is:
const Promise = require('bluebird'); const ControlledPromise = require('controlled-promise'); const emitter = someEmitter(); const waiting = new ControlledPromise(); function waitForEvent(type) { return waiting.call(() => { emitter.once(type, event => waiting.resolve(event)); }); } waitForEvent('connect') .then(() => x.doSomething()) .then(() => waitForEvent('eventB')) .then(() => z.doSomethingElse());
The benefits of such approach:
resolve()
/ reject()
callbacksIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With