@nestjs/websockets
Version:
Nest - modern, fast, powerful node.js web framework (@websockets)
21 lines (20 loc) • 641 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WsParamsFactory = void 0;
const ws_paramtype_enum_1 = require("../enums/ws-paramtype.enum");
class WsParamsFactory {
exchangeKeyForValue(type, data, args) {
if (!args) {
return null;
}
switch (type) {
case ws_paramtype_enum_1.WsParamtype.SOCKET:
return args[0];
case ws_paramtype_enum_1.WsParamtype.PAYLOAD:
return data ? args[1]?.[data] : args[1];
default:
return null;
}
}
}
exports.WsParamsFactory = WsParamsFactory;
;