3120 |
delphine |
1 |
/**
|
|
|
2 |
* Constructeur WidgetSaisie par défaut
|
|
|
3 |
*/
|
|
|
4 |
function WidgetSaisie() {
|
3287 |
idir |
5 |
this.urlBaseAuth = window.location.origin + '/service:annuaire:auth';
|
|
|
6 |
this.mode = 'prod';
|
3260 |
idir |
7 |
this.langue = 'fr';
|
|
|
8 |
this.obsNbre = 0;
|
|
|
9 |
this.nbObsEnCours = 1;
|
|
|
10 |
this.totalObsATransmettre = 0;
|
|
|
11 |
this.nbObsTransmises = 0;
|
|
|
12 |
this.debug = null;
|
|
|
13 |
this.html5 = null;
|
|
|
14 |
this.tagProjet = null;
|
|
|
15 |
this.tagImg = null;
|
|
|
16 |
this.tagObs = null;
|
|
|
17 |
this.separationTagImg = null;
|
|
|
18 |
this.separationTagObs = null;
|
|
|
19 |
this.obsId = null;
|
|
|
20 |
this.serviceSaisieUrl = null;
|
|
|
21 |
this.serviceObsUrl = null;
|
|
|
22 |
this.nomSciReferentiel = null;
|
|
|
23 |
this.especeImposee = false;
|
|
|
24 |
this.infosEspeceImposee = null;
|
|
|
25 |
this.isTaxonListe = false;
|
|
|
26 |
this.autocompletionElementsNbre = null;
|
|
|
27 |
this.referentielImpose = null;
|
|
|
28 |
this.serviceAutocompletionNomSciUrl = null;
|
|
|
29 |
this.serviceAutocompletionNomSciUrlTpl = null;
|
|
|
30 |
this.obsMaxNbre = null;
|
|
|
31 |
this.dureeMessage = null;
|
|
|
32 |
this.serviceAnnuaireIdUrl = null;
|
|
|
33 |
this.serviceNomCommuneUrl = null;
|
|
|
34 |
this.serviceNomCommuneUrlAlt = null;
|
|
|
35 |
this.chargementImageIconeUrl = null;
|
|
|
36 |
this.pasDePhotoIconeUrl = null;
|
3271 |
idir |
37 |
this.observer = null;
|
3240 |
idir |
38 |
|
3260 |
idir |
39 |
// système de traduction minimaliste
|
|
|
40 |
this.msgs = {
|
|
|
41 |
fr: {
|
|
|
42 |
'format-non-supporte': 'Le format de fichier n\'est pas supporté, les formats acceptés sont',
|
|
|
43 |
'date-incomplete': 'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.',
|
|
|
44 |
'observations-transmises': 'observations transmises',
|
|
|
45 |
'taxon-ou-image' : 'Veuillez transmettre au moins, soit une image, soit une espèce',
|
|
|
46 |
'supprimer-observation-liste': 'Supprimer cette observation de la liste à transmettre',
|
|
|
47 |
'milieu': 'Milieu',
|
|
|
48 |
'commentaires': 'Commentaires',
|
|
|
49 |
'erreur-inconnue': 'Erreur inconnue',
|
|
|
50 |
'non-lie-au-ref': 'non lié au référentiel',
|
|
|
51 |
'obs-le': 'le',
|
|
|
52 |
'quitter-page' : 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.',
|
|
|
53 |
'courriel-connu' : 'Un compte existe pour ce courriel, connectez-vous pour saisir votre observation',
|
|
|
54 |
'obs-numero' : 'Observation n°',
|
|
|
55 |
'erreur-ajax' : 'Erreur Ajax',
|
|
|
56 |
'erreur' : 'Erreur',
|
|
|
57 |
'erreur-chargement' : 'Erreur lors du chargement de l\'observation',
|
|
|
58 |
'lieu-obs' : 'observé à',
|
|
|
59 |
'lieu-dit' : 'Lieu-dit',
|
|
|
60 |
'station' : 'Station'
|
|
|
61 |
},
|
|
|
62 |
en: {
|
|
|
63 |
'format-non-supporte': 'The file format is not supported, the accepted formats are',
|
|
|
64 |
'date-incomplete': 'Format: dd / mm / yyyy. Incomplete date, use 0, example: 00/12/2011.',
|
|
|
65 |
'observations-transmises': 'observations transmitted',
|
|
|
66 |
'taxon-ou-image' : 'Please transmit at least one image or one species',
|
|
|
67 |
'supprimer-observation-liste': 'Delete this observation from the list to be transmitted',
|
|
|
68 |
'milieu': 'Environment',
|
|
|
69 |
'commentaires': 'Comments',
|
|
|
70 |
'erreur-inconnue': 'Unknown error',
|
|
|
71 |
'non-lie-au-ref': 'unrelated to the referencial ',
|
|
|
72 |
'obs-le': 'the',
|
|
|
73 |
'quitter-page' : 'Are you sure you want to leave the page?\nThe observations entered but not transmitted will be lost.',
|
|
|
74 |
'courriel-connu' : 'An account exists for this email, log in to enter your observation',
|
|
|
75 |
'obs-numero' : 'Observation number ',
|
|
|
76 |
'erreur-ajax' : 'Ajax Error',
|
|
|
77 |
'erreur' : 'Error',
|
|
|
78 |
'erreur-chargement' : 'Error loading the observation',
|
|
|
79 |
'lieu-obs' : 'observed at',
|
|
|
80 |
'lieu-dit' : 'Locality',
|
|
|
81 |
'station' : 'Place'
|
|
|
82 |
}
|
|
|
83 |
};
|
3120 |
delphine |
84 |
}
|
|
|
85 |
|
|
|
86 |
/**
|
|
|
87 |
* Initialisation du widget
|
|
|
88 |
*/
|
|
|
89 |
WidgetSaisie.prototype.init = function() {
|
3260 |
idir |
90 |
this.initForm();
|
|
|
91 |
this.initEvts();
|
3120 |
delphine |
92 |
};
|
|
|
93 |
|
|
|
94 |
/**
|
|
|
95 |
* Initialise le formulaire, les validateurs, les listes de complétion...
|
|
|
96 |
*/
|
|
|
97 |
WidgetSaisie.prototype.initForm = function() {
|
|
|
98 |
|
3260 |
idir |
99 |
var lthis = this;
|
3287 |
idir |
100 |
|
|
|
101 |
this.chargerStatutSSO();
|
|
|
102 |
|
3260 |
idir |
103 |
if ( valeurOk( this.obsId ) ) {
|
|
|
104 |
this.chargerInfoObs();
|
|
|
105 |
}
|
3120 |
delphine |
106 |
|
3260 |
idir |
107 |
if( this.isTaxonListe ) {
|
|
|
108 |
this.surChangementTaxonListe();
|
|
|
109 |
$( '#taxon-liste' ).on( 'change', lthis.surChangementTaxonListe );
|
|
|
110 |
$( '#taxon-liste' ).on( 'change', lthis.surChangementValeurTaxon.bind( lthis ) );
|
|
|
111 |
if ( this.debug ) {
|
|
|
112 |
console.log( 'Selected taxon:' + $( '#taxon-liste option:selected' ).val());
|
|
|
113 |
}
|
|
|
114 |
} else {
|
|
|
115 |
this.ajouterAutocompletionNoms();
|
|
|
116 |
}
|
|
|
117 |
// au rafraichissement de la page,
|
|
|
118 |
// les input date semblent conserver la valeur entrée précedemment
|
|
|
119 |
// c'est voulu après la création d'un obs mais pas quand la page est actualisée
|
|
|
120 |
// Déjà tenté: onbeforeunload avec un location.reload(true) n'a pas permis de le faire
|
|
|
121 |
$( 'input[type=date]' ).each( function () {
|
|
|
122 |
( valeurOk( $( this ).data( 'default' ) ) ) ? $( this ).val( $( this ).data( 'default' ) ) : $( this ).val( '' );
|
|
|
123 |
});
|
|
|
124 |
this.configurerFormValidator();
|
|
|
125 |
this.definirReglesFormValidator();
|
|
|
126 |
|
|
|
127 |
if( this.especeImposee ) {
|
3287 |
idir |
128 |
$( '#taxon' ).attr( 'disabled', 'disabled' );
|
|
|
129 |
$( '#taxon-input-groupe' ).attr( 'title', '' );
|
|
|
130 |
// Bricolage cracra pour avoir le nom retenu avec auteur (nom_retenu.libelle ne le mentionne pas)
|
|
|
131 |
var infosEspeceImposee = $.parseJSON( this.infosEspeceImposee );
|
|
|
132 |
nomRetenuComplet = infosEspeceImposee.nom_retenu_complet,
|
|
|
133 |
debutAnneRefBiblio = nomRetenuComplet.indexOf( ' [' );
|
|
|
134 |
if ( -1 !== debutAnneRefBiblio ) {
|
|
|
135 |
nomRetenuComplet = nomRetenuComplet.substr( 0, debutAnneRefBiblio );
|
|
|
136 |
}
|
|
|
137 |
// fin bricolage cracra
|
|
|
138 |
var infosAssociee = {
|
|
|
139 |
label : infosEspeceImposee.nom_sci_complet,
|
|
|
140 |
value : infosEspeceImposee.nom_sci_complet,
|
|
|
141 |
nt : infosEspeceImposee.num_taxonomique,
|
|
|
142 |
nomSel : infosEspeceImposee.nom_sci,
|
|
|
143 |
nomSelComplet : infosEspeceImposee.nom_sci_complet,
|
|
|
144 |
numNomSel : infosEspeceImposee.id,
|
|
|
145 |
nomRet : nomRetenuComplet,
|
|
|
146 |
numNomRet : infosEspeceImposee['nom_retenu.id'],
|
|
|
147 |
famille : infosEspeceImposee.famille,
|
|
|
148 |
retenu : ( 'false' === infosEspeceImposee.retenu ) ? false : true
|
|
|
149 |
};
|
|
|
150 |
$( '#taxon' ).data( infosAssociee );
|
3260 |
idir |
151 |
}
|
3120 |
delphine |
152 |
};
|
|
|
153 |
|
|
|
154 |
/**
|
|
|
155 |
* Initialise les écouteurs d'événements
|
|
|
156 |
*/
|
|
|
157 |
WidgetSaisie.prototype.initEvts = function() {
|
3260 |
idir |
158 |
var lthis = this;
|
3287 |
idir |
159 |
// Empêcher que le module carto ne bind ses events partout
|
3290 |
idir |
160 |
$( '#tb-geolocation' ).on( 'submit blur click focus mousedown mouseleave mouseup touchend touchstart change', '*', function( event ) {
|
3280 |
idir |
161 |
event.preventDefault();
|
|
|
162 |
return false;
|
|
|
163 |
});
|
3287 |
idir |
164 |
|
3260 |
idir |
165 |
// identité
|
3292 |
idir |
166 |
$( '#bouton-inscription' ).attr( 'href', this.urlSiteTb() + 'inscription' );
|
3287 |
idir |
167 |
$( '#deconnexion a' ).click( function( event ) {
|
|
|
168 |
event.preventDefault();
|
|
|
169 |
lthis.deconnecterUtilisateur();
|
|
|
170 |
});
|
3274 |
idir |
171 |
$( '#bouton-anonyme' ).on( 'click', function( event ) {
|
|
|
172 |
arreter( event );
|
3260 |
idir |
173 |
$( this ).css({
|
|
|
174 |
'background-color': 'rgba(0, 159, 184, 0.7)',
|
|
|
175 |
'color': '#fff'
|
|
|
176 |
});
|
|
|
177 |
$( '#anonyme' ).removeClass( 'hidden' );
|
|
|
178 |
$( '#courriel' ).focus();
|
|
|
179 |
});
|
|
|
180 |
if ( '' === $( '#nom-complet').text() ) {
|
3287 |
idir |
181 |
$( '#courriel' ).on( 'blur', this.requeterIdentiteCourriel.bind( this ) );
|
3260 |
idir |
182 |
$( '#courriel' ).on( 'keypress', this.testerLancementRequeteIdentite.bind( this ) );
|
|
|
183 |
}
|
|
|
184 |
$( '#prenom' ).on( 'change', this.formaterPrenom );
|
|
|
185 |
$( '#nom' ).on( 'change', this.formaterNom );
|
|
|
186 |
$( '#courriel_confirmation' ).on( 'paste', this.bloquerCopierCollerCourriel.bind( this ) );
|
3208 |
idir |
187 |
|
3260 |
idir |
188 |
// Sur téléchargement image
|
|
|
189 |
$( '#fichier' ).on( 'change', function ( e ) {
|
|
|
190 |
arreter( e );
|
|
|
191 |
var options = {
|
|
|
192 |
success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
|
|
|
193 |
dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
|
|
|
194 |
resetForm: true // reset the form after successful submit
|
|
|
195 |
};
|
|
|
196 |
$( '#miniature' ).append( '<img id="miniature-chargement" class="miniature" alt="chargement" src="' + this.chargementImageIconeUrl + '"/>' );
|
|
|
197 |
$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
|
|
|
198 |
if( lthis.verifierFormat( $( '#fichier' ).val() ) ) {
|
|
|
199 |
$( '#form-upload' ).ajaxSubmit( options );
|
|
|
200 |
} else {
|
|
|
201 |
$( '#form-upload' )[0].reset();
|
|
|
202 |
window.alert( lthis.msgTraduction( 'format-non-supporte' ) + ' ' + $( '#fichier' ).attr( 'accept' ) );
|
|
|
203 |
}
|
|
|
204 |
return false;
|
|
|
205 |
});
|
3208 |
idir |
206 |
|
3260 |
idir |
207 |
$( 'body' ).on( 'click', '.effacer-miniature', function() {
|
|
|
208 |
$( this ).parent().remove();
|
|
|
209 |
});
|
3208 |
idir |
210 |
|
3260 |
idir |
211 |
$( '#referentiel' ).on( 'change', this.surChangementReferentiel.bind( this ) );
|
3208 |
idir |
212 |
|
3260 |
idir |
213 |
$( '#ajouter-obs' ).on( 'click', this.ajouterObs.bind( this ) );
|
|
|
214 |
$( '.obs-nbre' ).on( 'changement', this.surChangementNbreObs.bind( this ) );
|
3208 |
idir |
215 |
|
3260 |
idir |
216 |
$( 'body' ).on( 'click', '.defilement-miniatures-gauche', function( event ) {
|
|
|
217 |
event.preventDefault();
|
|
|
218 |
lthis.defilerMiniatures( $( this ) );
|
|
|
219 |
});
|
|
|
220 |
$( 'body' ).on( 'click', '.defilement-miniatures-droite', function( event ) {
|
|
|
221 |
event.preventDefault();
|
|
|
222 |
lthis.defilerMiniatures( $( this ) );
|
|
|
223 |
});
|
|
|
224 |
$( 'body' ).on( 'click', '.supprimer-obs', function() {
|
|
|
225 |
var that = this,
|
|
|
226 |
suppObs = lthis.supprimerObs.bind( lthis );
|
|
|
227 |
// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
|
|
|
228 |
suppObs( that );
|
|
|
229 |
});
|
3208 |
idir |
230 |
|
3260 |
idir |
231 |
$( '#transmettre-obs' ).on( 'click', this.transmettreObs.bind( this ) );
|
3120 |
delphine |
232 |
|
3260 |
idir |
233 |
// Alertes et tooltips
|
|
|
234 |
$( '.alert .close' ).on( 'click', this.fermerPanneauAlert );
|
|
|
235 |
$( '#btn-aide' ).on( 'click', this.basculerAffichageAide );
|
|
|
236 |
$( '.has-tooltip' ).tooltip( 'enable' );
|
3120 |
delphine |
237 |
};
|
|
|
238 |
|
3260 |
idir |
239 |
// Identité Observateur *******************************************************/
|
3287 |
idir |
240 |
/**
|
|
|
241 |
* Interroge le SSO pour connaître le statut de l'utilisateur, et change le menu
|
|
|
242 |
* à droite de la barre en fonction
|
|
|
243 |
*/
|
|
|
244 |
WidgetSaisie.prototype.chargerStatutSSO = function() {
|
|
|
245 |
$( '#form-observateur' )[0].reset();
|
3260 |
idir |
246 |
var lthis = this;
|
3287 |
idir |
247 |
|
|
|
248 |
var urlAuth = this.urlBaseAuth + '/identite';
|
|
|
249 |
|
|
|
250 |
if( 'local' !== this.mode ) {
|
|
|
251 |
this.connexion( urlAuth, true );
|
|
|
252 |
} else {
|
|
|
253 |
urlAuth = window.location.origin + '/widget:cel:modules/saisie2/test-token.json';
|
|
|
254 |
$( '#connexion' ).click( function( event ) {
|
|
|
255 |
event.preventDefault();
|
|
|
256 |
lthis.connexion( urlAuth, true );
|
|
|
257 |
});
|
|
|
258 |
}
|
|
|
259 |
};
|
|
|
260 |
|
|
|
261 |
/**
|
|
|
262 |
* Déconnecte l'utilisateur du SSO
|
|
|
263 |
*/
|
|
|
264 |
WidgetSaisie.prototype.deconnecterUtilisateur = function() {
|
|
|
265 |
if( 'local' === this.mode ) {
|
|
|
266 |
this.definirUtilisateur();
|
|
|
267 |
window.location.reload();
|
|
|
268 |
return;
|
|
|
269 |
}
|
|
|
270 |
|
|
|
271 |
var urlAuth = this.urlBaseAuth + '/deconnexion';
|
|
|
272 |
|
|
|
273 |
this.connexion( urlAuth, false );
|
|
|
274 |
};
|
|
|
275 |
|
|
|
276 |
WidgetSaisie.prototype.connexion = function( urlAuth, connexionOnOff ) {
|
|
|
277 |
var lthis = this;
|
|
|
278 |
$.ajax({
|
|
|
279 |
url: urlAuth,
|
|
|
280 |
type: "GET",
|
|
|
281 |
dataType: 'json',
|
|
|
282 |
xhrFields: {
|
|
|
283 |
withCredentials: true
|
|
|
284 |
}
|
|
|
285 |
})
|
|
|
286 |
.done( function( data ) {
|
|
|
287 |
if( connexionOnOff ) {
|
|
|
288 |
// connecté
|
|
|
289 |
lthis.definirUtilisateur( data.token );
|
|
|
290 |
} else {
|
|
|
291 |
lthis.definirUtilisateur();
|
|
|
292 |
window.location.reload();
|
|
|
293 |
}
|
|
|
294 |
})
|
|
|
295 |
.fail( function( error ) {
|
|
|
296 |
// @TODO gérer l'affichage de l'erreur, mais pas facile à placer
|
|
|
297 |
// dans l'interface actuelle sans que ce soit moche
|
|
|
298 |
//afficherErreurServeur();
|
|
|
299 |
});
|
|
|
300 |
}
|
|
|
301 |
|
|
|
302 |
WidgetSaisie.prototype.definirUtilisateur = function( jeton ) {
|
|
|
303 |
var idUtilisateur = '',
|
|
|
304 |
nomComplet = '',
|
|
|
305 |
courriel = '',
|
|
|
306 |
pseudo = '',
|
|
|
307 |
prenom = '',
|
|
|
308 |
nom = '';
|
|
|
309 |
|
|
|
310 |
// affichage
|
|
|
311 |
if ( undefined !== jeton ) {
|
|
|
312 |
// décodage jeton
|
|
|
313 |
var jetonDecode = this.decoderJeton( jeton );
|
|
|
314 |
// console.log(jetonDecode);
|
|
|
315 |
|
|
|
316 |
idUtilisateur = jetonDecode.id;
|
|
|
317 |
nomComplet = jetonDecode.intitule;
|
|
|
318 |
courriel = jetonDecode.sub;
|
|
|
319 |
pseudo = jetonDecode.pseudo;
|
|
|
320 |
prenom = jetonDecode.prenom;
|
|
|
321 |
nom = jetonDecode.nom;
|
|
|
322 |
$( '#courriel, #courriel_confirmation' ).attr( 'disabled', 'disabled' );
|
|
|
323 |
$( '#prenom' ).attr( 'disabled', 'disabled' );
|
|
|
324 |
$( '#nom' ).attr( 'disabled', 'disabled' );
|
|
|
325 |
$( '#bouton-connexion, #creation-compte' ).addClass( 'hidden' );
|
|
|
326 |
$( '#utilisateur-connecte, #anonyme, #zone-courriel-confirmation, #zone-prenom-nom' ).removeClass( 'hidden' );
|
|
|
327 |
$( '#date-releve' ).focus();
|
|
|
328 |
}
|
|
|
329 |
$( '.warning' ).remove();
|
|
|
330 |
$( '#nom-complet' ).html( nomComplet );
|
|
|
331 |
$( '#courriel, #courriel_confirmation' ).val( courriel );
|
3292 |
idir |
332 |
$( '#profil-utilisateur a' ).attr( 'href', this.urlSiteTb() + 'membres/' + pseudo.toLowerCase().replace( ' ', '-' ) );
|
3287 |
idir |
333 |
$( '#id_utilisateur' ).val( idUtilisateur );
|
|
|
334 |
$( '#prenom' ).val( prenom );
|
|
|
335 |
$( '#nom' ).val( nom );
|
|
|
336 |
};
|
|
|
337 |
|
|
|
338 |
/**
|
|
|
339 |
* Décodage à l'arrache d'un jeton JWT, ATTENTION CONSIDERE QUE LE
|
|
|
340 |
* JETON EST VALIDE, ne pas décoder n'importe quoi - pas trouvé de lib simple
|
|
|
341 |
*/
|
|
|
342 |
WidgetSaisie.prototype.decoderJeton = function( jeton ) {
|
|
|
343 |
parts = jeton.split( '.' );
|
|
|
344 |
payload = parts[1];
|
|
|
345 |
payload = this.b64d( payload );
|
|
|
346 |
payload = JSON.parse( payload, true );
|
|
|
347 |
return payload;
|
|
|
348 |
};
|
|
|
349 |
|
|
|
350 |
/**
|
|
|
351 |
* Décodage "url-safe" des chaînes base64 retournées par le SSO (lib jwt)
|
|
|
352 |
*/
|
|
|
353 |
WidgetSaisie.prototype.b64d = function( input ) {
|
|
|
354 |
var remainder = input.length % 4;
|
|
|
355 |
|
|
|
356 |
if ( 0 !== remainder ) {
|
|
|
357 |
var padlen = 4 - remainder;
|
|
|
358 |
|
|
|
359 |
for ( var i = 0; i < padlen; i++ ) {
|
|
|
360 |
input += '=';
|
|
|
361 |
}
|
|
|
362 |
}
|
|
|
363 |
input = input.replace( '-', '+' );
|
|
|
364 |
input = input.replace( '_', '/' );
|
|
|
365 |
return atob( input );
|
|
|
366 |
};
|
|
|
367 |
|
3292 |
idir |
368 |
WidgetSaisie.prototype.urlSiteTb = function() {
|
3291 |
idir |
369 |
var urlPart = ( 'test' === this.mode ) ? '/test/' : '/';
|
3287 |
idir |
370 |
|
3292 |
idir |
371 |
return window.location.origin + urlPart;
|
3287 |
idir |
372 |
};
|
|
|
373 |
|
|
|
374 |
// Identité Observateur par courriel
|
|
|
375 |
WidgetSaisie.prototype.requeterIdentiteCourriel = function() {
|
|
|
376 |
var lthis = this;
|
3260 |
idir |
377 |
var courriel = $( '#courriel' ).val();
|
|
|
378 |
var urlAnnuaire = this.serviceAnnuaireIdUrl + courriel;
|
|
|
379 |
if ( valeurOk( courriel ) ) {
|
|
|
380 |
$.ajax({
|
|
|
381 |
url : urlAnnuaire,
|
|
|
382 |
type : 'GET',
|
|
|
383 |
success : function( data, textStatus, jqXHR ) {
|
|
|
384 |
if ( lthis.debug ) {
|
|
|
385 |
console.log( 'SUCCESS: ' + textStatus );
|
|
|
386 |
}
|
|
|
387 |
if ( valeurOk( data ) && valeurOk( data[courriel] ) ) {
|
|
|
388 |
var infos = data[courriel];
|
|
|
389 |
lthis.surSuccesCompletionCourriel( infos, courriel );
|
|
|
390 |
} else {
|
|
|
391 |
lthis.surErreurCompletionCourriel();
|
|
|
392 |
}
|
|
|
393 |
},
|
|
|
394 |
error : function( jqXHR, textStatus, errorThrown ) {
|
|
|
395 |
if ( lthis.debug ) {
|
|
|
396 |
console.log( 'ERREUR: '+ textStatus );
|
|
|
397 |
}
|
|
|
398 |
lthis.surErreurCompletionCourriel();
|
|
|
399 |
},
|
|
|
400 |
complete : function( jqXHR, textStatus ) {
|
|
|
401 |
if ( lthis.debug ) {
|
|
|
402 |
console.log( 'COMPLETE: '+ textStatus );
|
|
|
403 |
}
|
|
|
404 |
}
|
|
|
405 |
});
|
|
|
406 |
}
|
3120 |
delphine |
407 |
};
|
|
|
408 |
|
3274 |
idir |
409 |
// se déclanche quand on choisit "Observation sans inscription" mais que le mail entré est incrit à Tela
|
3260 |
idir |
410 |
WidgetSaisie.prototype.surSuccesCompletionCourriel = function( infos, courriel ) {
|
3274 |
idir |
411 |
if ( $( '#utilisateur-connecte' ).hasClass( 'hidden' ) ) {// si quelque chose a foiré après actualisation
|
3276 |
idir |
412 |
if ( !valeurOk( $( '#warning-identite' ) ) ) {
|
3275 |
idir |
413 |
$( '#zone-courriel' ).before( '<p id="warning-identite" class="warning"><i class="fas fa-exclamation-triangle"></i> ' + this.msgTraduction( 'courriel-connu' ) + '</p>' );
|
|
|
414 |
}
|
3274 |
idir |
415 |
$( '#bouton-inscription, #zone-prenom-nom, #zone-courriel-confirmation' ).addClass( 'hidden' );
|
|
|
416 |
$( '#prenom, #nom, #courriel_confirmation' ).attr( 'disabled', 'disabled' );
|
|
|
417 |
$( '.nav.control-group' ).addClass( 'error' );
|
|
|
418 |
}
|
3120 |
delphine |
419 |
};
|
|
|
420 |
|
3274 |
idir |
421 |
// se déclanche quand on choisit "Observation sans inscription" et qu'effectivement le mail n'est pas connu de Tela
|
3260 |
idir |
422 |
WidgetSaisie.prototype.surErreurCompletionCourriel = function() {
|
|
|
423 |
$( '#creation-compte, #zone-prenom-nom, #zone-courriel-confirmation' ).removeClass( 'hidden' );
|
3275 |
idir |
424 |
$( '#warning-identite' ).remove();
|
3274 |
idir |
425 |
$( '.nav.control-group' ).removeClass( 'error' );
|
3120 |
delphine |
426 |
|
3260 |
idir |
427 |
$( '#prenom, #nom, #courriel_confirmation' ).val( '' );
|
|
|
428 |
$( '#prenom, #nom, #courriel_confirmation' ).removeAttr( 'disabled' );
|
3120 |
delphine |
429 |
};
|
|
|
430 |
|
3208 |
idir |
431 |
WidgetSaisie.prototype.testerLancementRequeteIdentite = function( event ) {
|
3260 |
idir |
432 |
if ( valeurOk( event.which, true, 13 ) ) {
|
3287 |
idir |
433 |
this.requeterIdentiteCourriel();
|
3260 |
idir |
434 |
event.preventDefault();
|
|
|
435 |
event.stopPropagation();
|
|
|
436 |
}
|
3120 |
delphine |
437 |
};
|
|
|
438 |
|
3260 |
idir |
439 |
WidgetSaisie.prototype.formaterNom = function() {
|
|
|
440 |
$( this ).val( $( this ).val().toUpperCase() );
|
3120 |
delphine |
441 |
};
|
|
|
442 |
|
3260 |
idir |
443 |
WidgetSaisie.prototype.formaterPrenom = function() {
|
|
|
444 |
var prenom = new Array(),
|
|
|
445 |
mots = $( this ).val().split( ' ' ),
|
|
|
446 |
motsLength = mots.length;
|
3120 |
delphine |
447 |
|
3260 |
idir |
448 |
for ( var i = 0; i < motsLength; i++ ) {
|
|
|
449 |
var mot = mots[i];
|
|
|
450 |
if ( 0 <= mot.indexOf( '-' ) ) {
|
|
|
451 |
var prenomCompose = new Array(),
|
|
|
452 |
motsComposes = mot.split( '-' )
|
|
|
453 |
motsComposesLength = motsComposes.length;
|
|
|
454 |
for ( var j = 0; j < motsComposesLength; j++ ) {
|
|
|
455 |
var motSimple = motsComposes[j],
|
|
|
456 |
motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
|
3208 |
idir |
457 |
|
3260 |
idir |
458 |
prenomCompose.push( motMajuscule );
|
|
|
459 |
}
|
|
|
460 |
prenom.push( prenomCompose.join( '-' ) );
|
|
|
461 |
} else {
|
|
|
462 |
var motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
|
|
|
463 |
prenom.push( motMajuscule );
|
|
|
464 |
}
|
|
|
465 |
}
|
|
|
466 |
$( this ).val( prenom.join( ' ' ) );
|
3120 |
delphine |
467 |
};
|
|
|
468 |
|
3260 |
idir |
469 |
WidgetSaisie.prototype.bloquerCopierCollerCourriel = function() {
|
|
|
470 |
this.afficherPanneau( '#dialogue-bloquer-copier-coller' );
|
|
|
471 |
return false;
|
3208 |
idir |
472 |
};
|
|
|
473 |
|
3260 |
idir |
474 |
// Préchargement des infos-obs ************************************************/
|
|
|
475 |
WidgetSaisie.prototype.chargerInfoObs = function() {
|
|
|
476 |
var urlObs = this.serviceObsUrl + '/' + this.obsId;
|
|
|
477 |
var lthis = this;
|
|
|
478 |
$.ajax({
|
|
|
479 |
url: urlObs,
|
|
|
480 |
type: 'GET',
|
|
|
481 |
success: function( data, textStatus, jqXHR ) {
|
|
|
482 |
if ( valeurOk( data ) ) {
|
|
|
483 |
lthis.prechargerForm( data );
|
|
|
484 |
} else {
|
|
|
485 |
lthis.surErreurChargementInfosObs.bind( lthis );
|
|
|
486 |
}
|
|
|
487 |
},
|
|
|
488 |
error: function( jqXHR, textStatus, errorThrown ) {
|
|
|
489 |
lthis.surErreurChargementInfosObs();
|
|
|
490 |
}
|
|
|
491 |
});
|
3120 |
delphine |
492 |
};
|
|
|
493 |
|
3260 |
idir |
494 |
// @TODO faire mieux que ça !
|
|
|
495 |
WidgetSaisie.prototype.surErreurChargementInfosObs = function() {
|
|
|
496 |
alert( this.msgTraduction( 'erreur-chargement' ) );
|
|
|
497 |
};
|
3208 |
idir |
498 |
|
3260 |
idir |
499 |
WidgetSaisie.prototype.prechargerForm = function( data ) {
|
3208 |
idir |
500 |
|
3260 |
idir |
501 |
$( '#milieu' ).val( data.milieu );
|
3208 |
idir |
502 |
|
3260 |
idir |
503 |
// $( '#carte-recherche' ).val( data.zoneGeo );
|
|
|
504 |
// $( '#commune-nom' ).text( data.zoneGeo );
|
3208 |
idir |
505 |
|
3260 |
idir |
506 |
// if( data.hasOwnProperty( 'codeZoneGeo' ) ) {
|
|
|
507 |
// // TODO: trouver un moyen qui fonctionne lorsqu'on aura d'autres référentiels que INSEE
|
|
|
508 |
// $( '#commune-code-insee' ).text( data.codeZoneGeo.replace( 'INSEE-C:', '' ) );
|
|
|
509 |
// }
|
3208 |
idir |
510 |
|
3260 |
idir |
511 |
// if( data.hasOwnProperty( 'latitude' ) && data.hasOwnProperty( 'longitude' ) ) {
|
|
|
512 |
// var latLng = new google.maps.LatLng( data.latitude, data.longitude );
|
|
|
513 |
// this.mettreAJourMarkerPosition( latLng );
|
|
|
514 |
// this.marker.setPosition( latLng );
|
|
|
515 |
// this.map.setCenter( latLng );
|
|
|
516 |
// this.map.setZoom( 16 );
|
|
|
517 |
// }
|
3120 |
delphine |
518 |
};
|
|
|
519 |
|
3260 |
idir |
520 |
// uniquement utilisé si taxon-liste ******************************************/
|
|
|
521 |
// Affiche/Cache le champ taxon
|
|
|
522 |
WidgetSaisie.prototype.surChangementTaxonListe = function() {
|
|
|
523 |
if ( valeurOk( $( '#taxon-liste' ).val() ) ) {
|
|
|
524 |
if ( 'autre' !== $( '#taxon-liste' ).val() ) {
|
3270 |
idir |
525 |
$( '#taxon-input-groupe' )
|
|
|
526 |
.hide( 200, function () {
|
|
|
527 |
$( this ).addClass( 'hidden' ).show();
|
|
|
528 |
})
|
|
|
529 |
.find( '#taxon-autre' ).val( '' );
|
3260 |
idir |
530 |
} else {
|
3270 |
idir |
531 |
$( '#taxon-input-groupe' )
|
|
|
532 |
.hide()
|
|
|
533 |
.removeClass( 'hidden' )
|
|
|
534 |
.show(200)
|
|
|
535 |
.find( '#taxon-autre' )
|
|
|
536 |
.on( 'change', function() {
|
|
|
537 |
if( !valeurOk( $( '#taxon-autre' ).data( 'numNomSel' ) ) ) {
|
|
|
538 |
$( '#taxon' ).val( $( '#taxon-autre' ).val() );
|
|
|
539 |
$( '#taxon' ).data( 'numNomSel', '' )
|
|
|
540 |
.data( 'nomRet','' )
|
|
|
541 |
.data( 'numNomRet', '' )
|
|
|
542 |
.data( 'nt', '' )
|
|
|
543 |
.data( 'famille', '' );
|
|
|
544 |
}
|
|
|
545 |
$( '#taxon' ).trigger( 'change' );
|
|
|
546 |
});
|
3260 |
idir |
547 |
}
|
|
|
548 |
}
|
3120 |
delphine |
549 |
};
|
|
|
550 |
|
3208 |
idir |
551 |
|
3260 |
idir |
552 |
WidgetSaisie.prototype.surChangementValeurTaxon = function() {
|
|
|
553 |
var numNomSel = 0;
|
|
|
554 |
|
|
|
555 |
if( valeurOk( $( '#taxon-liste' ).val() ) ) {
|
|
|
556 |
if( 'autre' === $( '#taxon-liste' ).val() ) {
|
|
|
557 |
this.ajouterAutocompletionNoms();
|
|
|
558 |
} else {
|
|
|
559 |
var optionRetenue = $( '#taxon-liste' ).find( 'option[value="' + $( '#taxon-liste' ).val() + '"]' );
|
|
|
560 |
// $( '#taxon' ).val( $( '#taxon-liste' ).val() );
|
|
|
561 |
$( '#taxon' ).val( $( '#taxon-liste' ).val() )
|
|
|
562 |
.data( 'value', $( '#taxon-liste' ).val() )
|
|
|
563 |
.data( 'numNomSel', optionRetenue.data( 'num-nom-sel' ) )
|
|
|
564 |
.data( 'nomRet', optionRetenue.data( 'nom-ret' ) )
|
|
|
565 |
.data( 'numNomRet', optionRetenue.data( 'num-nom-ret' ) )
|
|
|
566 |
.data( 'nt', optionRetenue.data( 'nt' ) )
|
|
|
567 |
.data( 'famille', optionRetenue.data( 'famille' ) );
|
3270 |
idir |
568 |
$( '#taxon' ).trigger( 'change' );
|
3260 |
idir |
569 |
|
|
|
570 |
numNomSel = $( '#taxon' ).data( 'numNomSel' );
|
|
|
571 |
// Si l'espèce est mal déterminée la certitude est "à déterminer"
|
|
|
572 |
if( !valeurOk( numNomSel ) ) {
|
|
|
573 |
$( '#certitude' ).find( 'option' ).each( function() {
|
|
|
574 |
if ( $( this ).hasClass( 'aDeterminer' ) ) {
|
|
|
575 |
$( this ).attr( 'selected', true );
|
|
|
576 |
} else {
|
|
|
577 |
$( this ).attr( 'selected', false );
|
|
|
578 |
}
|
|
|
579 |
});
|
|
|
580 |
}
|
|
|
581 |
}
|
|
|
582 |
}
|
3120 |
delphine |
583 |
};
|
|
|
584 |
|
3260 |
idir |
585 |
// Autocompletion taxons ******************************************************/
|
|
|
586 |
WidgetSaisie.prototype.ajouterAutocompletionNoms = function() {
|
|
|
587 |
var lthis = this;
|
3208 |
idir |
588 |
|
3260 |
idir |
589 |
var taxonSelecteur = '#taxon';
|
|
|
590 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
591 |
taxonSelecteur += '-autre';
|
|
|
592 |
}
|
|
|
593 |
$( taxonSelecteur ).autocomplete({
|
|
|
594 |
source: function( requete, add ) {
|
|
|
595 |
// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
|
|
|
596 |
requete = '';
|
|
|
597 |
if( valeurOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
|
|
|
598 |
var url = lthis.getUrlAutocompletionNomsSci();
|
|
|
599 |
$.getJSON( url, requete, function( data ) {
|
|
|
600 |
var suggestions = lthis.traiterRetourNomsSci( data );
|
|
|
601 |
add( suggestions );
|
3263 |
idir |
602 |
})
|
|
|
603 |
.fail( function() {
|
3287 |
idir |
604 |
$( '#certitude' ).find( 'option' ).each( function() {
|
3263 |
idir |
605 |
if ( $( this ).hasClass( 'aDeterminer' ) ) {
|
|
|
606 |
$( this ).attr( 'selected', true );
|
|
|
607 |
} else {
|
|
|
608 |
$( this ).attr( 'selected', false );
|
|
|
609 |
}
|
|
|
610 |
});
|
3260 |
idir |
611 |
});
|
|
|
612 |
}
|
|
|
613 |
},
|
|
|
614 |
html: true
|
|
|
615 |
});
|
3270 |
idir |
616 |
$( taxonSelecteur ).on( 'autocompleteselect', this.surAutocompletionTaxon );
|
3260 |
idir |
617 |
};
|
3208 |
idir |
618 |
|
3260 |
idir |
619 |
WidgetSaisie.prototype.getUrlAutocompletionNomsSci = function() {
|
|
|
620 |
var taxonSelecteur = '#taxon';
|
|
|
621 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
622 |
taxonSelecteur += '-autre';
|
|
|
623 |
}
|
|
|
624 |
var mots = $( taxonSelecteur ).val();
|
|
|
625 |
var url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
|
|
|
626 |
url = url.replace( '{masque}', mots );
|
|
|
627 |
return url;
|
|
|
628 |
};
|
3208 |
idir |
629 |
|
3260 |
idir |
630 |
WidgetSaisie.prototype.traiterRetourNomsSci = function( data ) {
|
3208 |
idir |
631 |
|
3260 |
idir |
632 |
var taxonSelecteur = '#taxon';
|
|
|
633 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
634 |
taxonSelecteur += '-autre';
|
|
|
635 |
}
|
|
|
636 |
var suggestions = [];
|
|
|
637 |
if ( undefined != data.resultat ) {
|
|
|
638 |
$.each( data.resultat, function( i, val ) {
|
|
|
639 |
val.nn = i;
|
|
|
640 |
var nom = {
|
|
|
641 |
label : '',
|
|
|
642 |
value : '',
|
|
|
643 |
nt : 0,
|
|
|
644 |
nomSel : '',
|
|
|
645 |
nomSelComplet : '',
|
|
|
646 |
numNomSel : 0,
|
|
|
647 |
nomRet : '',
|
|
|
648 |
numNomRet : 0,
|
|
|
649 |
famille : '',
|
|
|
650 |
retenu : false
|
|
|
651 |
};
|
|
|
652 |
if ( suggestions.length >= this.autocompletionElementsNbre ) {
|
|
|
653 |
nom.label = '...';
|
|
|
654 |
nom.value = $( taxonSelecteur ).val();
|
|
|
655 |
suggestions.push( nom );
|
|
|
656 |
return false;
|
|
|
657 |
} else {
|
|
|
658 |
nom.label = val.nom_sci_complet;
|
|
|
659 |
nom.value = val.nom_sci_complet;
|
|
|
660 |
nom.nt = val.num_taxonomique;
|
|
|
661 |
nom.nomSel = val.nom_sci;
|
|
|
662 |
nom.nomSelComplet = val.nom_sci_complet;
|
|
|
663 |
nom.numNomSel = val.nn;
|
|
|
664 |
nom.nomRet = val.nom_retenu_complet;
|
|
|
665 |
nom.numNomRet = val['nom_retenu.id'];
|
|
|
666 |
nom.famille = val.famille;
|
|
|
667 |
// Tester dans ce sens, permet de considérer 'absent' comme 'false' => est-ce opportun ?
|
|
|
668 |
// en tout cas c'est harmonisé avec le CeL
|
|
|
669 |
nom.retenu = ( 'true' == val.retenu );
|
3208 |
idir |
670 |
|
3260 |
idir |
671 |
suggestions.push( nom );
|
|
|
672 |
}
|
|
|
673 |
});
|
|
|
674 |
}
|
|
|
675 |
return suggestions;
|
|
|
676 |
};
|
3240 |
idir |
677 |
|
3260 |
idir |
678 |
WidgetSaisie.prototype.surAutocompletionTaxon = function( event, ui ) {
|
|
|
679 |
if ( valeurOk( ui ) ) {
|
|
|
680 |
$( '#taxon' ).val( ui.item.value );
|
|
|
681 |
$( '#taxon' ).data( 'value', ui.item.value )
|
|
|
682 |
.data( 'numNomSel', ui.item.numNomSel )
|
|
|
683 |
.data( 'nomRet', ui.item.nomRet )
|
|
|
684 |
.data( 'numNomRet', ui.item.numNomRet )
|
|
|
685 |
.data( 'nt', ui.item.nt )
|
|
|
686 |
.data( 'famille', ui.item.famille );
|
|
|
687 |
if ( ui.item.retenu ) {
|
|
|
688 |
$( '#taxon' ).addClass( 'ns-retenu' );
|
|
|
689 |
} else {
|
|
|
690 |
$( '#taxon' ).removeClass( 'ns-retenu' );
|
|
|
691 |
}
|
3208 |
idir |
692 |
|
3260 |
idir |
693 |
// Si l'espèce est mal déterminée la certitude est "à déterminer"
|
|
|
694 |
if( !valeurOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
|
|
|
695 |
$( '#certitude' ).find( 'option' ).each( function() {
|
|
|
696 |
if ( $( this ).hasClass( 'aDeterminer' ) ) {
|
|
|
697 |
$( this ).attr( 'selected', true );
|
|
|
698 |
} else {
|
|
|
699 |
$( this ).attr( 'selected', false );
|
|
|
700 |
}
|
|
|
701 |
});
|
|
|
702 |
}
|
|
|
703 |
}
|
3270 |
idir |
704 |
$( '#taxon' ).trigger( 'change' );
|
3208 |
idir |
705 |
};
|
|
|
706 |
|
3260 |
idir |
707 |
// Form Validator *************************************************************/
|
|
|
708 |
WidgetSaisie.prototype.configurerFormValidator = function() {
|
3270 |
idir |
709 |
var lthis = this;
|
3240 |
idir |
710 |
|
3260 |
idir |
711 |
$.validator.addMethod(
|
|
|
712 |
'dateCel',
|
|
|
713 |
function ( value, element ) {
|
|
|
714 |
return ( valeurOk( value ) && ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) ) );
|
|
|
715 |
},
|
|
|
716 |
lthis.msgTraduction( 'date-incomplete' )
|
|
|
717 |
);
|
3240 |
idir |
718 |
|
3260 |
idir |
719 |
$.validator.addMethod(
|
|
|
720 |
'userEmailOk',
|
|
|
721 |
function ( value, element ) {
|
|
|
722 |
return ( valeurOk( value ) );
|
|
|
723 |
},
|
|
|
724 |
''
|
|
|
725 |
);
|
3240 |
idir |
726 |
|
3260 |
idir |
727 |
$.validator.addMethod(
|
|
|
728 |
'minMaxOk',
|
|
|
729 |
function ( value, element, param ) {
|
|
|
730 |
$.validator.messages.minMaxOk = lthis.validerMinMax( element ).message;
|
|
|
731 |
return lthis.validerMinMax( element ).cond;
|
|
|
732 |
},
|
|
|
733 |
$.validator.messages.minMaxOk
|
|
|
734 |
);
|
3208 |
idir |
735 |
|
3260 |
idir |
736 |
$.validator.addMethod(
|
|
|
737 |
'listFields',
|
|
|
738 |
function ( value, element ) {
|
|
|
739 |
return ( valeurOk( value ) );
|
|
|
740 |
},
|
|
|
741 |
''
|
|
|
742 |
);
|
3240 |
idir |
743 |
|
3260 |
idir |
744 |
$.extend( $.validator.defaults, {
|
|
|
745 |
errorElement: 'span',
|
|
|
746 |
onfocusout: function( element ) {
|
3270 |
idir |
747 |
if( valeurOk( element.id, false, 'taxon' ) ) {
|
|
|
748 |
if ( $( element ).valid() ) {
|
|
|
749 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
750 |
} else {
|
|
|
751 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
752 |
}
|
3260 |
idir |
753 |
}
|
|
|
754 |
},
|
|
|
755 |
onkeyup : function( element ) {
|
3270 |
idir |
756 |
if( valeurOk( element.id, false, 'taxon' ) ) {
|
|
|
757 |
if ( $( element ).valid() ) {
|
|
|
758 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
759 |
} else {
|
|
|
760 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
761 |
}
|
|
|
762 |
}
|
|
|
763 |
},
|
|
|
764 |
unhighlight: function( element ) {
|
|
|
765 |
if( valeurOk( element.id, false, 'taxon' ) ) {
|
3260 |
idir |
766 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
767 |
}
|
|
|
768 |
},
|
|
|
769 |
highlight: function( element ) {
|
|
|
770 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
3270 |
idir |
771 |
}
|
3260 |
idir |
772 |
});
|
|
|
773 |
};
|
3208 |
idir |
774 |
|
3260 |
idir |
775 |
WidgetSaisie.prototype.chpEtendusValidation = function() {
|
|
|
776 |
var lthis = this;
|
|
|
777 |
var $thisForm = $( '#form-supp' ),
|
|
|
778 |
elements =
|
|
|
779 |
'.checkbox,'+
|
|
|
780 |
'.radio,'+
|
|
|
781 |
'.checkboxes,'+
|
|
|
782 |
'.select,'+
|
|
|
783 |
'textarea,'+
|
|
|
784 |
'input[type=text]:not(.collect-other),'+
|
|
|
785 |
'input[type=email],'+
|
|
|
786 |
'input[type=number],'+
|
|
|
787 |
'input[type=range],'+
|
|
|
788 |
'input[type=date]',
|
|
|
789 |
speFields = ['checkbox','radio','checkboxes','select'],
|
|
|
790 |
spefieldsCount = speFields.length,
|
|
|
791 |
chpSuppValidation = {
|
|
|
792 |
rules : {},
|
|
|
793 |
messages : {},
|
|
|
794 |
minmax : []
|
|
|
795 |
},
|
|
|
796 |
errors = {},
|
|
|
797 |
namesListFields = [],
|
|
|
798 |
picked = '';
|
3208 |
idir |
799 |
|
3260 |
idir |
800 |
$( elements, $thisForm ).each( function() {
|
|
|
801 |
for( var fieldsClass = 0; spefieldsCount > fieldsClass; fieldsClass++ ) {
|
|
|
802 |
if ( valeurOk( $( this ).attr( 'required' ) ) && $( this ).hasClass( speFields[fieldsClass] ) && !valeurOk( chpSuppValidation.rules[ dataName ] ) ) {
|
|
|
803 |
var dataName = $( this ).data( 'name' );
|
3240 |
idir |
804 |
|
3260 |
idir |
805 |
namesListFields.push( dataName );
|
|
|
806 |
chpSuppValidation.rules[ dataName ] = { required : true };
|
3240 |
idir |
807 |
|
3260 |
idir |
808 |
if ( valeurOk( $( '.other', $( this ) ) ) ) {
|
|
|
809 |
picked = ( 'select' === speFields[fieldsClass] ) ? ':selected' : ':checked';
|
|
|
810 |
chpSuppValidation.rules[ 'collect-other-' + dataName.replace( '[]', '' ) ] = {
|
|
|
811 |
required : '#other-' + dataName.replace( '[]', '' ) + picked,
|
|
|
812 |
minlength: 1
|
|
|
813 |
};
|
|
|
814 |
chpSuppValidation.messages[ 'collect-other-' + dataName.replace( '[]', '' ) ] = false;
|
|
|
815 |
}
|
|
|
816 |
chpSuppValidation.rules[ dataName ]['listFields'] = true;
|
|
|
817 |
chpSuppValidation.messages[ dataName ] = 'Ce champ est requis :\nVeuillez choisir une option, ou entrer une valeur autre valide.';
|
|
|
818 |
errors[dataName] = '.' + speFields[fieldsClass];
|
|
|
819 |
}
|
|
|
820 |
}
|
|
|
821 |
if ( valeurOk( $( this ).attr( 'name' ) ) && valeurOk ( $( this ).attr( 'required' ) ) && 0 > $.inArray( $( this ).attr( 'name' ) , namesListFields ) ) {
|
|
|
822 |
chpSuppValidation.rules[ $( this ).attr( 'name' ) ] = { required : true, minlength: 1 };
|
|
|
823 |
if(
|
|
|
824 |
( valeurOk( $( this ).attr( 'type' ), true, 'number' ) || valeurOk( $( this ).attr( 'type' ), true, 'range' ) ) &&
|
|
|
825 |
( valeurOk( $( this )[0].min ) || valeurOk( $( this )[0].max ) )
|
|
|
826 |
) {
|
|
|
827 |
chpSuppValidation.rules[ $( this ).attr('name') ]['minMaxOk'] = true;
|
|
|
828 |
chpSuppValidation.messages[ $( this ).attr('name') ] = lthis.validerMinMax( $( this )[0] ).message;
|
|
|
829 |
}
|
|
|
830 |
}
|
|
|
831 |
});
|
|
|
832 |
if ( valeurOk( chpSuppValidation.rules ) ) {
|
|
|
833 |
$.each( chpSuppValidation.rules, function( key ) {
|
|
|
834 |
if ( !valeurOk( chpSuppValidation.messages[key] ) ) {
|
|
|
835 |
chpSuppValidation.messages[key] = 'Ce champ est requis :\nVeuillez entrer une valeur valide.';
|
|
|
836 |
}
|
|
|
837 |
});
|
|
|
838 |
if ( 0 < Object.keys( errors ).length ) {
|
|
|
839 |
chpSuppValidation['errors'] = errors;
|
|
|
840 |
}
|
|
|
841 |
}
|
|
|
842 |
return chpSuppValidation;
|
3208 |
idir |
843 |
};
|
|
|
844 |
|
3260 |
idir |
845 |
WidgetSaisie.prototype.validerMinMax = function( element ) {
|
3208 |
idir |
846 |
|
3260 |
idir |
847 |
var mMCond = new Boolean(),
|
|
|
848 |
minCond = parseFloat( element.value ) >= parseFloat( element.min ),
|
|
|
849 |
maxCond = parseFloat( element.value ) <= parseFloat( element.max ),
|
|
|
850 |
messageMnMx = 'La valeur entrée doit être',
|
|
|
851 |
returnMnMx = { cond : true , message : '' };
|
3208 |
idir |
852 |
|
3260 |
idir |
853 |
if(
|
|
|
854 |
( valeurOk( element.type, true, 'number' ) || valeurOk( element.type, true, 'range' ) ) &&
|
|
|
855 |
( valeurOk( element.min ) || valeurOk( element.max ) )
|
|
|
856 |
) {
|
|
|
857 |
if ( element.min && element.max ) {
|
|
|
858 |
messageMnMx += ' comprise entre ' + element.min + ' et ' + element.max;
|
|
|
859 |
mnMxCond = ( minCond && maxCond );
|
|
|
860 |
} else if ( element.min ) {
|
|
|
861 |
messageMnMx += ' supérieure à ' + element.min;
|
|
|
862 |
mnMxCond = minCond;
|
|
|
863 |
} else {
|
|
|
864 |
messageMnMx += ' inférieure à ' + element.max;
|
|
|
865 |
mnMxCond = maxCond;
|
|
|
866 |
}
|
|
|
867 |
returnMnMx.cond = mnMxCond;
|
|
|
868 |
returnMnMx.message = messageMnMx;
|
|
|
869 |
}
|
|
|
870 |
return returnMnMx;
|
3208 |
idir |
871 |
|
|
|
872 |
};
|
|
|
873 |
|
|
|
874 |
|
3260 |
idir |
875 |
WidgetSaisie.prototype.definirReglesFormValidator = function() {
|
3270 |
idir |
876 |
var formSuppValidation = this.chpEtendusValidation(),
|
|
|
877 |
lthis = this;
|
3208 |
idir |
878 |
|
3260 |
idir |
879 |
$( '#form-supp' ).validate({
|
|
|
880 |
onclick : function( element ) {
|
|
|
881 |
if (
|
|
|
882 |
(
|
|
|
883 |
valeurOk( element.type, true, 'checkbox' ) ||
|
|
|
884 |
valeurOk( element.type, true, 'radio' )
|
|
|
885 |
) &&
|
|
|
886 |
(
|
|
|
887 |
!valeurOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':checked' ) ) ||
|
|
|
888 |
valeurOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':not(.other):checked' ) ) ||
|
|
|
889 |
!valeurOk( $( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ) ) ||
|
|
|
890 |
$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) ||
|
|
|
891 |
(
|
|
|
892 |
$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) &&
|
|
|
893 |
$( element ).closest( '.control-group' ).hasClass('error')
|
|
|
894 |
)
|
|
|
895 |
)
|
|
|
896 |
) {
|
|
|
897 |
$( element ).valid();
|
|
|
898 |
if ( $( element ).valid() ) {
|
|
|
899 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
900 |
$( element ).next( $( 'span.error' ) ).remove();
|
|
|
901 |
} else {
|
|
|
902 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
903 |
}
|
|
|
904 |
}
|
|
|
905 |
return false;
|
|
|
906 |
},
|
|
|
907 |
rules : formSuppValidation.rules,
|
|
|
908 |
messages : formSuppValidation.messages,
|
|
|
909 |
errorPlacement : function( error , element ) {
|
|
|
910 |
if ( 0 < Object.keys( formSuppValidation.errors ).length ) {
|
|
|
911 |
var errorsKeys = Object.keys( formSuppValidation.errors ),
|
|
|
912 |
thisKey = '',
|
|
|
913 |
errorsFlag = true;
|
|
|
914 |
for ( i = 0 ; i < errorsKeys.length ; i++ ) {
|
|
|
915 |
thisKey = errorsKeys[i];
|
|
|
916 |
if( $( element ).attr( 'name' ) === thisKey ) {
|
|
|
917 |
$( formSuppValidation.errors[thisKey] ).append( error );
|
|
|
918 |
errorsFlag = false;
|
|
|
919 |
}
|
|
|
920 |
}
|
|
|
921 |
if ( errorsFlag ) {
|
|
|
922 |
error.insertAfter( element );
|
|
|
923 |
}
|
|
|
924 |
} else {
|
|
|
925 |
error.insertAfter( element );
|
|
|
926 |
}
|
|
|
927 |
}
|
|
|
928 |
});
|
3208 |
idir |
929 |
|
3260 |
idir |
930 |
$( '#form-supp .select' ).change( function() {
|
|
|
931 |
$( this ).valid();
|
|
|
932 |
});
|
3208 |
idir |
933 |
|
3260 |
idir |
934 |
$( 'input[type=date]' ).on( 'input', function() {
|
|
|
935 |
$( this ).valid();
|
|
|
936 |
});
|
3208 |
idir |
937 |
|
3272 |
idir |
938 |
// Validation Taxon si pas de miniature
|
3270 |
idir |
939 |
$( '#taxon' ).on( 'change', function() {
|
|
|
940 |
var images = valeurOk( $( '#miniatures .miniature' ) );
|
|
|
941 |
lthis.validerTaxonImage( valeurOk( $( this ).val() ), images );
|
|
|
942 |
});
|
|
|
943 |
|
3272 |
idir |
944 |
// Validation miniatures avec MutationObserver
|
3270 |
idir |
945 |
this.surPresenceAbsenceMiniature();
|
|
|
946 |
|
3260 |
idir |
947 |
$( '#form-observation' ).validate({
|
|
|
948 |
rules : {
|
|
|
949 |
date_releve : {
|
|
|
950 |
required : true,
|
|
|
951 |
'dateCel' : true
|
|
|
952 |
},
|
|
|
953 |
latitude : {
|
3273 |
idir |
954 |
required : true,
|
3274 |
idir |
955 |
minlength : 1,
|
|
|
956 |
range : [-90, 90]
|
3260 |
idir |
957 |
},
|
|
|
958 |
longitude : {
|
3273 |
idir |
959 |
required : true,
|
3274 |
idir |
960 |
minlength : 1,
|
|
|
961 |
range : [-180, 180]
|
3260 |
idir |
962 |
}
|
|
|
963 |
}
|
|
|
964 |
});
|
3208 |
idir |
965 |
|
3260 |
idir |
966 |
$( '#form-observateur' ).validate({
|
|
|
967 |
rules : {
|
|
|
968 |
courriel : {
|
|
|
969 |
required : true,
|
|
|
970 |
email : true,
|
|
|
971 |
'userEmailOk' : true
|
|
|
972 |
},
|
|
|
973 |
courriel_confirmation : {
|
|
|
974 |
required : true,
|
|
|
975 |
equalTo : '#courriel'
|
|
|
976 |
}
|
|
|
977 |
}
|
|
|
978 |
});
|
3274 |
idir |
979 |
|
|
|
980 |
$( '#connexion,#bouton-inscription,#bouton-anonyme' ).click( function( event ) {
|
|
|
981 |
$( '.nav.control-group' ).removeClass( 'error' );
|
|
|
982 |
});
|
3208 |
idir |
983 |
};
|
|
|
984 |
|
3270 |
idir |
985 |
WidgetSaisie.prototype.validerTaxonImage = function( taxon = false, images = false ) {
|
|
|
986 |
var taxonOuImage = ( images || taxon );
|
|
|
987 |
if ( images || taxon ) {
|
|
|
988 |
this.masquerPanneau( '#dialogue-taxon-or-image' );
|
|
|
989 |
$( '#bloc-taxon' ).removeClass( 'error' )
|
|
|
990 |
.find( 'span.error' ).hide();
|
|
|
991 |
$( '#fichier' ).parent( 'label.label-file' ).removeClass( 'error' );
|
|
|
992 |
$( '#photos-conteneur').removeClass( 'error' ).find( 'span.error' ).hide();
|
|
|
993 |
} else {
|
|
|
994 |
this.afficherPanneau( '#dialogue-taxon-or-image' );
|
|
|
995 |
$( '#bloc-taxon' ).addClass( 'error' )
|
|
|
996 |
.find( 'span.error' ).show();
|
|
|
997 |
$( '#fichier' ).parent( 'label.label-file' ).addClass( 'error' );
|
|
|
998 |
$( '#photos-conteneur').addClass( 'error' ).find( 'span.error' ).show();
|
|
|
999 |
}
|
|
|
1000 |
return ( images || taxon );
|
|
|
1001 |
};
|
|
|
1002 |
|
|
|
1003 |
WidgetSaisie.prototype.surPresenceAbsenceMiniature = function() {
|
|
|
1004 |
var lthis = this;
|
3271 |
idir |
1005 |
|
3272 |
idir |
1006 |
// voir : https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/disconnect
|
3270 |
idir |
1007 |
// Selectionne le noeud dont les mutations seront observées
|
|
|
1008 |
var targetNode = document.getElementById( 'miniatures' );
|
|
|
1009 |
// Fonction callback à éxécuter quand une mutation est observée
|
|
|
1010 |
var callback = function( mutationsList ) {
|
3287 |
idir |
1011 |
for( var mutation of mutationsList ) {
|
|
|
1012 |
var taxon = valeurOk( $( '#taxon' ).val() );
|
|
|
1013 |
images = ( 0 < mutation.target.childElementCount );
|
|
|
1014 |
lthis.validerTaxonImage( taxon, images );
|
|
|
1015 |
}
|
3270 |
idir |
1016 |
};
|
|
|
1017 |
// Créé une instance de l'observateur lié à la fonction de callback
|
3271 |
idir |
1018 |
this.observer = new MutationObserver( callback );
|
3270 |
idir |
1019 |
// Commence à observer le noeud cible pour les mutations précédemment configurées
|
3271 |
idir |
1020 |
this.observer.observe( targetNode, { childList: true } );
|
3270 |
idir |
1021 |
};
|
|
|
1022 |
|
3208 |
idir |
1023 |
WidgetSaisie.prototype.validerFormulaire = function() {
|
3274 |
idir |
1024 |
var observateur = ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() && $( '#courriel_confirmation' ).valid() )
|
3270 |
idir |
1025 |
var obs = $( '#form-observation' ).valid();
|
3274 |
idir |
1026 |
var geoloc = ( valeurOk( $( '#latitude' ).val() ) && valeurOk( $( '#longitude' ).val() ) ) ;
|
3270 |
idir |
1027 |
var images = valeurOk( $( '#miniatures .miniature' ) );
|
|
|
1028 |
var taxon = valeurOk( $( '#taxon' ).val() );
|
|
|
1029 |
// validation et panneau taxon/images
|
3287 |
idir |
1030 |
var taxonOuImage = this.validerTaxonImage( taxon, images );
|
|
|
1031 |
// console.log(taxonOuImage);
|
3270 |
idir |
1032 |
var chpsSupp = new Boolean();
|
3260 |
idir |
1033 |
if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
1034 |
chpsSupp = ( function () {
|
|
|
1035 |
var otherFlag = $( '#form-supp' ).valid();
|
|
|
1036 |
if( valeurOk( $( '.other', $( '#form-supp' ) ) ) ) {
|
|
|
1037 |
$( '.other', $( '#form-supp' ) ).each( function() {
|
|
|
1038 |
var picked = ( $( this ).data( 'element' ) !== 'select' ) ? ':checked' : ':selected';
|
|
|
1039 |
if ( $( this ).is( picked ) && valeurOk( $( this ).val(), true, 'other' ) ) {
|
|
|
1040 |
otherFlag = false;
|
|
|
1041 |
}
|
|
|
1042 |
});
|
|
|
1043 |
}
|
|
|
1044 |
return otherFlag;
|
|
|
1045 |
})();
|
|
|
1046 |
} else {
|
|
|
1047 |
chpsSupp = true;
|
|
|
1048 |
}
|
3270 |
idir |
1049 |
// panneau geoloc
|
3274 |
idir |
1050 |
if ( geoloc ) {
|
|
|
1051 |
this.masquerPanneau( '#dialogue-geoloc-ko' );
|
|
|
1052 |
$( '#geoloc-datas' ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
1053 |
} else{
|
|
|
1054 |
this.afficherPanneau( '#dialogue-geoloc-ko' );
|
|
|
1055 |
$( '#geoloc-datas' ).closest( '.control-group' ).addClass( 'error' );
|
|
|
1056 |
}
|
3270 |
idir |
1057 |
// panneau observateur
|
3274 |
idir |
1058 |
if ( observateur ) {
|
|
|
1059 |
this.masquerPanneau( '#dialogue-utilisateur-non-identifie' );
|
|
|
1060 |
$( '.nav.control-group' ).removeClass( 'error' );
|
|
|
1061 |
} else {
|
|
|
1062 |
this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
|
|
|
1063 |
$( '.nav.control-group' ).addClass( 'error' );
|
|
|
1064 |
}
|
3208 |
idir |
1065 |
|
3274 |
idir |
1066 |
return ( observateur && obs && geoloc && taxonOuImage && chpsSupp );
|
3208 |
idir |
1067 |
};
|
|
|
1068 |
|
3260 |
idir |
1069 |
// Fichier Images *************************************************************/
|
|
|
1070 |
/**
|
|
|
1071 |
* Affiche la miniature d'une image temporaire (formulaire) qu'on a ajoutée à l'obs
|
|
|
1072 |
*/
|
|
|
1073 |
WidgetSaisie.prototype.afficherMiniature = function( reponse ) {
|
|
|
1074 |
if ( this.debug ) {
|
|
|
1075 |
var debogage = $( 'debogage', reponse ).text();
|
|
|
1076 |
//console.log( 'Débogage upload : '+debogage);
|
|
|
1077 |
}
|
|
|
1078 |
var message = $( 'message', reponse ).text();
|
|
|
1079 |
if ( valeurOk( message ) ) {
|
|
|
1080 |
$( '#miniature-msg' ).append( message );
|
|
|
1081 |
} else {
|
|
|
1082 |
$( '#miniatures' ).append( this.creerWidgetMiniature( reponse ) );
|
|
|
1083 |
}
|
|
|
1084 |
$( '#ajouter-obs' ).removeAttr( 'disabled' );
|
3208 |
idir |
1085 |
};
|
|
|
1086 |
|
3260 |
idir |
1087 |
/**
|
|
|
1088 |
* Crée la miniature d'une image temporaire (formulaire), avec le bouton pour l'effacer
|
|
|
1089 |
*/
|
|
|
1090 |
WidgetSaisie.prototype.creerWidgetMiniature = function( reponse ) {
|
|
|
1091 |
var miniatureUrl = $( 'miniature-url', reponse ).text();
|
|
|
1092 |
var imgNom = $( 'image-nom', reponse ).text();
|
|
|
1093 |
var html =
|
|
|
1094 |
'<div class="miniature mb-3 mr-3">'+
|
|
|
1095 |
'<img class="miniature-img" class="miniature img-rounded" alt="' + imgNom + '" src="' + miniatureUrl + '"/>'+
|
|
|
1096 |
'<a class="effacer-miniature"><i class="far fa-trash-alt"></i></a>'+
|
3270 |
idir |
1097 |
'</div>';
|
3260 |
idir |
1098 |
return html;
|
3208 |
idir |
1099 |
};
|
|
|
1100 |
|
3260 |
idir |
1101 |
/**
|
|
|
1102 |
* Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
|
|
|
1103 |
*/
|
|
|
1104 |
WidgetSaisie.prototype.verifierFormat = function( nom ) {
|
|
|
1105 |
var parts = nom.split( '.' );
|
|
|
1106 |
extension = parts[ parts.length - 1 ];
|
|
|
1107 |
return ( 'jpeg' === extension.toLowerCase() || 'jpg' === extension.toLowerCase() );
|
3208 |
idir |
1108 |
};
|
|
|
1109 |
|
3260 |
idir |
1110 |
/**
|
|
|
1111 |
* Efface une miniature (formulaire)
|
|
|
1112 |
*/
|
|
|
1113 |
WidgetSaisie.prototype.supprimerMiniature = function( miniature ) {
|
|
|
1114 |
miniature.parents( '.miniature' ).remove();
|
3208 |
idir |
1115 |
};
|
|
|
1116 |
|
3260 |
idir |
1117 |
// Referentiel ****************************************************************/
|
|
|
1118 |
// N'est pas utilisé en cas de taxon-liste
|
|
|
1119 |
WidgetSaisie.prototype.surChangementReferentiel = function() {
|
|
|
1120 |
this.nomSciReferentiel = $( '#referentiel' ).val();
|
|
|
1121 |
//réinitialise taxon.val
|
|
|
1122 |
$( '#taxon' ).val( '' );
|
3263 |
idir |
1123 |
$( '#taxon' ).data( 'numNomSel', '' );
|
3260 |
idir |
1124 |
// this.initialiserAutocompleteCommune();
|
|
|
1125 |
// this.initialiserGoogleMap( false );
|
3208 |
idir |
1126 |
};
|
|
|
1127 |
|
3260 |
idir |
1128 |
// Ajouter Obs ****************************************************************/
|
|
|
1129 |
/**
|
|
|
1130 |
* Ajoute une observation saisie dans le formulaire à la liste des observations à transmettre
|
|
|
1131 |
*/
|
|
|
1132 |
WidgetSaisie.prototype.ajouterObs = function() {
|
|
|
1133 |
// Fermeture automatique des dialogue de transmission de données
|
|
|
1134 |
// @WARNING TEST
|
|
|
1135 |
$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
|
|
|
1136 |
$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
|
|
|
1137 |
|
|
|
1138 |
if ( this.validerFormulaire() ) {
|
|
|
1139 |
this.masquerPanneau( '#dialogue-form-invalide' );
|
|
|
1140 |
this.obsNbre = this.obsNbre + 1;
|
|
|
1141 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
1142 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
1143 |
this.afficherObs();
|
|
|
1144 |
this.stockerObsData();
|
|
|
1145 |
this.supprimerMiniatures();
|
|
|
1146 |
if( !this.especeImposee ) {
|
|
|
1147 |
$( '#taxon' ).val( '' );
|
|
|
1148 |
$( '#taxon' ).data( 'numNomSel', '' )
|
3271 |
idir |
1149 |
.data( 'nomRet','' )
|
|
|
1150 |
.data( 'numNomRet', '' )
|
|
|
1151 |
.data( 'nt', '' )
|
|
|
1152 |
.data( 'famille', '' );
|
3260 |
idir |
1153 |
if( this.isTaxonListe ) {
|
|
|
1154 |
$( '#taxon-liste' ).find( 'option' ).each( function() {
|
|
|
1155 |
if ( $( this ).hasClass( 'choisir' ) ) {
|
|
|
1156 |
$( this ).attr( 'selected', true );
|
|
|
1157 |
} else {
|
|
|
1158 |
$( this ).attr( 'selected', false );
|
|
|
1159 |
}
|
|
|
1160 |
});
|
|
|
1161 |
$( '#taxon-input-groupe' ).addClass( 'hidden' );
|
|
|
1162 |
$('#taxon-autre').val('');
|
|
|
1163 |
}
|
|
|
1164 |
}
|
|
|
1165 |
if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
1166 |
$( '#form-supp' ).validate().resetForm();
|
|
|
1167 |
// if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
1168 |
}
|
|
|
1169 |
$( '#barre-progression-upload' ).attr( 'aria-valuemax', this.obsNbre );
|
|
|
1170 |
$( '#barre-progression-upload .sr-only' ).text( '0/' + this.obsNbre + ' ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
1171 |
} else {
|
|
|
1172 |
this.afficherPanneau( '#dialogue-form-invalide' );
|
|
|
1173 |
}
|
3208 |
idir |
1174 |
};
|
|
|
1175 |
|
|
|
1176 |
/**
|
3260 |
idir |
1177 |
* Affiche une observation dans la liste des observations à transmettre
|
|
|
1178 |
*/
|
|
|
1179 |
WidgetSaisie.prototype.afficherObs = function() {
|
|
|
1180 |
|
|
|
1181 |
var numNomSel = $( '#taxon' ).data( 'numNomSel' ),
|
|
|
1182 |
taxon = $( '#taxon' ).val(),
|
|
|
1183 |
referentiel = '',
|
|
|
1184 |
commune = '',
|
|
|
1185 |
inseeLatitudeLongitude = '',
|
|
|
1186 |
lieudit = '',
|
|
|
1187 |
station = '',
|
|
|
1188 |
milieu = '',
|
|
|
1189 |
commentaires = '';
|
|
|
1190 |
|
|
|
1191 |
if ( valeurOk( numNomSel ) ) {
|
|
|
1192 |
referentiel = '<span class="referentiel-obs">' + '[' + this.nomSciReferentiel + ']' + '</span>';
|
|
|
1193 |
}
|
|
|
1194 |
if ( valeurOk( $( '#commune-nom' ).val() ) ) {
|
|
|
1195 |
commune = ' ' + this.msgTraduction( 'lieu-obs' ) + ' <span class="commune">' + $( '#commune-nom' ).val() + '</span> ';
|
|
|
1196 |
}
|
|
|
1197 |
if ( valeurOk( $( '#commune-insee' ).val() ) && valeurOk( $( '#latitude' ).val() ) && valeurOk( $( '#longitude' ).val() ) ) {
|
|
|
1198 |
inseeLatitudeLongitude = '(INSEE Commune:' + $('#commune-insee').val() + ') [' + $( '#latitude' ).val() + ' / ' + $( '#longitude' ).val() + ']';
|
|
|
1199 |
}
|
|
|
1200 |
if ( valeurOk( $( '#lieudit' ).val() ) ) {
|
|
|
1201 |
lieudit = '<span>' + this.msgTraduction( 'lieu-dit' ) + ' :</span> ' + $( '#lieudit' ).val() + ' ';
|
|
|
1202 |
}
|
|
|
1203 |
if ( valeurOk( $( '#station' ).val() ) ) {
|
|
|
1204 |
station = '<span>' + this.msgTraduction( 'station' ) + ' :</span> ' + $( '#station' ).val() + ' ';
|
|
|
1205 |
}
|
|
|
1206 |
if ( valeurOk( $( '#milieu' ).val() ) ) {
|
|
|
1207 |
milieu = '<span>' + this.msgTraduction( 'milieu' ) + ' :</span> ' + $( '#milieu' ).val() + ' ';
|
|
|
1208 |
}
|
|
|
1209 |
if ( valeurOk( $( '#notes' ).val() ) ) {
|
|
|
1210 |
commentaires = this.msgTraduction( 'commentaires' ) + ' : <span class="discretion">' + $( '#notes' ).val() + '</span>' + ' ';
|
|
|
1211 |
}
|
|
|
1212 |
|
|
|
1213 |
var responsivDiff1 = '',
|
|
|
1214 |
responsivDiff2 = '',
|
|
|
1215 |
responsivDiff3 = '',
|
|
|
1216 |
responsivDiff4 = '',
|
|
|
1217 |
responsivDiff5 = '',
|
|
|
1218 |
responsivDiff6 = '';
|
|
|
1219 |
if ( window.matchMedia( '(min-width: 576px)' ).matches ) {
|
|
|
1220 |
/* La largeur minimum de l'affichage est 600 px inclus */
|
|
|
1221 |
responsivDiff1 = ' droite';
|
|
|
1222 |
responsivDiff2 = '<div></div>';
|
|
|
1223 |
responsivDiff3 = '<div class="row">';
|
|
|
1224 |
responsivDiff4 = ' col-md-2 col-sm-4';
|
|
|
1225 |
responsivDiff5 = ' class="col-md-9 col-sm-7"';
|
|
|
1226 |
responsivDiff6 = '</div>';
|
|
|
1227 |
}
|
|
|
1228 |
|
|
|
1229 |
|
|
|
1230 |
$( '#liste-obs' ).prepend(
|
|
|
1231 |
'<div id="obs' + this.obsNbre + '" class="obs obs' + this.obsNbre + ' mb-2">'+
|
|
|
1232 |
|
|
|
1233 |
'<div '+
|
|
|
1234 |
'class="obs-action" '+
|
|
|
1235 |
'title="' + this.msgTraduction( 'supprimer-observation-liste' ) + '"'+
|
|
|
1236 |
'>'+
|
|
|
1237 |
'<button class="btn btn-danger supprimer-obs' + responsivDiff1 + '" value="'+ this.obsNbre + '" title="' + this.msgTraduction( 'obs-numero' ) + this.obsNbre + '">'+
|
|
|
1238 |
'<i class="far fa-trash-alt"></i>'+
|
|
|
1239 |
'</button>'+
|
|
|
1240 |
responsivDiff2 +
|
|
|
1241 |
'</div> '+
|
|
|
1242 |
|
|
|
1243 |
responsivDiff3 +
|
|
|
1244 |
'<div class="thumbnail' + responsivDiff4 + '">'+
|
|
|
1245 |
this.ajouterImgMiniatureAuTransfert()+
|
|
|
1246 |
'</div>'+
|
|
|
1247 |
'<div' + responsivDiff5 + '>'+
|
|
|
1248 |
'<ul class="unstyled">'+
|
|
|
1249 |
'<li>'+
|
|
|
1250 |
'<span class="nom-sci">' + taxon + '</span> '+
|
|
|
1251 |
this.ajouterNumNomSel( numNomSel ) +
|
|
|
1252 |
referentiel +
|
|
|
1253 |
commune +
|
|
|
1254 |
inseeLatitudeLongitude +
|
|
|
1255 |
' ' + this.msgTraduction( 'obs-le' ) + ' ' +
|
|
|
1256 |
'<span class="date">' + this.fournirDate( $( '#date_releve' ).val() ) + '</span>'+
|
|
|
1257 |
'</li>'+
|
|
|
1258 |
'<li>'+
|
|
|
1259 |
lieudit +
|
|
|
1260 |
station +
|
|
|
1261 |
milieu +
|
|
|
1262 |
'</li>'+
|
|
|
1263 |
'<li>'+
|
|
|
1264 |
commentaires +
|
|
|
1265 |
'</li>'+
|
|
|
1266 |
'</ul>'+
|
|
|
1267 |
'</div>'+
|
|
|
1268 |
responsivDiff6+
|
|
|
1269 |
'</div>'
|
|
|
1270 |
);
|
|
|
1271 |
|
|
|
1272 |
$( '#zone-liste-obs' ).removeClass( 'hidden' );
|
|
|
1273 |
};
|
|
|
1274 |
|
|
|
1275 |
/**
|
3208 |
idir |
1276 |
* Ajoute une boîte de miniatures avec défilement des images,
|
|
|
1277 |
* pour une obs de la liste des obs à transmettre
|
|
|
1278 |
*/
|
|
|
1279 |
WidgetSaisie.prototype.ajouterImgMiniatureAuTransfert = function() {
|
3260 |
idir |
1280 |
var html =
|
|
|
1281 |
'<div class="defilement-miniatures">'+
|
|
|
1282 |
'<figure class="centre">'+
|
|
|
1283 |
'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
|
|
|
1284 |
'</figure>'+
|
|
|
1285 |
'</div>',
|
|
|
1286 |
miniatures = '',
|
|
|
1287 |
premiere = true,
|
|
|
1288 |
centre = '';
|
|
|
1289 |
defilVisible = '';
|
3208 |
idir |
1290 |
|
3260 |
idir |
1291 |
if ( valeurOk( $( '#miniatures img' ) ) ) {
|
|
|
1292 |
$( '#miniatures img' ).each( function() {
|
|
|
1293 |
var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
|
|
|
1294 |
premiere = false;
|
3208 |
idir |
1295 |
|
3260 |
idir |
1296 |
var css = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
|
|
|
1297 |
src = $( this ).attr( 'src' ),
|
|
|
1298 |
alt = $( this ).attr( 'alt' ),
|
|
|
1299 |
miniature = '<img class="' + css + ' ' + imgVisible + ' align-middle" alt="' + alt + '"src="' + src + '" width="80%" />';
|
3208 |
idir |
1300 |
|
3260 |
idir |
1301 |
miniatures += miniature;
|
|
|
1302 |
});
|
|
|
1303 |
if ( 1 === $( '#miniatures img' ).length ) {
|
|
|
1304 |
centre = 'centre';
|
|
|
1305 |
defilVisible = ' defilement-miniatures-cache';
|
|
|
1306 |
}
|
|
|
1307 |
html =
|
|
|
1308 |
'<div class="defilement-miniatures">'+
|
|
|
1309 |
'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
|
|
|
1310 |
'<figure class="' + centre + '">'+
|
|
|
1311 |
miniatures+
|
|
|
1312 |
'</figure>'+
|
|
|
1313 |
'<a href="#" class="defilement-miniatures-droite ml-1' + defilVisible + '"><i class="fas fa-chevron-circle-right"></i></a>'+
|
|
|
1314 |
'</div>';
|
|
|
1315 |
}
|
|
|
1316 |
return html;
|
|
|
1317 |
};
|
3208 |
idir |
1318 |
|
3260 |
idir |
1319 |
WidgetSaisie.prototype.fournirDate = function( dateObs ) {
|
|
|
1320 |
if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
|
|
|
1321 |
return dateObs;
|
|
|
1322 |
} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
|
|
|
1323 |
var dateArray = dateObs.split( '-' );
|
|
|
1324 |
return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
|
|
|
1325 |
} else {
|
|
|
1326 |
console.log( 'erreur date : ' + dateObs )
|
|
|
1327 |
}
|
|
|
1328 |
}
|
3208 |
idir |
1329 |
|
3260 |
idir |
1330 |
WidgetSaisie.prototype.ajouterNumNomSel = function( numNomSel ) {
|
|
|
1331 |
var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
|
|
|
1332 |
if ( !valeurOk( numNomSel ) ) {
|
|
|
1333 |
nn = '<span class="alert-error">[' + this.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
|
|
|
1334 |
}
|
|
|
1335 |
return nn;
|
3208 |
idir |
1336 |
};
|
|
|
1337 |
|
|
|
1338 |
|
3260 |
idir |
1339 |
WidgetSaisie.prototype.stockerObsData = function() {
|
|
|
1340 |
var lthis = this;
|
3208 |
idir |
1341 |
|
3260 |
idir |
1342 |
var numNomSel = $( '#taxon' ).data( 'numNomSel' ),
|
|
|
1343 |
nomSel = $( '#taxon' ).val(),
|
|
|
1344 |
nomRet = $( '#taxon' ).data( 'nomRet' ),
|
|
|
1345 |
numNomRet = $( '#taxon' ).data( 'numNomRet' ),
|
|
|
1346 |
numTaxon = $( '#taxon' ).data( 'nt' ),
|
|
|
1347 |
famille = $( '#taxon' ).data( 'famille' ),
|
3263 |
idir |
1348 |
referentiel = ( !valeurOk( numNomSel ) ) ? 'autre' : this.nomSciReferentiel;
|
3208 |
idir |
1349 |
|
3260 |
idir |
1350 |
$( '#liste-obs' ).data( 'obsId' + this.obsNbre, {
|
|
|
1351 |
'num_nom_sel' : numNomSel,
|
|
|
1352 |
'nom_sel' : nomSel,
|
|
|
1353 |
'nom_ret' : nomRet,
|
|
|
1354 |
'num_nom_ret' : numNomRet,
|
|
|
1355 |
'num_taxon' : numTaxon,
|
|
|
1356 |
'famille' : famille,
|
|
|
1357 |
'referentiel' : referentiel,
|
|
|
1358 |
'certitude' : $( '#certitude' ).val(),
|
|
|
1359 |
'date' : lthis.fournirDate( $( '#date_releve' ).val() ),
|
|
|
1360 |
'notes' : $( '#notes' ).val().trim(),
|
|
|
1361 |
'pays' : $( '#pays' ).val(),
|
|
|
1362 |
'commune_nom' : $( '#commune-nom' ).val(),
|
|
|
1363 |
'commune_code_insee' : $( '#commune-insee' ).val(),
|
|
|
1364 |
'latitude' : $( '#latitude' ).val(),
|
|
|
1365 |
'longitude' : $( '#longitude' ).val(),
|
|
|
1366 |
'altitude' : $( '#altitude' ).val(),
|
|
|
1367 |
// début valeurs pour test:
|
|
|
1368 |
// 'commune_nom' : 'Montpellier',
|
|
|
1369 |
// 'commune_code_insee' : '34172',
|
|
|
1370 |
// 'latitude' : '43.608320',
|
|
|
1371 |
// 'longitude' : '3.880196',
|
|
|
1372 |
// 'altitude' : '0',
|
|
|
1373 |
//fin valeurs pour test
|
|
|
1374 |
'lieudit' : $( '#lieudit' ).val(),
|
|
|
1375 |
'station' : $( '#station' ).val(),
|
|
|
1376 |
'milieu' : $( '#milieu' ).val(),
|
|
|
1377 |
//Ajout des champs images
|
|
|
1378 |
'image_nom' : lthis.getNomsImgsOriginales(),
|
|
|
1379 |
'image_b64' : lthis.getB64ImgsOriginales(),
|
|
|
1380 |
// Ajout des champs étendus de l'obs
|
|
|
1381 |
'obs_etendue' : lthis.getObsChpEtendus()
|
|
|
1382 |
});
|
|
|
1383 |
};
|
3208 |
idir |
1384 |
|
3260 |
idir |
1385 |
WidgetSaisie.prototype.getNomsImgsOriginales = function() {
|
|
|
1386 |
var noms = new Array();
|
|
|
1387 |
$( '.miniature-img' ).each( function() {
|
|
|
1388 |
noms.push( $( this ).attr( 'alt' ) );
|
|
|
1389 |
});
|
|
|
1390 |
return noms;
|
3208 |
idir |
1391 |
};
|
|
|
1392 |
|
3260 |
idir |
1393 |
WidgetSaisie.prototype.getB64ImgsOriginales = function() {
|
|
|
1394 |
var b64 = new Array();
|
|
|
1395 |
$( '.miniature-img' ).each( function() {
|
|
|
1396 |
if ( $( this ).hasClass( 'b64' ) ) {
|
|
|
1397 |
b64.push( $( this ).attr( 'src' ) );
|
|
|
1398 |
} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
|
|
|
1399 |
b64.push( $( this ).data( 'b64' ) );
|
|
|
1400 |
}
|
|
|
1401 |
});
|
|
|
1402 |
return b64;
|
3208 |
idir |
1403 |
};
|
|
|
1404 |
|
3260 |
idir |
1405 |
/**
|
|
|
1406 |
* Retourne un Array contenant les valeurs des champs étendus
|
|
|
1407 |
*/
|
|
|
1408 |
WidgetSaisie.prototype.getObsChpEtendus = function() {
|
|
|
1409 |
var champs = new Array(),
|
|
|
1410 |
$thisForm = $( '#form-supp' ),
|
|
|
1411 |
elements =
|
|
|
1412 |
'input[type=text]:not(.collect-other),'+
|
|
|
1413 |
'input[type=checkbox]:checked,'+
|
|
|
1414 |
'input[type=radio]:checked,'+
|
|
|
1415 |
'input[type=email],'+
|
|
|
1416 |
'input[type=number],'+
|
|
|
1417 |
'input[type=range],'+
|
|
|
1418 |
'input[type=date],'+
|
|
|
1419 |
'textarea,'+
|
|
|
1420 |
'.select',
|
|
|
1421 |
retour = new Array();
|
3208 |
idir |
1422 |
|
3260 |
idir |
1423 |
$( elements, $thisForm ).each( function() {
|
|
|
1424 |
if ( valeurOk( $( this ).val() ) && ( valeurOk( $( this ).attr( 'name' ) ) || valeurOk( $( this ).data( 'name' ) ) ) ) {
|
|
|
1425 |
var valeur = $( this ).val(),
|
|
|
1426 |
cle = ( valeurOk( $( this ).attr( 'name' ) ) ) ? $( this ).attr( 'name' ) : $( this ).data( 'name' );
|
|
|
1427 |
if ( cle in champs ) {
|
|
|
1428 |
champs[cle] += ';' + valeur;
|
|
|
1429 |
} else {
|
|
|
1430 |
champs[cle] = valeur;
|
|
|
1431 |
}
|
|
|
1432 |
}
|
|
|
1433 |
});
|
|
|
1434 |
for( var key in champs ) {
|
|
|
1435 |
retour.push({ 'cle' : key , 'valeur' : champs[key] });
|
|
|
1436 |
};
|
|
|
1437 |
return retour;
|
3208 |
idir |
1438 |
};
|
|
|
1439 |
|
3260 |
idir |
1440 |
/**
|
|
|
1441 |
* Efface toutes les miniatures (formulaire)
|
|
|
1442 |
*/
|
|
|
1443 |
WidgetSaisie.prototype.supprimerMiniatures = function() {
|
3271 |
idir |
1444 |
// Déconnection MutationObserver miniatures
|
|
|
1445 |
// Sinon on a une erreur avant la création d'une nouvelle obs
|
|
|
1446 |
this.observer.disconnect();
|
3260 |
idir |
1447 |
$( '#miniatures' ).empty();
|
3272 |
idir |
1448 |
// Validation miniatures reprend à 0 pour une nouvelle obs
|
3271 |
idir |
1449 |
this.surPresenceAbsenceMiniature();
|
3260 |
idir |
1450 |
$( '#miniature-msg' ).empty();
|
3208 |
idir |
1451 |
};
|
|
|
1452 |
|
3260 |
idir |
1453 |
WidgetSaisie.prototype.surChangementNbreObs = function() {
|
|
|
1454 |
if ( 0 === this.obsNbre ) {
|
|
|
1455 |
$( '#transmettre-obs' ).attr( 'disabled', 'disabled' );
|
|
|
1456 |
} else if ( 0 < this.obsNbre && this.obsNbre < this.obsMaxNbre ) {
|
|
|
1457 |
$( '#transmettre-obs' ).removeAttr( 'disabled' );
|
|
|
1458 |
$( '#ajouter-obs' ).removeAttr( 'disabled' );
|
|
|
1459 |
} else if ( this.obsNbre >= this.obsMaxNbre ) {
|
|
|
1460 |
$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
|
|
|
1461 |
this.afficherPanneau( '#dialogue-bloquer-creer-obs' );
|
|
|
1462 |
}
|
3208 |
idir |
1463 |
};
|
|
|
1464 |
|
3260 |
idir |
1465 |
WidgetSaisie.prototype.defilerMiniatures = function( element ) {
|
3208 |
idir |
1466 |
|
3260 |
idir |
1467 |
var miniatureSelectionne = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
|
|
|
1468 |
miniatureSelectionne.removeClass( 'miniature-selectionnee' );
|
|
|
1469 |
miniatureSelectionne.addClass( 'miniature-cachee' );
|
3208 |
idir |
1470 |
|
3260 |
idir |
1471 |
var miniatureAffichee = miniatureSelectionne;
|
3208 |
idir |
1472 |
|
3260 |
idir |
1473 |
if( element.hasClass( 'defilement-miniatures-gauche' ) ) {
|
|
|
1474 |
if( 0 !== miniatureSelectionne.prev( '.miniature' ).length ) {
|
|
|
1475 |
miniatureAffichee = miniatureSelectionne.prev( '.miniature' );
|
|
|
1476 |
} else {
|
|
|
1477 |
miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).last();
|
|
|
1478 |
}
|
|
|
1479 |
} else {
|
|
|
1480 |
if( 0 !== miniatureSelectionne.next('.miniature').length ) {
|
|
|
1481 |
miniatureAffichee = miniatureSelectionne.next( '.miniature' );
|
|
|
1482 |
} else {
|
|
|
1483 |
miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).first();
|
|
|
1484 |
}
|
|
|
1485 |
}
|
|
|
1486 |
miniatureAffichee.addClass( 'miniature-selectionnee' );
|
|
|
1487 |
miniatureAffichee.removeClass( 'miniature-cachee' );
|
|
|
1488 |
};
|
3208 |
idir |
1489 |
|
3260 |
idir |
1490 |
WidgetSaisie.prototype.supprimerObs = function( selector ) {
|
|
|
1491 |
var obsId = $( selector ).val();
|
|
|
1492 |
// Problème avec IE 6 et 7
|
|
|
1493 |
if ( 'Supprimer' === obsId ) {
|
|
|
1494 |
obsId = $( selector ).attr( 'title' );
|
|
|
1495 |
}
|
|
|
1496 |
this.supprimerObsParId( obsId );
|
3208 |
idir |
1497 |
};
|
|
|
1498 |
|
3260 |
idir |
1499 |
WidgetSaisie.prototype.supprimerObsParId = function( obsId ) {
|
|
|
1500 |
this.obsNbre = this.obsNbre - 1;
|
|
|
1501 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
1502 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
1503 |
$( '.obs' + obsId ).remove();
|
|
|
1504 |
$( '#liste-obs' ).removeData( 'obsId' + obsId );
|
|
|
1505 |
};
|
3208 |
idir |
1506 |
|
3260 |
idir |
1507 |
WidgetSaisie.prototype.transmettreObs = function() {
|
|
|
1508 |
var observations = $( '#liste-obs' ).data();
|
|
|
1509 |
if ( this.debug ) {
|
|
|
1510 |
console.log( observations );
|
|
|
1511 |
}
|
|
|
1512 |
if ( !valeurOk( typeof observations, true, 'object' ) ) {
|
|
|
1513 |
this.afficherPanneau( '#dialogue-zero-obs' );
|
|
|
1514 |
} else {
|
|
|
1515 |
this.nbObsEnCours = 1;
|
|
|
1516 |
this.nbObsTransmises = 0;
|
|
|
1517 |
this.totalObsATransmettre = $.map( observations, function( n, i ) {
|
|
|
1518 |
return i;
|
|
|
1519 |
}).length;
|
|
|
1520 |
this.depilerObsPourEnvoi();
|
|
|
1521 |
}
|
|
|
1522 |
return false;
|
|
|
1523 |
};
|
3208 |
idir |
1524 |
|
3260 |
idir |
1525 |
WidgetSaisie.prototype.depilerObsPourEnvoi = function() {
|
|
|
1526 |
var observations = $( '#liste-obs' ).data();
|
|
|
1527 |
// la boucle est factice car on utilise un tableau
|
|
|
1528 |
// dont on a besoin de n'extraire que le premier élément
|
|
|
1529 |
// or javascript n'a pas de méthode cross browsers pour extraire les clés
|
|
|
1530 |
// TODO: utiliser var.keys quand ça sera plus répandu
|
|
|
1531 |
// ou bien utiliser un vrai tableau et pas un objet
|
|
|
1532 |
for ( var obsNum in observations ) {
|
|
|
1533 |
var obsATransmettre = {
|
|
|
1534 |
'projet' : this.tagProjet,
|
|
|
1535 |
'tag-obs' : this.tagObs,
|
|
|
1536 |
'tag-img' : this.tagImg
|
|
|
1537 |
};
|
|
|
1538 |
var utilisateur = {
|
|
|
1539 |
id_utilisateur : $( '#id_utilisateur' ).val(),
|
|
|
1540 |
prenom : $( '#prenom' ).val(),
|
|
|
1541 |
nom : $( '#nom' ).val(),
|
|
|
1542 |
courriel : $( '#courriel' ).val()
|
|
|
1543 |
};
|
|
|
1544 |
obsATransmettre['utilisateur'] = utilisateur;
|
|
|
1545 |
obsATransmettre[obsNum] = observations[obsNum];
|
|
|
1546 |
var idObsNumerique = obsNum.replace( 'obsId', '' );
|
|
|
1547 |
if( '' !== idObsNumerique ) {
|
|
|
1548 |
this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
|
|
|
1549 |
}
|
|
|
1550 |
break;
|
|
|
1551 |
}
|
|
|
1552 |
};
|
3208 |
idir |
1553 |
|
3260 |
idir |
1554 |
WidgetSaisie.prototype.envoyerObsAuCel = function( idObs, observation ) {
|
|
|
1555 |
var lthis = this;
|
3208 |
idir |
1556 |
|
3260 |
idir |
1557 |
var erreurMsg = '';
|
|
|
1558 |
$.ajax({
|
|
|
1559 |
url : lthis.serviceSaisieUrl,
|
|
|
1560 |
type : 'POST',
|
|
|
1561 |
data : observation,
|
|
|
1562 |
dataType : 'json',
|
|
|
1563 |
beforeSend : function() {
|
|
|
1564 |
$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
|
|
|
1565 |
$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
|
|
|
1566 |
$( '.alert-txt' ).empty();
|
|
|
1567 |
$( '.alert-txt .msg-erreur' ).remove();
|
|
|
1568 |
$( '.alert-txt .msg-debug' ).remove();
|
|
|
1569 |
$( '#chargement' ).removeClass( 'hidden' );
|
|
|
1570 |
},
|
|
|
1571 |
success : function( data, textStatus, jqXHR ) {
|
|
|
1572 |
// mise à jour du nombre d'obs à transmettre
|
|
|
1573 |
// et suppression de l'obs
|
|
|
1574 |
lthis.supprimerObsParId( idObs );
|
|
|
1575 |
lthis.nbObsEnCours++;
|
|
|
1576 |
// mise à jour du statut
|
|
|
1577 |
lthis.mettreAJourProgression();
|
|
|
1578 |
if( 0 < lthis.obsNbre ) {
|
|
|
1579 |
// dépilement de la suivante
|
|
|
1580 |
lthis.depilerObsPourEnvoi();
|
|
|
1581 |
}
|
|
|
1582 |
},
|
|
|
1583 |
statusCode : {
|
|
|
1584 |
500 : function( jqXHR, textStatus, errorThrown ) {
|
|
|
1585 |
erreurMsg += lthis.msgTraduction( 'erreur' ) + ' 500 :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
|
|
|
1586 |
}
|
|
|
1587 |
},
|
|
|
1588 |
error : function( jqXHR, textStatus, errorThrown ) {
|
|
|
1589 |
erreurMsg += lthis.msgTraduction( 'erreur-ajax' ) + ' :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
|
|
|
1590 |
try {
|
|
|
1591 |
reponse = jQuery.parseJSON( jqXHR.responseText );
|
|
|
1592 |
if ( null !== reponse ) {
|
|
|
1593 |
$.each( reponse, function( cle, valeur ) {
|
|
|
1594 |
erreurMsg += valeur + '\n';
|
|
|
1595 |
});
|
|
|
1596 |
}
|
|
|
1597 |
} catch( e ) {
|
|
|
1598 |
erreurMsg += lthis.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
|
|
|
1599 |
}
|
|
|
1600 |
},
|
|
|
1601 |
complete : function( jqXHR, textStatus ) {
|
|
|
1602 |
var debugMsg = extraireEnteteDebug( jqXHR );
|
3208 |
idir |
1603 |
|
3260 |
idir |
1604 |
if ( '' !== erreurMsg ) {
|
|
|
1605 |
if ( lthis.debug ) {
|
|
|
1606 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
|
|
|
1607 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
|
|
|
1608 |
}
|
|
|
1609 |
var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
|
|
|
1610 |
'subject=Dysfonctionnement du widget de saisie ' + lthis.tagProjet+
|
|
|
1611 |
'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
|
3208 |
idir |
1612 |
|
3260 |
idir |
1613 |
// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
|
|
|
1614 |
$( '#obs' + idObs + ' div div' ).addClass( 'obs-erreur' );
|
|
|
1615 |
window.location.hash = 'obs' + idObs;
|
|
|
1616 |
|
|
|
1617 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append(
|
|
|
1618 |
$( '#tpl-transmission-ko' ).clone()
|
|
|
1619 |
.find( '.courriel-erreur' )
|
|
|
1620 |
.attr( 'href', hrefCourriel )
|
|
|
1621 |
.end()
|
|
|
1622 |
.html()
|
|
|
1623 |
);
|
|
|
1624 |
$( '#dialogue-obs-transaction-ko' ).removeClass( 'hidden' );
|
|
|
1625 |
$( '#chargement' ).addClass( 'hidden' );
|
|
|
1626 |
lthis.initialiserBarreProgression;
|
|
|
1627 |
} else {
|
|
|
1628 |
if ( lthis.debug ) {
|
|
|
1629 |
$( '#dialogue-obs-transaction-ok .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
|
|
|
1630 |
}
|
|
|
1631 |
if( 0 === lthis.obsNbre ) {
|
|
|
1632 |
setTimeout( function() {
|
|
|
1633 |
$( '#chargement' ).addClass( 'hidden' );
|
|
|
1634 |
$( '#dialogue-obs-transaction-ok .alert-txt' ).append( $( '#tpl-transmission-ok' ).clone().html() );
|
|
|
1635 |
$( '#dialogue-obs-transaction-ok' ).removeClass( 'hidden' );
|
|
|
1636 |
window.location.hash = 'dialogue-obs-transaction-ok';
|
|
|
1637 |
lthis.initialiserObs.bind( lthis );
|
|
|
1638 |
}, 1500 );
|
|
|
1639 |
}
|
|
|
1640 |
}
|
|
|
1641 |
}
|
|
|
1642 |
});
|
3208 |
idir |
1643 |
};
|
|
|
1644 |
|
3260 |
idir |
1645 |
WidgetSaisie.prototype.mettreAJourProgression = function() {
|
|
|
1646 |
this.nbObsTransmises++;
|
3208 |
idir |
1647 |
|
3260 |
idir |
1648 |
var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
|
3208 |
idir |
1649 |
|
3260 |
idir |
1650 |
$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
|
|
|
1651 |
$( '#barre-progression-upload' ).css( 'width', pct + '%' );
|
|
|
1652 |
$( '#barre-progression-upload .sr-only' ).text( this.nbObsTransmises + '/' + this.totalObsATransmettre + ' ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
1653 |
if( 0 === this.obsNbre ) {
|
|
|
1654 |
$( '.progress' ).removeClass( 'active' );
|
|
|
1655 |
$( '.progress' ).removeClass( 'progress-bar-striped' );
|
|
|
1656 |
}
|
3120 |
delphine |
1657 |
};
|
|
|
1658 |
|
3260 |
idir |
1659 |
WidgetSaisie.prototype.initialiserBarreProgression = function() {
|
|
|
1660 |
$( '#barre-progression-upload' ).attr( 'aria-valuenow', 0 );
|
|
|
1661 |
$( '#barre-progression-upload' ).css( 'width', '0%' );
|
|
|
1662 |
$( '#barre-progression-upload .sr-only' ).text( '0/0 ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
1663 |
$( '.progress' ).addClass( 'active' );
|
|
|
1664 |
$( '.progress' ).addClass( 'progress-bar-striped' );
|
3120 |
delphine |
1665 |
};
|
|
|
1666 |
|
3260 |
idir |
1667 |
WidgetSaisie.prototype.initialiserObs = function() {
|
|
|
1668 |
this.obsNbre = 0;
|
|
|
1669 |
this.nbObsTransmises = 0;
|
|
|
1670 |
this.nbObsEnCours = 0;
|
|
|
1671 |
this.totalObsATransmettre = 0;
|
|
|
1672 |
this.initialiserBarreProgression();
|
|
|
1673 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
1674 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
1675 |
$( '#liste-obs' ).removeData();
|
|
|
1676 |
$( '.obs' ).remove();
|
|
|
1677 |
$( '#dialogue-bloquer-creer-obs' ).addClass( 'hidden' );
|
3120 |
delphine |
1678 |
};
|
|
|
1679 |
|
3208 |
idir |
1680 |
WidgetSaisie.prototype.afficherPanneau = function( selecteur ) {
|
3260 |
idir |
1681 |
$( selecteur )
|
|
|
1682 |
.removeClass( 'hidden')
|
|
|
1683 |
.hide()
|
|
|
1684 |
.show( 600 )
|
|
|
1685 |
.delay( this.dureeMessage )
|
|
|
1686 |
.hide( 600 );
|
3120 |
delphine |
1687 |
};
|
|
|
1688 |
|
3208 |
idir |
1689 |
WidgetSaisie.prototype.masquerPanneau = function( selecteur ) {
|
3260 |
idir |
1690 |
$( selecteur ).addClass( 'hidden' );
|
3208 |
idir |
1691 |
};
|
|
|
1692 |
|
3260 |
idir |
1693 |
WidgetSaisie.prototype.fermerPanneauAlert = function() {
|
|
|
1694 |
$( this ).parentsUntil( '.zone-alerte', '.alert' ).addClass( 'hidden' );
|
|
|
1695 |
};
|
|
|
1696 |
|
3240 |
idir |
1697 |
/**
|
|
|
1698 |
* Si la langue est définie dans this.langue, et si des messages sont définis
|
|
|
1699 |
* dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
|
|
|
1700 |
* langue en cours. S'il n'est pas trouvé, retourne la version française (par
|
|
|
1701 |
* défaut); si celle-ci n'exite pas, retourne "N/A".
|
|
|
1702 |
*/
|
|
|
1703 |
WidgetSaisie.prototype.msgTraduction = function( cle ) {
|
3260 |
idir |
1704 |
var msg = 'N/A';
|
|
|
1705 |
if ( this.msgs ) {
|
|
|
1706 |
if ( this.langue in this.msgs && cle in this.msgs[this.langue] ) {
|
|
|
1707 |
msg = this.msgs[this.langue][cle];
|
|
|
1708 |
} else if ( cle in this.msgs['fr'] ) {
|
|
|
1709 |
msg = this.msgs['fr'][cle];
|
|
|
1710 |
}
|
|
|
1711 |
}
|
|
|
1712 |
return msg;
|
3240 |
idir |
1713 |
};
|
|
|
1714 |
|
3208 |
idir |
1715 |
// lib hors objet --
|
|
|
1716 |
|
|
|
1717 |
/**
|
3260 |
idir |
1718 |
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
|
|
|
1719 |
* et de comparer à une autre valeur :
|
|
|
1720 |
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
|
|
|
1721 |
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
|
|
|
1722 |
* Un booléen est une variable valide : on retourne true
|
|
|
1723 |
* @param { string || number || object || undefined } valeur
|
|
|
1724 |
* @param { boolean } sensComparaison : true = rechercher, false = refuser
|
|
|
1725 |
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
|
|
|
1726 |
* @returns {boolean}
|
|
|
1727 |
*/
|
|
|
1728 |
function valeurOk( valeur, sensComparaison = true, comparer = undefined ) {
|
|
|
1729 |
|
|
|
1730 |
if ( 'boolean' !== typeof valeur ) {
|
|
|
1731 |
switch( typeof valeur ) {
|
|
|
1732 |
case 'string' :
|
|
|
1733 |
retour = ( '' !== valeur );
|
|
|
1734 |
break;
|
|
|
1735 |
case 'number' :
|
|
|
1736 |
retour = ( NaN !== valeur );
|
|
|
1737 |
break;
|
|
|
1738 |
case 'object' :
|
|
|
1739 |
retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
|
|
|
1740 |
if ( undefined !== valeur.length ) {
|
|
|
1741 |
retour = ( retour && 0 < valeur.length );
|
|
|
1742 |
}
|
|
|
1743 |
break;
|
|
|
1744 |
case 'undefined' :
|
|
|
1745 |
default :
|
|
|
1746 |
retour = false;
|
|
|
1747 |
}
|
|
|
1748 |
if ( retour && comparer !== undefined ) {
|
|
|
1749 |
var resultComparaison = ( comparer === valeur );
|
|
|
1750 |
retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
|
|
|
1751 |
}
|
|
|
1752 |
return retour;
|
|
|
1753 |
} else {
|
|
|
1754 |
// Un booléen est une valeur valable
|
|
|
1755 |
return true;
|
|
|
1756 |
}
|
|
|
1757 |
}
|
|
|
1758 |
|
|
|
1759 |
/**
|
3208 |
idir |
1760 |
* Stope l'évènement courant quand on clique sur un lien.
|
|
|
1761 |
* Utile pour Chrome, Safari...
|
|
|
1762 |
*/
|
|
|
1763 |
function arreter( evenement ) {
|
3260 |
idir |
1764 |
if ( evenement.stopPropagation ) {
|
|
|
1765 |
evenement.stopPropagation();
|
|
|
1766 |
}
|
|
|
1767 |
if ( evenement.preventDefault ) {
|
|
|
1768 |
evenement.preventDefault();
|
|
|
1769 |
}
|
|
|
1770 |
return false;
|
3208 |
idir |
1771 |
}
|
|
|
1772 |
|
|
|
1773 |
/**
|
|
|
1774 |
* Extrait les données de désinsectisation d'une requête AJAX de jQuery
|
|
|
1775 |
* @param jqXHR
|
|
|
1776 |
* @returns {String}
|
|
|
1777 |
*/
|
|
|
1778 |
function extraireEnteteDebug( jqXHR ) {
|
3260 |
idir |
1779 |
var msgDebug = '';
|
|
|
1780 |
if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
|
|
|
1781 |
var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
|
|
|
1782 |
if ( null !== debugInfos ) {
|
|
|
1783 |
$.each( debugInfos, function( cle, valeur ) {
|
|
|
1784 |
msgDebug += valeur + '\n';
|
|
|
1785 |
});
|
|
|
1786 |
}
|
|
|
1787 |
}
|
|
|
1788 |
return msgDebug;
|
3208 |
idir |
1789 |
}
|
|
|
1790 |
|
|
|
1791 |
/*
|
|
|
1792 |
* jQuery UI Autocomplete HTML Extension
|
|
|
1793 |
*
|
|
|
1794 |
* Copyright 2010, Scott González (http://scottgonzalez.com)
|
|
|
1795 |
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
1796 |
*
|
|
|
1797 |
* http://github.com/scottgonzalez/jquery-ui-extensions
|
|
|
1798 |
*
|
|
|
1799 |
* Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
|
|
|
1800 |
*/
|
3287 |
idir |
1801 |
( function( $ ) {
|
|
|
1802 |
var proto = $.ui.autocomplete.prototype,
|
|
|
1803 |
initSource = proto._initSource;
|
3208 |
idir |
1804 |
|
3287 |
idir |
1805 |
WidgetSaisie.prototype.filter = function( array, term ) {
|
|
|
1806 |
var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
|
|
|
1807 |
return $.grep( array, function( value ) {
|
|
|
1808 |
return matcher.test( $( '<div>' ).html( value.label || value.value || value ).text() );
|
|
|
1809 |
});
|
|
|
1810 |
}
|
|
|
1811 |
$.extend( proto, {
|
|
|
1812 |
_initSource: function() {
|
|
|
1813 |
if ( this.options.html && $.isArray( this.options.source ) ) {
|
|
|
1814 |
this.source = function( request, response ) {
|
|
|
1815 |
response( filter( this.options.source, request.term ) );
|
|
|
1816 |
};
|
|
|
1817 |
} else {
|
|
|
1818 |
initSource.call( this );
|
|
|
1819 |
}
|
|
|
1820 |
},
|
|
|
1821 |
_renderItem: function( ul, item) {
|
|
|
1822 |
if ( item.retenu ) {
|
|
|
1823 |
item.label = '<strong>' + item.label + '</strong>';
|
|
|
1824 |
}
|
|
|
1825 |
|
|
|
1826 |
return $( '<li></li>' )
|
|
|
1827 |
.data( 'item.autocomplete', item )
|
|
|
1828 |
.append( $( '<a></a>' )[ ( this.options.html ) ? 'html' : 'text' ]( item.label ) )
|
|
|
1829 |
.appendTo( ul );
|
3260 |
idir |
1830 |
}
|
3287 |
idir |
1831 |
});
|
|
|
1832 |
})( jQuery );
|