Server IP : 150.95.80.236 / Your IP : 3.147.67.25 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 Sequence = (function (_super) { __extends(Sequence, _super); function Sequence(opts) { var _this = _super.call(this, opts) || this; _this.invalidFields = new Map(); _this.opts = Object.assign({}, { enabled: true }, opts); _this.validatorHandler = _this.onValidatorValidated.bind(_this); _this.shouldValidateFilter = _this.shouldValidate.bind(_this); _this.fieldAddedHandler = _this.onFieldAdded.bind(_this); _this.elementNotValidatedHandler = _this.onElementNotValidated.bind(_this); _this.elementValidatingHandler = _this.onElementValidating.bind(_this); return _this; } Sequence.prototype.install = function () { this.core .on('core.validator.validated', this.validatorHandler) .on('core.field.added', this.fieldAddedHandler) .on('core.element.notvalidated', this.elementNotValidatedHandler) .on('core.element.validating', this.elementValidatingHandler) .registerFilter('field-should-validate', this.shouldValidateFilter); }; Sequence.prototype.uninstall = function () { this.invalidFields.clear(); this.core .off('core.validator.validated', this.validatorHandler) .off('core.field.added', this.fieldAddedHandler) .off('core.element.notvalidated', this.elementNotValidatedHandler) .off('core.element.validating', this.elementValidatingHandler) .deregisterFilter('field-should-validate', this.shouldValidateFilter); }; Sequence.prototype.shouldValidate = function (field, element, value, validator) { var stop = (this.opts.enabled === true || this.opts.enabled[field] === true) && this.invalidFields.has(element) && !!this.invalidFields.get(element).length && this.invalidFields.get(element).indexOf(validator) === -1; return !stop; }; Sequence.prototype.onValidatorValidated = function (e) { var validators = this.invalidFields.has(e.element) ? this.invalidFields.get(e.element) : []; var index = validators.indexOf(e.validator); if (e.result.valid && index >= 0) { validators.splice(index, 1); } else if (!e.result.valid && index === -1) { validators.push(e.validator); } this.invalidFields.set(e.element, validators); }; Sequence.prototype.onFieldAdded = function (e) { if (e.elements) { this.clearInvalidFields(e.elements); } }; Sequence.prototype.onElementNotValidated = function (e) { this.clearInvalidFields(e.elements); }; Sequence.prototype.onElementValidating = function (e) { this.clearInvalidFields(e.elements); }; Sequence.prototype.clearInvalidFields = function (elements) { var _this = this; elements.forEach(function (ele) { return _this.invalidFields.delete(ele); }); }; return Sequence; }(Plugin_1.default)); exports.default = Sequence; });