2015-12-13 22:17:56 +00:00
|
|
|
var notifBar = document.getElementById('NOTIFBAR');
|
|
|
|
notifBar.children[1].children[2].addEventListener('click', function(e){
|
|
|
|
remClass(notifBar, 'active');
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-09 10:48:42 +00:00
|
|
|
/* [1] On récupère les 2 <select> de création de RDV
|
|
|
|
===============================================================*/
|
|
|
|
var newRDVPatient = document.getElementById('newRDVPatient');
|
|
|
|
var newRDVMedecin = document.getElementById('newRDVMedecin');
|
|
|
|
|
|
|
|
/* [2] Si on a récupéré les 2 <select>, on créé l'évènement de selection dynamique
|
|
|
|
===============================================================*/
|
|
|
|
if( newRDVPatient != null && newRDVMedecin != null ){
|
|
|
|
|
|
|
|
/* [1] On selectionne dynamiquement le médecin traitant associé
|
|
|
|
=======================================================================*/
|
|
|
|
newRDVPatient.addEventListener('change', function(e){
|
|
|
|
var child = document.querySelector("#newRDVPatient > option[value='"+newRDVPatient.value+"'][data-medecin]");
|
2015-12-08 07:17:46 +00:00
|
|
|
|
2015-12-09 10:48:42 +00:00
|
|
|
// on selectionne le medecin associé
|
|
|
|
newRDVMedecin.value = child.dataset.medecin;
|
|
|
|
addClass(newRDVMedecin, 'associated');
|
|
|
|
}, false);
|
2015-12-08 07:17:46 +00:00
|
|
|
|
|
|
|
|
2015-12-09 10:48:42 +00:00
|
|
|
// [1] On met en valeur le médecin traitant associé (class=associated)
|
|
|
|
// =======================================================================
|
|
|
|
newRDVMedecin.addEventListener('change', function(e){
|
|
|
|
var child = document.querySelector("#newRDVPatient > option[value='"+newRDVPatient.value+"'][data-medecin]");
|
|
|
|
if( newRDVMedecin.value == child.dataset.medecin ) // si c'est le medecin traitant, on met en valeur l'association
|
|
|
|
addClass(newRDVMedecin, 'associated');
|
|
|
|
else
|
|
|
|
remClass(newRDVMedecin, 'associated');
|
2015-12-08 07:50:30 +00:00
|
|
|
|
2015-12-09 10:48:42 +00:00
|
|
|
}, false);
|
|
|
|
}
|
2015-12-08 07:17:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
/* VERIFICATION DES CHAMPS */
|
|
|
|
var inCk = new inputChecker();
|
|
|
|
var inDate = document.getElementById('inDate');
|
|
|
|
var inHeure = document.getElementById('inHeure');
|
|
|
|
var inSecu = document.getElementById('inSecu');
|
2015-12-10 11:23:22 +00:00
|
|
|
var sbCreer = document.getElementById('sbCreer');
|
2015-12-08 22:24:22 +00:00
|
|
|
|
|
|
|
// format de date simplifié
|
2015-12-09 10:48:42 +00:00
|
|
|
var dateFormat = new formatChecker(null,
|
|
|
|
'Ji/Mi/2iii', { 'J': '[0-3]', 'M': '[0-1]' }
|
2015-12-08 22:24:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// format de temps simplifié
|
2015-12-09 10:48:42 +00:00
|
|
|
var timeFormat = new formatChecker(null,
|
|
|
|
'Hi:Mi', { 'H': '[0-2]', 'M': '[0-6]' }
|
2015-12-08 22:24:22 +00:00
|
|
|
);
|
|
|
|
// format numéro SECU simplifié
|
2015-12-09 10:48:42 +00:00
|
|
|
var secuFormat = new formatChecker(null,
|
2015-12-09 11:28:04 +00:00
|
|
|
'S ii Mi ii iii iii ii', { 'S': '[0-1]', 'M': '[0-1]' }
|
2015-12-08 22:24:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var now = new Date();
|
2015-12-10 09:56:35 +00:00
|
|
|
inCk.append( inDate, dateFormat, '01/01/2015' );
|
|
|
|
inCk.append( inHeure, timeFormat, '23:59' );
|
|
|
|
inCk.append( inSecu, secuFormat, inSecu.placeholder );
|
2015-12-08 22:24:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
inDate.addEventListener('keyup', function(e){
|
|
|
|
if( inCk.check(inDate) ) addClass(inDate, 'validated'); // on active la classe si correct
|
|
|
|
else{ // si incorrect
|
|
|
|
remClass(inDate, 'validated'); // on désactive la classe
|
|
|
|
inCk.correct(inDate, false); // on corrige partiellement
|
|
|
|
if( inCk.check(inDate) ) addClass(inDate, 'validated'); // mise à jour de la classe après correction
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
|
|
|
|
|
|
|
|
inHeure.addEventListener('keyup', function(e){
|
|
|
|
if( inCk.check(inHeure) ) addClass(inHeure, 'validated'); // on active la classe
|
|
|
|
else{ // si incorrect
|
|
|
|
remClass(inHeure, 'validated'); // on désactive la classe
|
|
|
|
inCk.correct(inHeure, false); // on corrige partiellement
|
|
|
|
if( inCk.check(inHeure) ) addClass(inHeure, 'validated'); // mise à jour de la classe après correction
|
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
|
2015-12-09 12:35:43 +00:00
|
|
|
inDuree.addEventListener('keyup', function(e){
|
|
|
|
if( !isNaN(parseInt(inDuree.value)) ){
|
|
|
|
inDuree.value = parseInt( inDuree.value ); // on caste en <int>
|
|
|
|
addClass(inDuree, 'validated'); // on active la classe si correct
|
|
|
|
}else // si incorrect
|
|
|
|
remClass(inDuree, 'validated'); // on désactive la classe
|
|
|
|
}, false);
|
|
|
|
|
2015-12-09 11:28:04 +00:00
|
|
|
function checkSecuControlKey(pNumSecu){
|
|
|
|
var NIR = pNumSecu.slice(0,-2).replace(/ /g, '');
|
|
|
|
var key = pNumSecu.slice(-2);
|
|
|
|
|
|
|
|
return 97-(NIR%97) == key;
|
|
|
|
}
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
inSecu.addEventListener('keyup', function(e){
|
2015-12-09 11:28:04 +00:00
|
|
|
if( inCk.check(inSecu) ){
|
|
|
|
|
|
|
|
if( checkSecuControlKey(inSecu.value) ){ // si la clé est correcte
|
|
|
|
addClass(inSecu, 'validated'); // on dis que le champ est valide
|
|
|
|
remClass(inSecu, 'invalid'); // on dis qu'il n'est pas invalide
|
|
|
|
}else{
|
|
|
|
remClass(inSecu, 'validated'); // on dis que le champ n'est pas valide
|
|
|
|
addClass(inSecu, 'invalid'); // on dis qu'il est invalide
|
|
|
|
}
|
|
|
|
|
|
|
|
}else{ // si incorrect
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
remClass(inSecu, 'validated'); // on désactive la classe
|
2015-12-09 11:28:04 +00:00
|
|
|
remClass(inSecu, 'invalid'); // on dis qu'il n'est pas invalide
|
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
inCk.correct(inSecu, false); // on corrige partiellement
|
2015-12-09 11:28:04 +00:00
|
|
|
if( inCk.check(inSecu) ){
|
|
|
|
|
|
|
|
if( checkSecuControlKey(inSecu.value) ){ // si la clé est correcte
|
|
|
|
addClass(inSecu, 'validated'); // on dis que le champ est valide
|
|
|
|
remClass(inSecu, 'invalid'); // on dis qu'il n'est pas invalide
|
|
|
|
}else{
|
|
|
|
remClass(inSecu, 'validated'); // on dis que le champ n'est pas valide
|
|
|
|
addClass(inSecu, 'invalid'); // on dis qu'il est invalide
|
|
|
|
}
|
|
|
|
}
|
2015-12-08 07:17:46 +00:00
|
|
|
}
|
2015-12-08 22:24:22 +00:00
|
|
|
}, false);
|
|
|
|
|
2015-12-08 07:17:46 +00:00
|
|
|
|
2015-12-08 22:24:22 +00:00
|
|
|
// inDate.value = 'x3 F3/a8';
|
|
|
|
// inHeure.value = 'x3 F3/a8';
|
2015-12-10 11:23:22 +00:00
|
|
|
inSecu.value = '1 96 01 31 555 861';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////
|
|
|
|
// VERIFICATION DU SUBMIT() //
|
|
|
|
//////////////////////////////
|
|
|
|
sbCreer.addEventListener('click', function(e){
|
|
|
|
e.preventDefault(); // on annule le submit()
|
|
|
|
|
|
|
|
var formElements = sbCreer.parentNode.children;
|
|
|
|
var checker = true;
|
|
|
|
|
|
|
|
// pour chaque <input type='text'> du formulaire (fils direct uniquement)
|
|
|
|
for( var i = 0 ; i < formElements.length ; i++ ){ if( formElements[i] instanceof HTMLInputElement && formElements[i].type == 'text' ){
|
|
|
|
// si le champ est requis (required)
|
|
|
|
if( formElements[i].required )
|
|
|
|
checker = checker && formElements[i].className.indexOf('validated') > -1; // TRUE => validé (niveau interface)
|
|
|
|
// si le champ n'est pas requis et pas vide, on le vide
|
|
|
|
else if( formElements[i].value != '' && formElements[i].className.indexOf('validated') < 0 ) // si incorrect et pas vide
|
|
|
|
formElements[i].value = ''; // on vide
|
|
|
|
}}
|
|
|
|
|
|
|
|
var inputCheckerValid = inCk.check(inDate) && inCk.check(inHeure);
|
|
|
|
var selectNoDefault = newRDVPatient.value != '*' && newRDVMedecin.value != '*';
|
|
|
|
|
|
|
|
console.log( inputCheckerValid );
|
|
|
|
console.log( checker );
|
|
|
|
console.log( selectNoDefault );
|
|
|
|
|
|
|
|
|
|
|
|
if( inputCheckerValid && checker && selectNoDefault ) // si tout es ok uniquement, on submit()
|
|
|
|
sbCreer.parentNode.submit();
|
|
|
|
}, false);
|