-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path3-callback.js
60 lines (53 loc) · 1.5 KB
/
3-callback.js
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
'use strict';
// const wrap = (before, after, fn) =>
// (...args) => after(fn(...before(...args)));
// const wrapAsync = (before, after, beforeCb, afterCb, fn) =>
// (...args) => {
// const callback = args[args.length -1];
// if (typeof callback === 'function') {
// args[args.length - 1] = (...pars) =>
// afterCb(callback(...beforeCb(...pars)));
// }
// return after(fn(...before(...args)));
// };
const wrapFunction = fn => {
console.log('Wrap function:', fn.name);
return (...args) => {
console.log('Called wrapper for:', fn.name);
console.dir({ args });
if (args.length > 0) {
const callback = args[args.length - 1];
if (typeof callback === 'function') {
args[args.length - 1] = (...args) => {
console.log('Callback:', fn.name);
return callback(...args);
};
}
}
console.log('Call:', fn.name);
console.dir(args);
const result = fn(...args);
console.log('Ended wrapper for:', fn.name);
console.dir({ result });
return result;
};
};
const cloneInterface = anInterface => {
const clone = {};
for (const key in anInterface) {
const fn = anInterface[key];
clone[key] = wrapFunction(fn);
}
return clone;
};
// Usage
const interfaceName = {
methodName(par1, par2, callback) {
console.dir({ method: { par1, par2 } });
callback(null, { field: 'value' });
}
};
const cloned = cloneInterface(interfaceName);
cloned.methodName('Uno', 'Due', () => {
console.log('Fire');
});