Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
"use strict";
|
|
|
|
const Hook = require("./Hook");
|
|
const HookCodeFactory = require("./HookCodeFactory");
|
|
|
|
class SyncLoopHookCodeFactory extends HookCodeFactory {
|
|
content({ onError, onDone, rethrowIfPossible }) {
|
|
return this.callTapsLooping({
|
|
onError: (i, err) => onError(err),
|
|
onDone,
|
|
rethrowIfPossible
|
|
});
|
|
}
|
|
}
|
|
|
|
const factory = new SyncLoopHookCodeFactory();
|
|
|
|
const TAP_ASYNC = () => {
|
|
throw new Error("tapAsync is not supported on a SyncLoopHook");
|
|
};
|
|
|
|
const TAP_PROMISE = () => {
|
|
throw new Error("tapPromise is not supported on a SyncLoopHook");
|
|
};
|
|
|
|
function COMPILE(options) {
|
|
factory.setup(this, options);
|
|
return factory.create(options);
|
|
}
|
|
|
|
function SyncLoopHook(args = [], name = undefined) {
|
|
const hook = new Hook(args, name);
|
|
hook.constructor = SyncLoopHook;
|
|
hook.tapAsync = TAP_ASYNC;
|
|
hook.tapPromise = TAP_PROMISE;
|
|
hook.compile = COMPILE;
|
|
return hook;
|
|
}
|
|
|
|
SyncLoopHook.prototype = null;
|
|
|
|
module.exports = SyncLoopHook;
|