Server IP : 150.95.80.236 / Your IP : 18.225.209.152 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"], function (require, exports, Plugin_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var SubmitButton = (function (_super) { __extends(SubmitButton, _super); function SubmitButton(opts) { var _this = _super.call(this, opts) || this; _this.isFormValid = false; _this.opts = Object.assign({}, { aspNetButton: false, buttons: function (form) { return [].slice.call(form.querySelectorAll('[type="submit"]:not([formnovalidate])')); }, }, opts); _this.submitHandler = _this.handleSubmitEvent.bind(_this); _this.buttonClickHandler = _this.handleClickEvent.bind(_this); return _this; } SubmitButton.prototype.install = function () { var _this = this; if (!(this.core.getFormElement() instanceof HTMLFormElement)) { return; } var form = this.core.getFormElement(); this.submitButtons = this.opts.buttons(form); form.setAttribute('novalidate', 'novalidate'); form.addEventListener('submit', this.submitHandler); this.hiddenClickedEle = document.createElement('input'); this.hiddenClickedEle.setAttribute('type', 'hidden'); form.appendChild(this.hiddenClickedEle); this.submitButtons.forEach(function (button) { button.addEventListener('click', _this.buttonClickHandler); }); }; SubmitButton.prototype.uninstall = function () { var _this = this; var form = this.core.getFormElement(); if (form instanceof HTMLFormElement) { form.removeEventListener('submit', this.submitHandler); } this.submitButtons.forEach(function (button) { button.removeEventListener('click', _this.buttonClickHandler); }); this.hiddenClickedEle.parentElement.removeChild(this.hiddenClickedEle); }; SubmitButton.prototype.handleSubmitEvent = function (e) { this.validateForm(e); }; SubmitButton.prototype.handleClickEvent = function (e) { var target = e.currentTarget; if (target instanceof HTMLElement) { if (this.opts.aspNetButton && this.isFormValid === true) { } else { var form = this.core.getFormElement(); form.removeEventListener('submit', this.submitHandler); this.clickedButton = e.target; var name_1 = this.clickedButton.getAttribute('name'); var value = this.clickedButton.getAttribute('value'); if (name_1 && value) { this.hiddenClickedEle.setAttribute('name', name_1); this.hiddenClickedEle.setAttribute('value', value); } this.validateForm(e); } } }; SubmitButton.prototype.validateForm = function (e) { var _this = this; e.preventDefault(); this.core.validate().then(function (result) { if (result === 'Valid' && _this.opts.aspNetButton && !_this.isFormValid && _this.clickedButton) { _this.isFormValid = true; _this.clickedButton.removeEventListener('click', _this.buttonClickHandler); _this.clickedButton.click(); } }); }; return SubmitButton; }(Plugin_1.default)); exports.default = SubmitButton; });