Server IP : 150.95.80.236 / Your IP : 3.14.246.207 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/demo15/src/plugins/formvalidation/dist/amd/plugins/ |
Upload File : |
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) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); define(["require", "exports", "../core/Plugin"], function (require, exports, Plugin_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var TypingAnimation = (function (_super) { __extends(TypingAnimation, _super); function TypingAnimation(opts) { var _this = _super.call(this, opts) || this; _this.opts = Object.assign({}, { autoPlay: true, }, opts); return _this; } TypingAnimation.prototype.install = function () { this.fields = Object.keys(this.core.getFields()); if (this.opts.autoPlay) { this.play(); } }; TypingAnimation.prototype.play = function () { return this.animate(0); }; TypingAnimation.prototype.animate = function (fieldIndex) { var _this = this; if (fieldIndex >= this.fields.length) { return Promise.resolve(fieldIndex); } var field = this.fields[fieldIndex]; var ele = this.core.getElements(field)[0]; var inputType = ele.getAttribute('type'); var samples = this.opts.data[field]; if ('checkbox' === inputType || 'radio' === inputType) { ele.checked = true; ele.setAttribute('checked', 'true'); return this.core.revalidateField(field).then(function (_status) { return _this.animate(fieldIndex + 1); }); } else if (!samples) { return this.animate(fieldIndex + 1); } else { return new Promise(function (resolve) { return new Typed(ele, { attr: 'value', autoInsertCss: true, bindInputFocusEvents: true, onComplete: function () { resolve(fieldIndex + 1); }, onStringTyped: function (arrayPos, _self) { ele.value = samples[arrayPos]; _this.core.revalidateField(field); }, strings: samples, typeSpeed: 100, }); }).then(function (nextFieldIndex) { return _this.animate(nextFieldIndex); }); } }; return TypingAnimation; }(Plugin_1.default)); exports.default = TypingAnimation; });