Server IP : 150.95.80.236 / Your IP : 3.137.163.206 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 StartEndDate = (function (_super) { __extends(StartEndDate, _super); function StartEndDate(opts) { var _this = _super.call(this, opts) || this; _this.fieldValidHandler = _this.onFieldValid.bind(_this); _this.fieldInvalidHandler = _this.onFieldInvalid.bind(_this); return _this; } StartEndDate.prototype.install = function () { var _this = this; var fieldOptions = this.core.getFields(); this.startDateFieldOptions = fieldOptions[this.opts.startDate.field]; this.endDateFieldOptions = fieldOptions[this.opts.endDate.field]; var form = this.core.getFormElement(); this.core .on('core.field.valid', this.fieldValidHandler) .on('core.field.invalid', this.fieldInvalidHandler) .addField(this.opts.startDate.field, { validators: { date: { format: this.opts.format, max: function () { var endDateField = form.querySelector("[name=\"" + _this.opts.endDate.field + "\"]"); return endDateField.value; }, message: this.opts.startDate.message, }, }, }) .addField(this.opts.endDate.field, { validators: { date: { format: this.opts.format, message: this.opts.endDate.message, min: function () { var startDateField = form.querySelector("[name=\"" + _this.opts.startDate.field + "\"]"); return startDateField.value; }, }, }, }); }; StartEndDate.prototype.uninstall = function () { this.core.removeField(this.opts.startDate.field); if (this.startDateFieldOptions) { this.core.addField(this.opts.startDate.field, this.startDateFieldOptions); } this.core.removeField(this.opts.endDate.field); if (this.endDateFieldOptions) { this.core.addField(this.opts.endDate.field, this.endDateFieldOptions); } this.core.off('core.field.valid', this.fieldValidHandler).off('core.field.invalid', this.fieldInvalidHandler); }; StartEndDate.prototype.onFieldInvalid = function (field) { switch (field) { case this.opts.startDate.field: this.startDateValid = false; break; case this.opts.endDate.field: this.endDateValid = false; break; default: break; } }; StartEndDate.prototype.onFieldValid = function (field) { switch (field) { case this.opts.startDate.field: this.startDateValid = true; if (this.endDateValid === false) { this.core.revalidateField(this.opts.endDate.field); } break; case this.opts.endDate.field: this.endDateValid = true; if (this.startDateValid === false) { this.core.revalidateField(this.opts.startDate.field); } break; default: break; } }; return StartEndDate; }(Plugin_1.default)); exports.default = StartEndDate; });