Server IP : 150.95.80.236 / Your IP : 18.226.34.205 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/assets/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", "../utils/classSet"], function (require, exports, Plugin_1, classSet_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Icon = (function (_super) { __extends(Icon, _super); function Icon(opts) { var _this = _super.call(this, opts) || this; _this.icons = new Map(); _this.opts = Object.assign({}, { invalid: 'fv-plugins-icon--invalid', onPlaced: function () { }, onSet: function () { }, valid: 'fv-plugins-icon--valid', validating: 'fv-plugins-icon--validating', }, opts); _this.elementValidatingHandler = _this.onElementValidating.bind(_this); _this.elementValidatedHandler = _this.onElementValidated.bind(_this); _this.elementNotValidatedHandler = _this.onElementNotValidated.bind(_this); _this.elementIgnoredHandler = _this.onElementIgnored.bind(_this); _this.fieldAddedHandler = _this.onFieldAdded.bind(_this); return _this; } Icon.prototype.install = function () { this.core .on('core.element.validating', this.elementValidatingHandler) .on('core.element.validated', this.elementValidatedHandler) .on('core.element.notvalidated', this.elementNotValidatedHandler) .on('core.element.ignored', this.elementIgnoredHandler) .on('core.field.added', this.fieldAddedHandler); }; Icon.prototype.uninstall = function () { this.icons.forEach(function (icon) { return icon.parentNode.removeChild(icon); }); this.icons.clear(); this.core .off('core.element.validating', this.elementValidatingHandler) .off('core.element.validated', this.elementValidatedHandler) .off('core.element.notvalidated', this.elementNotValidatedHandler) .off('core.element.ignored', this.elementIgnoredHandler) .off('core.field.added', this.fieldAddedHandler); }; Icon.prototype.onFieldAdded = function (e) { var _this = this; var elements = e.elements; if (elements) { elements.forEach(function (ele) { var icon = _this.icons.get(ele); if (icon) { icon.parentNode.removeChild(icon); _this.icons.delete(ele); } }); this.prepareFieldIcon(e.field, elements); } }; Icon.prototype.prepareFieldIcon = function (field, elements) { var _this = this; if (elements.length) { var type = elements[0].getAttribute('type'); if ('radio' === type || 'checkbox' === type) { this.prepareElementIcon(field, elements[0]); } else { elements.forEach(function (ele) { return _this.prepareElementIcon(field, ele); }); } } }; Icon.prototype.prepareElementIcon = function (field, ele) { var i = document.createElement('i'); i.setAttribute('data-field', field); ele.parentNode.insertBefore(i, ele.nextSibling); (0, classSet_1.default)(i, { 'fv-plugins-icon': true, }); var e = { classes: { invalid: this.opts.invalid, valid: this.opts.valid, validating: this.opts.validating, }, element: ele, field: field, iconElement: i, }; this.core.emit('plugins.icon.placed', e); this.opts.onPlaced(e); this.icons.set(ele, i); }; Icon.prototype.onElementValidating = function (e) { var _a; var icon = this.setClasses(e.field, e.element, e.elements, (_a = {}, _a[this.opts.invalid] = false, _a[this.opts.valid] = false, _a[this.opts.validating] = true, _a)); var evt = { element: e.element, field: e.field, iconElement: icon, status: 'Validating', }; this.core.emit('plugins.icon.set', evt); this.opts.onSet(evt); }; Icon.prototype.onElementValidated = function (e) { var _a; var icon = this.setClasses(e.field, e.element, e.elements, (_a = {}, _a[this.opts.invalid] = !e.valid, _a[this.opts.valid] = e.valid, _a[this.opts.validating] = false, _a)); var evt = { element: e.element, field: e.field, iconElement: icon, status: e.valid ? 'Valid' : 'Invalid', }; this.core.emit('plugins.icon.set', evt); this.opts.onSet(evt); }; Icon.prototype.onElementNotValidated = function (e) { var _a; var icon = this.setClasses(e.field, e.element, e.elements, (_a = {}, _a[this.opts.invalid] = false, _a[this.opts.valid] = false, _a[this.opts.validating] = false, _a)); var evt = { element: e.element, field: e.field, iconElement: icon, status: 'NotValidated', }; this.core.emit('plugins.icon.set', evt); this.opts.onSet(evt); }; Icon.prototype.onElementIgnored = function (e) { var _a; var icon = this.setClasses(e.field, e.element, e.elements, (_a = {}, _a[this.opts.invalid] = false, _a[this.opts.valid] = false, _a[this.opts.validating] = false, _a)); var evt = { element: e.element, field: e.field, iconElement: icon, status: 'Ignored', }; this.core.emit('plugins.icon.set', evt); this.opts.onSet(evt); }; Icon.prototype.setClasses = function (field, element, elements, classes) { var type = element.getAttribute('type'); var ele = 'radio' === type || 'checkbox' === type ? elements[0] : element; if (this.icons.has(ele)) { var icon = this.icons.get(ele); (0, classSet_1.default)(icon, classes); return icon; } else { return null; } }; return Icon; }(Plugin_1.default)); exports.default = Icon; });