update to latest standards

This commit is contained in:
2018-01-29 23:28:03 +01:00
parent e7ccd9aec4
commit 848d9ac1e0
7 changed files with 716 additions and 438 deletions

View File

@ -1,89 +1,92 @@
import 'typings-global'
import * as q from 'smartq'
import * as through2 from 'through2'
import { Transform } from 'stream'
import * as q from "smartq";
import * as through2 from "through2";
import { Transform } from "stream";
export type TExecutionMode = 'forEach' | 'forFirst' | 'atEnd'
export type TExecutionMode = "forEach" | "forFirst" | "atEnd";
export interface IPromiseFunction {
(file?, enc?): PromiseLike<any>
(file?, enc?): PromiseLike<any>;
}
let defaultExport = (
functionsToExecuteArg: IPromiseFunction | IPromiseFunction[],
executionModeArg: TExecutionMode = 'forEach'
executionModeArg: TExecutionMode = "forEach"
): Transform => {
let promiseArray = []
let runFunction = function (functionArg, file, enc) {
let returnValue = functionArg(file, enc)
if (typeof returnValue !== 'undefined' && typeof returnValue.then !== 'undefined') {
promiseArray.push(returnValue)
let promiseArray = [];
let runFunction = function(functionArg, file, enc) {
let returnValue = functionArg(file, enc);
if (
typeof returnValue !== "undefined" &&
typeof returnValue.then !== "undefined"
) {
promiseArray.push(returnValue);
}
}
};
let checkAndRunFunction = function (file, enc) {
if (typeof functionsToExecuteArg === 'function') {
runFunction(functionsToExecuteArg, file, enc)
let checkAndRunFunction = function(file, enc) {
if (typeof functionsToExecuteArg === "function") {
runFunction(functionsToExecuteArg, file, enc);
} else if (Array.isArray(functionsToExecuteArg)) {
for (let anyFunction in functionsToExecuteArg) {
runFunction(functionsToExecuteArg[ anyFunction ], file, enc)
runFunction(functionsToExecuteArg[anyFunction], file, enc);
}
} else {
throw new Error('gulp-callfunction: something is strange with the given arguments')
throw new Error(
"gulp-callfunction: something is strange with the given arguments"
);
}
return Promise.all(promiseArray)
}
return Promise.all(promiseArray);
};
let hasExecutedOnce = false
let forEach = function (file, enc, cb) { // the forEach function is called for every chunk
let hasExecutedOnce = false;
let forEach = function(file, enc, cb) {
// the forEach function is called for every chunk
switch (executionModeArg) {
case 'forEach':
checkAndRunFunction(file, enc).then(function () {
cb(null, file)
})
break
case 'forFirst':
case "forEach":
checkAndRunFunction(file, enc).then(function() {
cb(null, file);
});
break;
case "forFirst":
if (hasExecutedOnce) {
checkAndRunFunction(file, enc)
.then(function () {
cb(null, file)
})
checkAndRunFunction(file, enc).then(function() {
cb(null, file);
});
} else {
cb(null, file)
cb(null, file);
}
hasExecutedOnce = true
break
case 'atEnd':
cb()
break
hasExecutedOnce = true;
break;
case "atEnd":
cb();
break;
default:
break
break;
}
}
};
let atEnd = function (cb) {
if (executionModeArg === 'atEnd') {
checkAndRunFunction(null, null).then(function () {
cb()
})
let atEnd = function(cb) {
if (executionModeArg === "atEnd") {
checkAndRunFunction(null, null).then(function() {
cb();
});
} else {
cb()
cb();
}
}
return through2.obj(forEach, atEnd)
}
};
return through2.obj(forEach, atEnd);
};
export let forEach = (funcArg: IPromiseFunction) => {
return defaultExport(funcArg, 'forEach')
}
return defaultExport(funcArg, "forEach");
};
export let forFirst = (funcArg: IPromiseFunction) => {
return defaultExport(funcArg, 'forFirst')
}
return defaultExport(funcArg, "forFirst");
};
export let atEnd = (funcArg: IPromiseFunction) => {
return defaultExport(funcArg, 'atEnd')
}
return defaultExport(funcArg, "atEnd");
};
export default defaultExport
export default defaultExport;