feat: build

This commit is contained in:
Shinwoo PARK 2023-12-04 16:30:00 +09:00
parent d45435792c
commit f13a1d4c63

6
dist/lib/logged.js vendored
View File

@ -36,10 +36,12 @@ function LoggedInjectable(options) {
methods.forEach((method) => { methods.forEach((method) => {
if (method !== "constructor" && if (method !== "constructor" &&
typeof target.prototype[method] === "function") { typeof target.prototype[method] === "function") {
const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]);
logger.log(`LoggedFunction applied to ${method}`); logger.log(`LoggedFunction applied to ${method}`);
LoggedFunction(target.prototype, method, { LoggedFunction(target.prototype, method, {
value: target.prototype[method], value: target.prototype[method],
}); });
all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method]));
} }
}); });
(0, common_1.Injectable)(options)(target); (0, common_1.Injectable)(options)(target);
@ -56,12 +58,12 @@ function LoggedController(param) {
typeof target.prototype[method] === "function") { typeof target.prototype[method] === "function") {
const path = Reflect.getMetadata("path", target.prototype[method]); const path = Reflect.getMetadata("path", target.prototype[method]);
const httpMethod = Reflect.getMetadata("method", target.prototype[method]); const httpMethod = Reflect.getMetadata("method", target.prototype[method]);
const all = Reflect.getMetadataKeys(target.prototype[method]).map((k) => [k, Reflect.getMetadata(k, target.prototype[method])]);
logger.log(`LoggedRoute applied to ${method} (${RevRequestMethod[httpMethod]} ${path})`); logger.log(`LoggedRoute applied to ${method} (${RevRequestMethod[httpMethod]} ${path})`);
LoggedRoute()(target.prototype, method, { LoggedRoute()(target.prototype, method, {
value: target.prototype[method], value: target.prototype[method],
}); });
Reflect.defineMetadata("path", path, target.prototype[method]); all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method]));
Reflect.defineMetadata("method", httpMethod, target.prototype[method]);
} }
}); });
(0, common_1.Controller)(param)(target); (0, common_1.Controller)(param)(target);