34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Protor = void 0;
|
|
var axios_1 = require("axios");
|
|
var Protor = /** @class */ (function () {
|
|
function Protor(ip, port) {
|
|
this.ip = ip;
|
|
this.port = port;
|
|
}
|
|
Protor.prototype._getBaseURI = function () {
|
|
return "http://".concat(this.ip, ":").concat(this.port, "/");
|
|
};
|
|
Protor.prototype.isOnline = function (callback) {
|
|
axios_1.default.get(this._getBaseURI() + 'online').then(function () {
|
|
callback(true);
|
|
}).catch(function () {
|
|
callback(false);
|
|
});
|
|
};
|
|
Protor.prototype.fadeIn = function (duration) {
|
|
if (duration === void 0) { duration = 0; }
|
|
axios_1.default.get(this._getBaseURI() + 'api/animation/fadein/' + duration).then(function () {
|
|
}).catch(function () {
|
|
});
|
|
};
|
|
Protor.prototype.fadeOut = function (duration) {
|
|
if (duration === void 0) { duration = 0; }
|
|
axios_1.default.get(this._getBaseURI() + 'api/animation/fadeout/' + duration).then(function () {
|
|
}).catch(function () {
|
|
});
|
|
};
|
|
return Protor;
|
|
}());
|
|
exports.Protor = Protor;
|
|
//# sourceMappingURL=ProtorClass.js.map
|