@dreamworld/event-emitter
v1.1.0
Published
It's library by using we can bind event on any class instance
Downloads
373
Readme
EventEmitter
Use cases
import EventEmitter from "@dreamworld/event-emitter/event-emitter.js";
//This code simply creates an instance of EventEmitter to be used.
var ee = new EventEmitter();
Adding listeners
A listener is a function that is executed when an event is emitted. You can add them in a multitude of ways, the simplest of which is with the addListener
method.
function listener() {
console.log('The foo event has been emitted.');
}
ee.addListener('foo', listener);
You can also add in bulk using the addListeners
method (notice the "s" on the end). You can interact with addListeners in two ways, the first is to pass it an event name and array of listeners to add.
function listener1() {
console.log('ONE');
}
function listener2() {
console.log('TWO');
}
ee.addListeners('foo', [listener1, listener2]);
The second way of calling addListeners involves passing an object of event names and listeners. You can either pass a single listener for each event or an array, just as you can see above.
function listener1() {
console.log('ONE');
}
function listener2() {
console.log('TWO');
}
function listener3() {
console.log('THREE');
}
ee.addListeners({
foo: [listener1, listener2],
bar: listener3
});
Removing listeners
This works in the exact same way as adding listeners. The only difference is that you replace the add
in the method names with remove
. Like this:
function listener() {
console.log('The foo event has been emitted.');
}
ee.addListener('foo', listener);
ee.removeListener('foo', listener);
If you want a listener to remove itself after it has been called or after a condition has been met then all you need to do is return true.
function listener1() {
// If a condition is met then remove the listener
if(completed) {
return true;
}
}
function listener2() {
// Always remove after use
return true;
}
ee.addListeners('foo', [listener1, listener2]);
ee.emitEvent('foo');
If you do not want to, or can't for some reason, return true, you can set the return value using setOnceReturnValue
.
function listener() {
// Always remove after use
return 'REMOVE-ME';
}
ee.addListener('foo', listener);
ee.setOnceReturnValue('REMOVE-ME');
ee.emitEvent('foo');
Alternatively you can use the addOnceListener
method, or it's alias, once
.
function listener() {
// Do stuff
}
ee.addOnceListener('foo', listener);
ee.emitEvent('foo');
// The listener will be removed now...
ee.emitEvent('foo');
// The listener will only be executed once.
You can also remove whole events and all of their attached listeners with the removeEvent
method. If you pass an event name to the method then it will remove that event and it's listeners.
function listener1() {
console.log('ONE');
}
function listener2() {
console.log('TWO');
}
ee.addListeners('foo', [listener1, listener2]);
ee.removeEvent('foo');
However, if you leave it blank and do not pass an event name, then all events will be removed. It will wipe everything.
Fetching the listeners
If you really need to then you can get an array of all listeners attached to an event with the getListeners
method.
function listener1() {
console.log('ONE');
}
function listener2() {
console.log('TWO');
}
ee.addListeners('foo', [listener1, listener2]);
ee.getListeners('foo');
Emitting events
So once you have added your listeners and you are ready to start executing them, you can start to use the emitEvent
method. At it's most basic level it will just execute all listeners attached to an event.
function listener1() {
console.log('ONE');
}
function listener2() {
console.log('TWO');
}
ee.addListeners('foo', [listener1, listener2]);
ee.emitEvent('foo');
For more control, you can pass an arguments array as the second argument. This array will be applied to every listener as individual arguments.
function adder(a, b) {
console.log(a + b);
}
ee.addListener('addStuff', adder);
ee.emitEvent('addStuff', [10, 20]);
Method aliases
Hebo, from GitHub, contributed three aliases to add, remove and emit. The aliases can be found in the API documentation but here is the mapping.
on
-addListener
off
-removeListener
trigger
-emitEvent
I've also added one since then.
once
-addOnceListener
Using regular expressions
You can pass a regular expression to pretty much every function in EventEmitter in place of an event name string. So if you have two events, say, bar and baz, you can manipulate both of them with /ba[rz]/
.
This applies to adding, removing and emitting events as well as a few others. There is one thing you have to remember when using this though, you must have the event defined before you use it in a regex.
By defined I mean, it has to have some other listener added to it, or you have to explicitly define it with the defineEvent
/ defineEvents
functions. Here is an example of defining some events and adding to both with a regular expression.
ee.defineEvents(['bar', 'baz']);
ee.addListener(/ba[rz]/, function () {
console.log('Now you are thinking with regular expressions.');
});
ee.emitEvent(/ba[rz]/);
Extending with the EventEmitter class
You probably won't want to use EventEmitter as a raw class. You will probably want to write a Player
class or something like that and implement EventEmitter's methods into it. To do this you will need to clone and merge EventEmitter's prototype object into your classes prototype object.
class Player(){}
Object.assign(Player.prototype, EventEmitter.prototype);