@constructorfleet/ultimate-govee
Version:
Library for interacting with Govee devices written in Typescript.
38 lines • 1.86 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TVFactory = void 0;
const common_1 = require("@nestjs/common");
const cqrs_1 = require("@nestjs/cqrs");
const sync_box_1 = require("./sync-box");
const dreamview_1 = require("./dreamview/dreamview");
let TVFactory = class TVFactory {
constructor(SyncBoxFactory, dreamviewFactory, eventBus, commandBus) {
this.SyncBoxFactory = SyncBoxFactory;
this.dreamviewFactory = dreamviewFactory;
this.eventBus = eventBus;
this.commandBus = commandBus;
}
create(deviceModel) {
return [this.SyncBoxFactory, this.dreamviewFactory]
.map((factory) => factory.create(deviceModel, this.eventBus, this.commandBus))
.find((d) => d !== undefined);
}
};
exports.TVFactory = TVFactory;
exports.TVFactory = TVFactory = __decorate([
(0, common_1.Injectable)(),
__metadata("design:paramtypes", [sync_box_1.SyncBoxFactory,
dreamview_1.DreamViewFactory,
cqrs_1.EventBus,
cqrs_1.CommandBus])
], TVFactory);
//# sourceMappingURL=tv.factory.js.map