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) => {
if (method !== "constructor" &&
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}`);
LoggedFunction(target.prototype, method, {
value: target.prototype[method],
});
all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method]));
}
});
(0, common_1.Injectable)(options)(target);
@ -56,12 +58,12 @@ function LoggedController(param) {
typeof target.prototype[method] === "function") {
const path = Reflect.getMetadata("path", 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})`);
LoggedRoute()(target.prototype, method, {
value: target.prototype[method],
});
Reflect.defineMetadata("path", path, target.prototype[method]);
Reflect.defineMetadata("method", httpMethod, target.prototype[method]);
all.forEach(([k, v]) => Reflect.defineMetadata(k, v, target.prototype[method]));
}
});
(0, common_1.Controller)(param)(target);