From 49beb6c87efc73ff8b2fa99f8587b1a607197962 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Mon, 2 Aug 2021 20:33:13 -0700 Subject: [PATCH] Added validate not function to ensure an input is not a value. The notify function now scrolls the element into view automatically. --- ignite-html-validate.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ignite-html-validate.js b/ignite-html-validate.js index a0d4eba..e08a077 100644 --- a/ignite-html-validate.js +++ b/ignite-html-validate.js @@ -22,6 +22,8 @@ function notify(target, type, msg, duration) { color = "#10c469"; } + target.scrollIntoView({ behavior: "smooth" }); + if (target._validation && target._validation.isConnected) { target._validation.remove(); } @@ -263,6 +265,20 @@ IgniteTemplate.prototype.validateMax = function (max, msg) { }); } +/** + * Validates an input to make sure it it's value is not the given value. + * @param {Any} expected The value the input cannot have in order to be considered valid. + * @param {string|Function|IgniteProperty} msg The message to display when the input length is too long. If null a deafult one will show. + * @returns {IgniteTemplate} This ignite template. + */ +IgniteTemplate.prototype.validateNot = function(expected, msg) { + return this.validate((value, error) => { + if (!value || value == expected) { + return error(msg ? msg : `Input cannot be ${expected}.`); + } + }); +} + /** * Validates an input to make sure it includes a string. * @param {string} str The string that the input must include.