mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Check login inputs
This commit is contained in:
76
assets/js/common/formChecker.js
Normal file
76
assets/js/common/formChecker.js
Normal file
@ -0,0 +1,76 @@
|
||||
/**
|
||||
* Function to check data input in forms
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
ComunicWeb.common.formChecker = {
|
||||
|
||||
/**
|
||||
* Check an input
|
||||
*
|
||||
* @param {elem} input The input element to check
|
||||
* @param {Boolean} inFormGroup Specify wether the input is in a formgroup or not
|
||||
* @return {Boolean} True or false depending of the validity of the field
|
||||
*/
|
||||
checkInput: function(input, inFormGroup){
|
||||
//Check input existence
|
||||
if(!input){
|
||||
//Error message
|
||||
ComunicWeb.debug.logMessage("ComunicWeb.common.formChecker.checkInput requires at least on input !");
|
||||
return false;
|
||||
}
|
||||
|
||||
//Extract input type
|
||||
var inputType = input.type;
|
||||
|
||||
//Prepare checking
|
||||
var inputOK = true;
|
||||
|
||||
//TextInput
|
||||
if(inputType == "text"){
|
||||
inputOK = (input.value == "" ? false:true);
|
||||
}
|
||||
|
||||
//MailInput
|
||||
else if(inputType == "email"){
|
||||
inputOK = input.value.match(/^[a-zA-Z0-9_.]+@[a-zA-Z0-9-]{1,}[.][a-zA-Z]{2,3}$/);
|
||||
}
|
||||
|
||||
//Password input
|
||||
else if(inputType == "password"){
|
||||
inputOK = (input.value == "" ? false:true);
|
||||
}
|
||||
|
||||
//Unsupported input type
|
||||
else {
|
||||
ComunicWeb.debug.logMessage("ComunicWeb.common.formChecker.checkInput input type '" + inputType + "' not supported !");
|
||||
return false;
|
||||
}
|
||||
|
||||
//If possible, change input state
|
||||
if(inFormGroup){
|
||||
//Retrieve parent node
|
||||
var parentNode = input.parentNode;
|
||||
|
||||
//If there is no error, remove has-error attribute
|
||||
if(inputOK){
|
||||
if(parentNode.className.indexOf("has-error") != -1){
|
||||
//Remove has-error attribute
|
||||
parentNode.className = parentNode.className.replace("has-error", "");
|
||||
}
|
||||
}
|
||||
|
||||
//If there is an error, check the has-error attribute is present
|
||||
if(!inputOK){
|
||||
if(parentNode.className.indexOf("has-error") == -1){
|
||||
//Add has-error attribute
|
||||
parentNode.className = parentNode.className + " has-error";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//Return result
|
||||
return inputOK;
|
||||
}
|
||||
|
||||
};
|
@ -140,6 +140,25 @@ var ComunicWeb = {
|
||||
getAndShowJSONtemplate: function(targetElem, templateURI, additionalData, afterParsingJSONtemplate, cleanContener){},
|
||||
},
|
||||
|
||||
/**
|
||||
* Functions to check data input in forms
|
||||
*/
|
||||
formChecker: {
|
||||
//TODO : implement
|
||||
},
|
||||
|
||||
/**
|
||||
* Notification system
|
||||
*/
|
||||
notificationSystem: {
|
||||
|
||||
/**
|
||||
* Display a notification
|
||||
*/
|
||||
showNotification: function(message, notifType, notifDuration, notifTitle){},
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* Network common requests
|
||||
*/
|
||||
|
38
assets/js/common/notifications.js
Normal file
38
assets/js/common/notifications.js
Normal file
@ -0,0 +1,38 @@
|
||||
/**
|
||||
* Notification system
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
ComunicWeb.common.notificationSystem = {
|
||||
|
||||
/**
|
||||
* Display a notification
|
||||
*
|
||||
* @param {String} message The message to show on the screen
|
||||
* @param {String} notifType Specify the notification type (info, error, success)
|
||||
* @param {Integer} notifDuration Optionnal, specify how much time the message will appear in seconds
|
||||
* @param {String} notifTitle The title of the notification
|
||||
*/
|
||||
showNotification: function(message, notifType, notifDuration, notifTitle){
|
||||
|
||||
//Check if a notification type was specified
|
||||
if(!notifType){
|
||||
notifType = "info";
|
||||
}
|
||||
|
||||
//Check if a notification duration was specified
|
||||
if(!notifDuration){
|
||||
notifDuration = 4;
|
||||
}
|
||||
|
||||
//Check if a notification title was specified
|
||||
if(!notifTitle){
|
||||
notifTitle = "";
|
||||
}
|
||||
|
||||
//DEV - show an alert while no notif system is implemented
|
||||
alert("notif " + notifType + ": " + message);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user