block-obj-builder
Version:
Block object builder
50 lines (49 loc) • 1.92 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var block_obj_enums_1 = require("../../const/block-obj-enums");
var block_obj_builder_1 = require("./block-obj-builder");
var FunctionBB = /** @class */ (function (_super) {
__extends(FunctionBB, _super);
function FunctionBB(fncName, args) {
var _this = _super.call(this) || this;
_this.obj.type = block_obj_enums_1.BlockTypes.FUNCTION;
_this.obj.function = {
name: fncName,
args: args
};
return _this;
}
FunctionBB.prototype.functionModules = function (modules) {
this.obj.function.modules = modules;
return this;
};
FunctionBB.prototype.formId = function (formId) {
this.obj.function.formId = formId;
return this;
};
FunctionBB.prototype.addTodo = function (tempText, tempChoices) {
this.obj.function.todo = true;
this.obj.function.tempText = tempText;
this.obj.function.tempChoices = tempChoices.map(function (cb) { return cb.build(); });
return this;
};
FunctionBB.prototype.setWebhook = function () {
this.obj.function.webhook = true;
return this;
};
return FunctionBB;
}(block_obj_builder_1.default));
exports.default = FunctionBB;