1 | /*
|
---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
3 | Author Tobias Koppers @sokra
|
---|
4 | */
|
---|
5 | "use strict";
|
---|
6 |
|
---|
7 | const Hook = require("./Hook");
|
---|
8 | const HookCodeFactory = require("./HookCodeFactory");
|
---|
9 |
|
---|
10 | class SyncBailHookCodeFactory extends HookCodeFactory {
|
---|
11 | content({ onError, onResult, resultReturns, onDone, rethrowIfPossible }) {
|
---|
12 | return this.callTapsSeries({
|
---|
13 | onError: (i, err) => onError(err),
|
---|
14 | onResult: (i, result, next) =>
|
---|
15 | `if(${result} !== undefined) {\n${onResult(
|
---|
16 | result
|
---|
17 | )};\n} else {\n${next()}}\n`,
|
---|
18 | resultReturns,
|
---|
19 | onDone,
|
---|
20 | rethrowIfPossible
|
---|
21 | });
|
---|
22 | }
|
---|
23 | }
|
---|
24 |
|
---|
25 | const factory = new SyncBailHookCodeFactory();
|
---|
26 |
|
---|
27 | const TAP_ASYNC = () => {
|
---|
28 | throw new Error("tapAsync is not supported on a SyncBailHook");
|
---|
29 | };
|
---|
30 |
|
---|
31 | const TAP_PROMISE = () => {
|
---|
32 | throw new Error("tapPromise is not supported on a SyncBailHook");
|
---|
33 | };
|
---|
34 |
|
---|
35 | const COMPILE = function(options) {
|
---|
36 | factory.setup(this, options);
|
---|
37 | return factory.create(options);
|
---|
38 | };
|
---|
39 |
|
---|
40 | function SyncBailHook(args = [], name = undefined) {
|
---|
41 | const hook = new Hook(args, name);
|
---|
42 | hook.constructor = SyncBailHook;
|
---|
43 | hook.tapAsync = TAP_ASYNC;
|
---|
44 | hook.tapPromise = TAP_PROMISE;
|
---|
45 | hook.compile = COMPILE;
|
---|
46 | return hook;
|
---|
47 | }
|
---|
48 |
|
---|
49 | SyncBailHook.prototype = null;
|
---|
50 |
|
---|
51 | module.exports = SyncBailHook;
|
---|