File size: 15,208 Bytes
77731d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
# before-after-hook
> asynchronous hooks for internal functionality
[](https://www.npmjs.com/package/before-after-hook)
[](https://github.com/gr2m/before-after-hook/actions/workflows/test.yml)
## Usage
### Singular hook
```js
// instantiate singular hook API
const hook = new Hook.Singular();
// Create a hook
function getData(options) {
return hook(fetchFromDatabase, options)
.then(handleData)
.catch(handleGetError);
}
// register before/error/after hooks.
// The methods can be async or return a promise
hook.before(beforeHook);
hook.error(errorHook);
hook.after(afterHook);
getData({ id: 123 });
```
### Hook collection
```js
// instantiate hook collection API
const hookCollection = new Hook.Collection();
// Create a hook
function getData(options) {
return hookCollection("get", fetchFromDatabase, options)
.then(handleData)
.catch(handleGetError);
}
// register before/error/after hooks.
// The methods can be async or return a promise
hookCollection.before("get", beforeHook);
hookCollection.error("get", errorHook);
hookCollection.after("get", afterHook);
getData({ id: 123 });
```
### Hook.Singular vs Hook.Collection
There's no fundamental difference between the `Hook.Singular` and `Hook.Collection` hooks except for the fact that a hook from a collection requires you to pass along the name. Therefore the following explanation applies to both code snippets as described above.
The methods are executed in the following order
1. `beforeHook`
2. `fetchFromDatabase`
3. `afterHook`
4. `handleData`
`beforeHook` can mutate `options` before it’s passed to `fetchFromDatabase`.
If an error is thrown in `beforeHook` or `fetchFromDatabase` then `errorHook` is
called next.
If `afterHook` throws an error then `handleGetError` is called instead
of `handleData`.
If `errorHook` throws an error then `handleGetError` is called next, otherwise
`afterHook` and `handleData`.
You can also use `hook.wrap` to achieve the same thing as shown above (collection example):
```js
hookCollection.wrap("get", async (getData, options) => {
await beforeHook(options);
try {
const result = getData(options);
} catch (error) {
await errorHook(error, options);
}
await afterHook(result, options);
});
```
## Install
```
npm install before-after-hook
```
Or download [the latest `before-after-hook.min.js`](https://github.com/gr2m/before-after-hook/releases/latest).
## API
- [Singular Hook Constructor](#singular-hook-api)
- [Hook Collection Constructor](#hook-collection-api)
## Singular hook API
- [Singular constructor](#singular-constructor)
- [hook.api](#singular-api)
- [hook()](#singular-api)
- [hook.before()](#singular-api)
- [hook.error()](#singular-api)
- [hook.after()](#singular-api)
- [hook.wrap()](#singular-api)
- [hook.remove()](#singular-api)
### Singular constructor
The `Hook.Singular` constructor has no options and returns a `hook` instance with the
methods below:
```js
const hook = new Hook.Singular();
```
Using the singular hook is recommended for [TypeScript](#typescript)
### Singular API
The singular hook is a reference to a single hook. This means that there's no need to pass along any identifier (such as a `name` as can be seen in the [Hook.Collection API](#hookcollectionapi)).
The API of a singular hook is exactly the same as a collection hook and we therefore suggest you read the [Hook.Collection API](#hookcollectionapi) and leave out any use of the `name` argument. Just skip it like described in this example:
```js
const hook = new Hook.Singular();
// good
hook.before(beforeHook);
hook.after(afterHook);
hook(fetchFromDatabase, options);
// bad
hook.before("get", beforeHook);
hook.after("get", afterHook);
hook("get", fetchFromDatabase, options);
```
## Hook collection API
- [Collection constructor](#collection-constructor)
- [hookCollection.api](#hookcollectionapi)
- [hookCollection()](#hookcollection)
- [hookCollection.before()](#hookcollectionbefore)
- [hookCollection.error()](#hookcollectionerror)
- [hookCollection.after()](#hookcollectionafter)
- [hookCollection.wrap()](#hookcollectionwrap)
- [hookCollection.remove()](#hookcollectionremove)
### Collection constructor
The `Hook.Collection` constructor has no options and returns a `hookCollection` instance with the
methods below
```js
const hookCollection = new Hook.Collection();
```
### hookCollection.api
Use the `api` property to return the public API:
- [hookCollection.before()](#hookcollectionbefore)
- [hookCollection.after()](#hookcollectionafter)
- [hookCollection.error()](#hookcollectionerror)
- [hookCollection.wrap()](#hookcollectionwrap)
- [hookCollection.remove()](#hookcollectionremove)
That way you don’t need to expose the [hookCollection()](#hookcollection) method to consumers of your library
### hookCollection()
Invoke before and after hooks. Returns a promise.
```js
hookCollection(nameOrNames, method /*, options */);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String or Array of Strings</td>
<td>Hook name, for example <code>'save'</code>. Or an array of names, see example below.</td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>method</code></th>
<td>Function</td>
<td>Callback to be executed after all before hooks finished execution successfully. <code>options</code> is passed as first argument</td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>options</code></th>
<td>Object</td>
<td>Will be passed to all before hooks as reference, so they can mutate it</td>
<td>No, defaults to empty object (<code>{}</code>)</td>
</tr>
</table>
Resolves with whatever `method` returns or resolves with.
Rejects with error that is thrown or rejected with by
1. Any of the before hooks, whichever rejects / throws first
2. `method`
3. Any of the after hooks, whichever rejects / throws first
Simple Example
```js
hookCollection(
"save",
function (record) {
return store.save(record);
},
record
);
// shorter: hookCollection('save', store.save, record)
hookCollection.before("save", function addTimestamps(record) {
const now = new Date().toISOString();
if (record.createdAt) {
record.updatedAt = now;
} else {
record.createdAt = now;
}
});
```
Example defining multiple hooks at once.
```js
hookCollection(
["add", "save"],
function (record) {
return store.save(record);
},
record
);
hookCollection.before("add", function addTimestamps(record) {
if (!record.type) {
throw new Error("type property is required");
}
});
hookCollection.before("save", function addTimestamps(record) {
if (!record.type) {
throw new Error("type property is required");
}
});
```
Defining multiple hooks is helpful if you have similar methods for which you want to define separate hooks, but also an additional hook that gets called for all at once. The example above is equal to this:
```js
hookCollection(
"add",
function (record) {
return hookCollection(
"save",
function (record) {
return store.save(record);
},
record
);
},
record
);
```
### hookCollection.before()
Add before hook for given name.
```js
hookCollection.before(name, method);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String</td>
<td>Hook name, for example <code>'save'</code></td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>method</code></th>
<td>Function</td>
<td>
Executed before the wrapped method. Called with the hook’s
<code>options</code> argument. Before hooks can mutate the passed options
before they are passed to the wrapped method.
</td>
<td>Yes</td>
</tr>
</table>
Example
```js
hookCollection.before("save", function validate(record) {
if (!record.name) {
throw new Error("name property is required");
}
});
```
### hookCollection.error()
Add error hook for given name.
```js
hookCollection.error(name, method);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String</td>
<td>Hook name, for example <code>'save'</code></td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>method</code></th>
<td>Function</td>
<td>
Executed when an error occurred in either the wrapped method or a
<code>before</code> hook. Called with the thrown <code>error</code>
and the hook’s <code>options</code> argument. The first <code>method</code>
which does not throw an error will set the result that the after hook
methods will receive.
</td>
<td>Yes</td>
</tr>
</table>
Example
```js
hookCollection.error("save", function (error, options) {
if (error.ignore) return;
throw error;
});
```
### hookCollection.after()
Add after hook for given name.
```js
hookCollection.after(name, method);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String</td>
<td>Hook name, for example <code>'save'</code></td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>method</code></th>
<td>Function</td>
<td>
Executed after wrapped method. Called with what the wrapped method
resolves with the hook’s <code>options</code> argument.
</td>
<td>Yes</td>
</tr>
</table>
Example
```js
hookCollection.after("save", function (result, options) {
if (result.updatedAt) {
app.emit("update", result);
} else {
app.emit("create", result);
}
});
```
### hookCollection.wrap()
Add wrap hook for given name.
```js
hookCollection.wrap(name, method);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String</td>
<td>Hook name, for example <code>'save'</code></td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>method</code></th>
<td>Function</td>
<td>
Receives both the wrapped method and the passed options as arguments so it can add logic before and after the wrapped method, it can handle errors and even replace the wrapped method altogether
</td>
<td>Yes</td>
</tr>
</table>
Example
```js
hookCollection.wrap("save", async function (saveInDatabase, options) {
if (!record.name) {
throw new Error("name property is required");
}
try {
const result = await saveInDatabase(options);
if (result.updatedAt) {
app.emit("update", result);
} else {
app.emit("create", result);
}
return result;
} catch (error) {
if (error.ignore) return;
throw error;
}
});
```
See also: [Test mock example](examples/test-mock-example.md)
### hookCollection.remove()
Removes hook for given name.
```js
hookCollection.remove(name, hookMethod);
```
<table>
<thead>
<tr>
<th>Argument</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tr>
<th align="left"><code>name</code></th>
<td>String</td>
<td>Hook name, for example <code>'save'</code></td>
<td>Yes</td>
</tr>
<tr>
<th align="left"><code>beforeHookMethod</code></th>
<td>Function</td>
<td>
Same function that was previously passed to <code>hookCollection.before()</code>, <code>hookCollection.error()</code>, <code>hookCollection.after()</code> or <code>hookCollection.wrap()</code>
</td>
<td>Yes</td>
</tr>
</table>
Example
```js
hookCollection.remove("save", validateRecord);
```
## TypeScript
This library contains type definitions for TypeScript.
### Type support for `Singular`:
```ts
import { Hook } from "before-after-hook";
type TOptions = { foo: string }; // type for options
type TResult = { bar: number }; // type for result
type TError = Error; // type for error
const hook = new Hook.Singular<TOptions, TResult, TError>();
hook.before((options) => {
// `options.foo` has `string` type
// not allowed
options.foo = 42;
// allowed
options.foo = "Forty-Two";
});
const hookedMethod = hook(
(options) => {
// `options.foo` has `string` type
// not allowed, because it does not satisfy the `R` type
return { foo: 42 };
// allowed
return { bar: 42 };
},
{ foo: "Forty-Two" }
);
```
You can choose not to pass the types for options, result or error. So, these are completely valid:
```ts
const hook = new Hook.Singular<O, R>();
const hook = new Hook.Singular<O>();
const hook = new Hook.Singular();
```
In these cases, the omitted types will implicitly be `any`.
### Type support for `Collection`:
`Collection` also has strict type support. You can use it like this:
```ts
import { Hook } from "before-after-hook";
type HooksType = {
add: {
Options: { type: string };
Result: { id: number };
Error: Error;
};
save: {
Options: { type: string };
Result: { id: number };
};
read: {
Options: { id: number; foo: number };
};
destroy: {
Options: { id: number; foo: string };
};
};
const hooks = new Hook.Collection<HooksType>();
hooks.before("destroy", (options) => {
// `options.id` has `number` type
});
hooks.error("add", (err, options) => {
// `options.type` has `string` type
// `err` is `instanceof Error`
});
hooks.error("save", (err, options) => {
// `options.type` has `string` type
// `err` has type `any`
});
hooks.after("save", (result, options) => {
// `options.type` has `string` type
// `result.id` has `number` type
});
```
You can choose not to pass the types altogether. In that case, everything will implicitly be `any`:
```ts
const hook = new Hook.Collection();
```
Alternative imports:
```ts
import { Singular, Collection } from "before-after-hook";
const hook = new Singular();
const hooks = new Collection();
```
## Upgrading to 1.4
Since version 1.4 the `Hook` constructor has been deprecated in favor of returning `Hook.Singular` in an upcoming breaking release.
Version 1.4 is still 100% backwards-compatible, but if you want to continue using hook collections, we recommend using the `Hook.Collection` constructor instead before the next release.
For even more details, check out [the PR](https://github.com/gr2m/before-after-hook/pull/52).
## See also
If `before-after-hook` is not for you, have a look at one of these alternatives:
- https://github.com/keystonejs/grappling-hook
- https://github.com/sebelga/promised-hooks
- https://github.com/bnoguchi/hooks-js
- https://github.com/cb1kenobi/hook-emitter
## License
[Apache 2.0](LICENSE)
|