-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed package main from distribution file to original source file. …
…Added extensive tests.
- Loading branch information
Michael Franzl
committed
Nov 26, 2017
1 parent
aefa8ee
commit 9f67445
Showing
11 changed files
with
1,149 additions
and
214 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ bundle* | |
*~ | ||
*swp | ||
*.tgz | ||
*.html | ||
.nyc_output |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,386 @@ | ||
# captain-hook | ||
|
||
## Configurable event emitter behavior for mixing into JavaScript objects/prototypes/classes | ||
|
||
[![Build Status](https://travis-ci.org/michaelfranzl/captain-hook.svg?branch=master)](https://travis-ci.org/michaelfranzl/captain-hook) | ||
|
||
An event emitter API clearly defines interaction between separate pieces of code (e.g. main application vs. plugins). Event emitting allows you to keep the functionality of your application general (make it more suitable to be published Open Source), while external (perhaps even proprietary) code makes the application's behavior more specific. | ||
|
||
Methods of your objects will be able to emit "events" to external "event handlers". External code can add event handlers via `.on()` and remove them via `.off()`, while your own object can call them via `._emit()`. The names of these three methods can be explicitly configured via the factory function. | ||
|
||
The name "Captain Hook" is a play on the term ["Software Hook"](https://en.wikipedia.org/wiki/Hooking). | ||
|
||
|
||
## Why inventing yet another event emitter? | ||
|
||
I found dozens of event emitter libraries on Github. Most of them were too large, too 'smart', or too restrictive. | ||
|
||
Features of this module: | ||
|
||
* No dependencies. | ||
* Only ~100 lines of code. | ||
* Only ~2.4 kilobytes minified. | ||
* Works in browsers and in Node.js. | ||
* Includes distribution file with source map. | ||
* Extensive tests. | ||
* Attribute/method names are explicitly configurable. | ||
* Returns to the emitter optional return values from event handlers as an array | ||
* When adding event handlers, a supplied option object allows | ||
* sorting the handler according to given priority, | ||
* setting the `this` context of the handler, | ||
* setting of a tag/label of the handler. | ||
* Event handlers can only be removed when their tag is known. Prevents interaction between external plugin code. | ||
* The storage object for event handlers and their options can be privately scoped if needed. This is to ensure that external plugins cannot remove or inspect each other's event handlers. | ||
* Flexible use: add the mix-in to prototypes, plain objects, classes or to instances thereof (see below). | ||
|
||
The [test file](tests/test.js) describes usage and features. | ||
|
||
|
||
## Development | ||
|
||
Run tests: | ||
|
||
npm test | ||
|
||
Run code coverage: | ||
|
||
npm run coverage | ||
|
||
Regenerate distribution files (`dist/captain-hook.umd.min.js` and `dist/captain-hook.umd.min.js.map`): | ||
|
||
gulp build | ||
|
||
Generate `README.md` with API documentation parsed from `jsdoc` sources: | ||
|
||
gulp readme | ||
|
||
ES6 import: | ||
|
||
```javascript | ||
import EventEmitter from 'captain-hook'; | ||
``` | ||
|
||
Until ES6 imports are widely supported... | ||
|
||
... import in Node.js: | ||
|
||
```javascript | ||
const CaptainHook = require('../dist/captain-hook.umd.min.js'); | ||
``` | ||
|
||
... import in browsers: | ||
|
||
<script src="./dist/captain-hook.umd.min.js"></script> | ||
<script> | ||
window.addEventListener("load", function() { | ||
var EventEmitter = window.CaptainHook; | ||
var ee = EventEmitter(); // to use as mix-in | ||
}); | ||
</script> | ||
|
||
|
||
|
||
## How to apply the mix-in | ||
|
||
If your environment can import ES6 modules directly, load `captain-hook.js`, otherwise load the Universal Module Definition (UMD) variant `dist/captain-hook.umd.min.js`. | ||
|
||
The default export of the module is a factory function (see `CaptainHook()` in the API section). | ||
|
||
The following 5 methods are equivalent in their effects. | ||
|
||
### 1\. Mix into prototypes | ||
|
||
Methods will be shared across all instances. | ||
|
||
If you prefer classes: | ||
|
||
```javascript | ||
captain_hook = CaptainHook(); // use defaults | ||
|
||
class Dog { | ||
constructor(name) { | ||
this.name = name; | ||
} | ||
poop() { | ||
console.log(`I am pooping.`) | ||
this._emit('poop'); | ||
} | ||
} | ||
|
||
Object.assign(Dog.prototype, captain_hook); | ||
|
||
luna = new Dog('Luna'); | ||
luna.on('poop', function() { console.log(`Cleaning up poop of ${this.name}`); } ) | ||
luna.poop(); | ||
// -> I am pooping | ||
// -> Cleaning up poop of Luna | ||
|
||
elvis = new Dog('Elvis'); | ||
elvis.on('poop', function() { console.log("Oh no, another dog pooped!"); }) | ||
elvis.poop(); | ||
// -> I am pooping | ||
// -> Oh no, another dog pooped! | ||
``` | ||
|
||
If you prefer 'old-style' prototypes: | ||
|
||
```javascript | ||
captain_hook = CaptainHook(); | ||
|
||
function Dog(name) { | ||
this.name = name; | ||
} | ||
|
||
Object.assign(Dog.prototype, captain_hook); | ||
|
||
Dog.prototype.poop = function() { | ||
console.log(`I am pooping.`) | ||
this._emit('poop'); | ||
} | ||
|
||
luna = new Dog('Luna'); | ||
luna.on('poop', function() { console.log(`Cleaning up poop of ${this.name}`); } ) | ||
luna.poop(); | ||
// -> I am pooping | ||
// -> Cleaning up poop of Luna | ||
|
||
elvis = new Dog('Elvis'); | ||
elvis.on('poop', function() { console.log("Oh no, another dog pooped!"); }) | ||
elvis.poop(); | ||
// -> I am pooping | ||
// -> Oh no, another dog pooped! | ||
``` | ||
|
||
If you prefer to work with plain objects: | ||
|
||
```javascript | ||
captain_hook = CaptainHook(); | ||
|
||
proto_dog = {}; | ||
proto_dog.poop = function() { | ||
console.log(`I am pooping.`); | ||
this._emit('poop', this.name); | ||
} | ||
|
||
proto_eventful_dog = Object.assign(proto_dog, captain_hook); | ||
|
||
// create a new object from a prototype | ||
luna = Object.create(proto_eventful_dog); | ||
luna.name = 'Luna'; | ||
luna.on('poop', function() { console.log(`Cleaning up poop of ${this.name}`); }); | ||
luna.poop(); | ||
// -> I am pooping | ||
// -> Cleaning up poop of Luna | ||
|
||
// create a new object from a prototype | ||
elvis = Object.create(proto_eventful_dog); | ||
elvis.name = 'Elvis'; | ||
elvis.on('poop', function() { console.log("Oh no, another dog pooped!"); }); | ||
elvis.poop(); | ||
// -> I am pooping | ||
// -> Oh no, another dog pooped! | ||
``` | ||
|
||
### 2\. Mix into instances | ||
|
||
Each instance will have a full copy of the attributes/methods. | ||
|
||
In the example below, note that we pass the configuration `handlers_prop: null`. This makes the storage of the event handler functions private, preventing information leaks to external code. | ||
|
||
```javascript | ||
class Dog { | ||
constructor(name) { | ||
var captain_hook = CaptainHook({handlers_prop: null}); | ||
Object.assign(this, captain_hook); | ||
this.name = name; | ||
} | ||
poop() { | ||
console.log(`I am pooping.`) | ||
this._emit('poop'); | ||
} | ||
} | ||
|
||
luna = new Dog('Luna'); | ||
luna.on('poop', function() { console.log(`Cleaning up poop of ${this.name}`); }) | ||
luna.poop(); | ||
// -> I am pooping | ||
// -> Cleaning up poop of Luna | ||
|
||
elvis = new Dog('Elvis'); | ||
elvis.on('poop', function() { console.log("Oh no, another dog pooped!"); }) | ||
elvis.poop(); | ||
// -> I am pooping | ||
// -> Oh no, another dog pooped! | ||
|
||
// Note that there is no way to read or modify the added event handlers via the `luna` or `elvis` instances. | ||
``` | ||
|
||
If you prefer to work with plain objects: | ||
|
||
```javascript | ||
dog = {}; | ||
dog.poop = function() { | ||
console.log(`I am pooping.`); | ||
this._emit('poop', this.name); | ||
} | ||
|
||
luna = Object.assign({}, CaptainHook({handlers_prop: null}), dog); | ||
luna.name = 'Luna'; | ||
luna.on('poop', function() { console.log(`Cleaning up poop of ${this.name}`); }); | ||
luna.poop(); | ||
// -> I am pooping | ||
// -> Cleaning up poop of Luna | ||
|
||
elvis = Object.assign({}, CaptainHook({handlers_prop: null}), dog); | ||
elvis.on('poop', function() { console.log("Oh no, another dog pooped!"); }) | ||
elvis.poop(); | ||
// -> I am pooping | ||
// -> Oh no, another dog pooped! | ||
|
||
// Note that there is no way to read or modify the added event handlers via the `luna` or `elvis` instances. | ||
``` | ||
|
||
|
||
|
||
# API Reference | ||
|
||
{{>main}} | ||
|
||
|
||
|
||
|
||
|
||
## Use cases for event emission | ||
|
||
There are three distinct use cases for event handlers: | ||
|
||
1. Simple callbacks (simple data type arguments, no return value) | ||
2. Content filtering (arguments modified by reference, no return value) | ||
3. Queries (with return value) | ||
|
||
All three cases can be covered with the `on()` method. | ||
|
||
To illustrate, we are going to implement a simple Cat: | ||
|
||
```javascript | ||
var Cat = function() { | ||
var self = this; // be explicit | ||
|
||
// Generate the mix-in object with default property names | ||
var hook_mixin = CaptainHook(); | ||
|
||
// Mix in the generated hook functionality. | ||
// This makes available to us self.on(), self.off(), self._emit() | ||
Object.assign(self, hook_mixin); | ||
|
||
self.makeSound = function() { | ||
var obj = {sound: 'meow'}; | ||
self._emit('makeSound', obj); | ||
console.log(`I make sound: "${obj.sound}"`); | ||
}; | ||
|
||
self.scratch = function() { | ||
var allowed = self._emit('scratch').reduce(function(acc, val) { | ||
return acc && val | ||
}, true); | ||
|
||
// All event handlers need to return true if this action is to be allowed. | ||
if (allowed) { | ||
console.log("Scratch!"); | ||
} else { | ||
console.log("I am not allowed to scratch, so I won't do it!"); | ||
} | ||
}; | ||
|
||
self.beHungry = function() { | ||
Promise.all(self._emit('askForFood')) | ||
.then(function(given_foods) { | ||
console.log("I am eating", given_foods); | ||
}) | ||
} | ||
}; | ||
``` | ||
|
||
Instantiate the application: | ||
|
||
```javascript | ||
var felix = new Cat(); | ||
``` | ||
|
||
Generic behavior: | ||
|
||
```javascript | ||
felix.makeSound(); | ||
// -> I make sound: "meow" | ||
|
||
felix.scratch(); | ||
// -> Scratch! | ||
``` | ||
|
||
Use event handlers in three possible ways: | ||
|
||
**1\. Simple observer** (no return value, no content filtering): | ||
|
||
```javascript | ||
felix.on('makeSound', function() { | ||
console.log("Felix is about to make a sound.") | ||
}); | ||
|
||
felix.makeSound(); | ||
|
||
// -> Felix is about to make a sound. | ||
// -> I make sound: "meow" | ||
``` | ||
|
||
**2\. Filter content passed by reference** (no return value): | ||
|
||
```javascript | ||
felix.on('makeSound', function(opts) { | ||
opts.sound += ' hiss'; | ||
}); | ||
|
||
felix.makeSound(); | ||
// -> I make sound: "meow hiss" | ||
``` | ||
|
||
**3\. Query responses.** Note that event handlers do not have access to the return values of any other event handler. Here, we define two event handlers who vote for different outcomes: | ||
|
||
```javascript | ||
felix.on('scratch', function() { | ||
return false; // I do not allow scratching. | ||
}); | ||
|
||
felix.on('scratch', function() { | ||
return true; // I allow scratching. | ||
}); | ||
|
||
felix.scratch(); | ||
// -> I am not allowed to scratch, so I won't do it! | ||
``` | ||
|
||
This is also useful for Promises: | ||
|
||
```javascript | ||
felix.on('askForFood', function() { | ||
console.log('Felix is asking for food'); | ||
return new Promise(function(resolve, reject) { | ||
setTimeout(function() { | ||
console.log('I am giving felix food'); | ||
resolve('dryfood'); | ||
}, 1000); | ||
}) | ||
}); | ||
|
||
felix.on('askForFood', function() { | ||
console.log('Felix is asking for food'); | ||
return new Promise(function(resolve, reject) { | ||
setTimeout(function() { | ||
console.log('I am giving felix food'); | ||
resolve('sardines'); | ||
}, 2000); | ||
}) | ||
}); | ||
|
||
felix.beHungry() | ||
// after 2 seconds -> I am eating ["dryfood", "sardines"] | ||
``` |
Oops, something went wrong.