Subversion Repositories eFlore/Applications.cel

Rev

Rev 3372 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3318 idir 1
/**
2
 * Constructeur LichensLg par défaut
3
 */
4
function LichensLg() {
5
	this.obsNbre = 0;
6
	this.nbObsEnCours = 1;
7
	this.totalObsATransmettre = 0;
8
	this.nbObsTransmises = 0;
9
	this.debug = null;
10
	this.html5 = null;
11
	this.tagProjet = null;
12
	this.tagImg = null;
13
	this.tagObs = null;
14
	this.separationTagImg = null;
15
	this.separationTagObs = null;
16
	this.serviceSaisieUrl = null;
17
	this.chargementImageIconeUrl = null;
18
	this.pasDePhotoIconeUrl = null;
19
	this.nomSciReferentiel = null;
20
	this.autocompletionElementsNbre = null;
21
	this.referentielImpose = null;
22
	this.serviceAutocompletionNomSciUrl = null;
23
	this.serviceAutocompletionNomSciUrlTpl = null;
24
	this.obsMaxNbre = null;
25
	this.dureeMessage = null;
26
	this.infosUtilisateur = {};
27
	this.releveDatas = null;
28
	this.utils = new UtilsLg();
29
}
30
 
31
LichensLg.prototype.init = function() {
32
	this.initForm();
33
	this.initEvts();
34
};
35
 
36
/**
37
 * Initialise le formulaire, les validateurs, les listes de complétion...
38
 */
39
LichensLg.prototype.initForm = function() {
40
	const lthis = this;
41
 
3380 idir 42
	$('[type="date"]').prop('max', function(){
43
		return new Date().toJSON().split('T')[0];
44
	});
45
 
3334 idir 46
	this.surChangementTaxonListe();
47
	$( '#taxon-liste' ).on( 'change', lthis.surChangementTaxonListe );
48
	$( '#taxon-liste' ).on( 'change', lthis.surChangementValeurTaxon.bind( lthis ) );
49
	if ( this.debug ) {
50
		console.log( 'Selected taxon:' + $( '#taxon-liste option:selected' ).val());
51
	}
3318 idir 52
	this.configurerFormValidator();
53
	this.definirReglesFormValidator();
54
};
55
 
56
/**
57
 * Initialise les écouteurs d'événements
58
 */
59
LichensLg.prototype.initEvts = function() {
60
	const lthis = this;
61
 
62
	var releveDatas = [];
63
	this.infosUtilisateur.id     = $( '#id_utilisateur' ).val();
64
	this.infosUtilisateur.prenom = $( '#prenom' ).val();
65
	this.infosUtilisateur.nom    = $( '#nom' ).val();
66
 
67
	$( '#bouton-nouveau-releve' ).click( function() {
68
		$( '#releve-data' ).val( '' );
69
		if ( lthis.utils.valOk( lthis.infosUtilisateur.id ) ) {
70
			lthis.utils.chargerForm( 'arbres', lthis );
71
			$( '#bouton-list-releves' ).removeClass( 'hidden' );
72
		}
73
		$( '#table-releves' ).addClass( 'hidden' );
74
	});
75
 
76
	if( this.utils.valOk( this.infosUtilisateur.id ) && this.utils.valOk( $( '#releve-data' ).val() ) ) {
77
		this.releveDatas = $.parseJSON( $( '#releve-data' ).val() );
78
		if ( this.utils.valOk( this.releveDatas[0].utilisateur, true, this.infosUtilisateur.id ) ) {
79
 
80
			// Sur téléchargement image
81
			$( '#fichier' ).on( 'change', function ( e ) {
82
				arreter( e );
83
 
84
				var options        = {
85
					success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
86
					dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
87
					resetForm: true // reset the form after successful submit
88
				};
89
 
90
				$( '#miniature' ).append( '<img id="miniature-chargement" class="miniature" alt="chargement" src="' + this.chargementImageIconeUrl + '"/>' );
91
 
92
				var imgCheminTmp    = $( '#fichier' ).val(),
93
					formatImgOk     = lthis.verifierFormat( imgCheminTmp ),
94
					imgNonDupliquee = lthis.verifierDuplication( imgCheminTmp );
95
 
96
				if( formatImgOk && imgNonDupliquee ) {
97
					$( '#form-upload' ).ajaxSubmit( options );
98
				} else {
99
					$( '#form-upload' )[0].reset();
100
					if ( !formatImgOk ) {
101
						window.alert( lthis.utils.msgTraduction( 'format-non-supporte' ) + ' ' + $( '#fichier' ).attr( 'accept' ) );
102
					}
103
					if ( !imgNonDupliquee ) {
104
						window.alert( lthis.utils.msgTraduction( 'image-deja-chargee' ) );
105
					}
106
				}
107
				return false;
108
			});
109
			$( 'body' ).on( 'click', '.effacer-miniature', function() {
110
				$( this ).parent().remove();
111
			});
112
 
113
			$( '#ajouter-obs' ).on( 'click', this.ajouterObs.bind( this ) );
114
			$( '.obs-nbre' ).on( 'changement', this.surChangementNbreObs.bind( this ) );
115
			// défilement des miniatures dans le résumé obs
116
			$( 'body' ).on( 'click', '.defilement-miniatures-gauche', function( event ) {
117
				event.preventDefault();
118
				lthis.defilerMiniatures( $( this ) );
119
			});
120
			$( 'body' ).on( 'click', '.defilement-miniatures-droite', function( event ) {
121
				event.preventDefault();
122
				lthis.defilerMiniatures( $( this ) );
123
			});
124
			// mécanisme de suppression d'une obs
125
			$( '#liste-obs' ).on( 'click', '.supprimer-obs', function() {
126
				var that = this,
127
				suppObs = lthis.supprimerObs.bind( lthis );
128
				// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
129
				suppObs( that );
130
			});
131
 
132
			$( '#transmettre-obs' ).on( 'click', this.transmettreObs.bind( this ) );
133
 
134
			// chargement lichens
135
			$( '#bouton-poursuivre' ).on( 'click', function() {
136
				var nomSquelette = $( this ).data( 'load' );
137
				$( '#charger-form' ).data( 'load', nomSquelette );
138
				lthis.utils.chargerForm( nomSquelette, lthis );
139
				$( 'html, body' ).stop().animate({
140
					scrollTop: $( '#charger-form' ).offset().top
141
				}, 300 );
142
			});
143
			// Alertes et tooltips
144
			$( '.alert .close' ).on( 'click', this.fermerPanneauAlert );
145
			$( '#btn-aide' ).on( 'click', this.basculerAffichageAide );
146
			// $( '.has-tooltip' ).tooltip( 'enable' );
147
		}
148
	}
149
};
150
 
151
// Préchargement des infos-obs ************************************************/
152
 
153
/**
154
 * Callback dans le chargement du formulaire dans #charger-form
155
 */
156
LichensLg.prototype.chargerSquelette = function( squelette, nomSquelette ) {
157
	switch( nomSquelette ) {
158
		case 'lichens' :
159
			this.utils.chargerFormLichens( squelette, nomSquelette );
160
			break;
161
		case 'arbres' :
162
		default :
163
			this.reinitialiserWidget( squelette );
164
		break;
165
	}
166
};
167
 
168
LichensLg.prototype.reinitialiserWidget = function( squelette ) {
169
	$( '#charger-form' ).html( squelette );
170
	if ( this.utils.valOk( $( '#releve-data' ).val() ) ) {
171
		this.rechargerFormulaire();
172
	}
173
};
174
 
3334 idir 175
// uniquement utilisé si taxon-liste ******************************************/
176
// Affiche/Cache le champ taxon
177
LichensLg.prototype.surChangementTaxonListe = function() {
3372 idir 178
	const utils = new UtilsLg();
3334 idir 179
	if ( utils.valOk( $( '#taxon-liste' ).val() ) ) {
180
		if ( 'autre' !== $( '#taxon-liste' ).val() ) {
181
			$( '#taxon-input-groupe' )
182
				.hide( 200, function () {
183
					$( this ).addClass( 'hidden' ).show();
184
				})
185
				.find( '#taxon-autre' ).val( '' );
186
		} else {
187
			$( '#taxon-input-groupe' )
188
				.hide()
189
				.removeClass( 'hidden' )
190
				.show(200)
191
				.find( '#taxon-autre' )
192
					.focus()
193
					.on( 'change', function() {
194
						if( !utils.valOk( $( '#taxon-autre' ).data( 'numNomSel' ) ) ) {
195
							$( '#taxon' ).val( $( '#taxon-autre' ).val() );
196
							$( '#taxon' ).removeData( 'value' )
197
								.removeData( 'numNomSel' )
198
								.removeData( 'nomRet' )
199
								.removeData( 'numNomRet' )
200
								.removeData( 'nt' )
201
								.removeData( 'famille' );
202
						}
203
						$( '#taxon' ).trigger( 'change' );
204
					});
205
		}
206
	}
207
};
208
 
209
LichensLg.prototype.surChangementValeurTaxon = function() {
210
	var numNomSel = 0;
211
 
212
	if( this.utils.valOk( $( '#taxon-liste' ).val() ) ) {
213
		if( 'autre' === $( '#taxon-liste' ).val() ) {
214
			this.ajouterAutocompletionNoms();
215
		} else {
216
			var optionRetenue = $( '#taxon-liste' ).find( 'option[value="' + $( '#taxon-liste' ).val() + '"]' );
217
			// $( '#taxon' ).val( $( '#taxon-liste' ).val() );
218
			$( '#taxon' ).val( $( '#taxon-liste' ).val() )
219
				.data( 'value', $( '#taxon-liste' ).val() )
220
				.data( 'numNomSel', optionRetenue.data( 'num-nom-sel' ) )
221
				.data( 'nomRet', optionRetenue.data( 'nom-ret' ) )
222
				.data( 'numNomRet', optionRetenue.data( 'num-nom-ret' ) )
223
				.data( 'nt', optionRetenue.data( 'nt' ) )
224
				.data( 'famille', optionRetenue.data( 'famille' ) );
225
			$( '#taxon' ).trigger( 'change' );
226
 
227
			numNomSel = $( '#taxon' ).data( 'numNomSel' );
228
			// Si l'espèce est mal déterminée la certitude est "à déterminer"
229
			if( !this.utils.valOk( numNomSel ) ) {
230
				$( '#certitude' ).find( 'option' ).each( function() {
231
					if ( $( this ).hasClass( 'aDeterminer' ) ) {
232
						$( this ).attr( 'selected', true );
233
					} else {
234
						$( this ).attr( 'selected', false );
235
					}
236
				});
237
			}
238
		}
239
	}
240
};
241
 
3318 idir 242
// Autocompletion taxons ******************************************************/
243
/**
244
 * Initialise l'autocompletion taxons
245
 */
246
LichensLg.prototype.ajouterAutocompletionNoms = function() {
247
	const lthis = this;
248
 
3334 idir 249
	var taxonSelecteur = '#taxon';
250
	if ( this.utils.valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
251
		taxonSelecteur += '-autre';
252
	}
253
 
254
	$( taxonSelecteur ).autocomplete({
3318 idir 255
		source: function( requete, add ) {
256
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
257
			requete = '';
258
			if( lthis.utils.valOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
259
				var url = lthis.getUrlAutocompletionNomsSci();
260
				$.getJSON( url, requete, function( data ) {
261
					var suggestions = lthis.traiterRetourNomsSci( data );
262
					add( suggestions );
263
				})
264
				.fail( function() {
265
					$( '#certitude' ).find( 'option' ).each( function() {
266
						if ( $( this ).hasClass( 'aDeterminer' ) ) {
267
							$( this ).attr( 'selected', true );
268
						} else {
269
							$( this ).attr( 'selected', false );
270
						}
271
					});
272
				});
273
			}
274
		},
275
		html: true
276
	});
3334 idir 277
	$( taxonSelecteur ).on( 'autocompleteselect', this.surAutocompletionTaxon );
3318 idir 278
};
279
 
280
LichensLg.prototype.getUrlAutocompletionNomsSci = function() {
3334 idir 281
	var taxonSelecteur = '#taxon';
282
	if ( this.utils.valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
283
		taxonSelecteur += '-autre';
284
	}
285
	var mots = $( taxonSelecteur ).val();
3318 idir 286
	var url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
287
	url = url.replace( '{masque}', mots );
288
 
289
	return url;
290
};
291
 
292
/**
293
 * Objet taxons pour autocompletion en fonction de la recherche
294
 */
295
LichensLg.prototype.traiterRetourNomsSci = function( data ) {
3334 idir 296
	var taxonSelecteur = '#taxon';
3318 idir 297
	var suggestions = [];
298
 
3334 idir 299
	if ( this.utils.valOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
300
		taxonSelecteur += '-autre';
301
	}
3318 idir 302
	if ( undefined != data.resultat ) {
303
		$.each( data.resultat, function( i, val ) {
304
			val.nn = i;
305
 
306
			var nom = {
307
				label : '',
308
				value : '',
309
				nt : 0,
310
				nomSel : '',
311
				nomSelComplet : '',
312
				numNomSel : 0,
313
				nomRet : '',
314
				numNomRet : 0,
315
				famille : '',
316
				retenu : false
317
			};
318
			if ( suggestions.length >= this.autocompletionElementsNbre ) {
319
				nom.label = '...';
3334 idir 320
				nom.value = $( taxonSelecteur ).val();
3318 idir 321
				suggestions.push( nom );
322
				return false;
323
			} else {
324
				nom.label = val.nom_sci_complet;
325
				nom.value = val.nom_sci_complet;
326
				nom.nt = val.num_taxonomique;
327
				nom.nomSel = val.nom_sci;
328
				nom.nomSelComplet = val.nom_sci_complet;
329
				nom.numNomSel = val.nn;
330
				nom.nomRet = val.nom_retenu_complet;
331
				nom.numNomRet = val['nom_retenu.id'];
332
				nom.famille = val.famille;
333
				// Tester dans ce sens, permet de considérer 'absent' comme 'false' => est-ce opportun ?
334
				// en tout cas c'est harmonisé avec le CeL
335
				nom.retenu = ( 'true' == val.retenu );
336
				suggestions.push( nom );
337
			}
338
		});
339
	}
340
	return suggestions;
341
};
342
 
343
/**
344
 * charge les données dans #taxon
345
 */
346
LichensLg.prototype.surAutocompletionTaxon = function( event, ui ) {
3372 idir 347
	const utils = new UtilsLg();
3318 idir 348
 
349
	if ( utils.valOk( ui ) ) {
350
		$( '#taxon' ).val( ui.item.value );
351
		$( '#taxon' ).data( 'value', ui.item.value )
352
			.data( 'numNomSel', ui.item.numNomSel )
353
			.data( 'nomRet', ui.item.nomRet )
354
			.data( 'numNomRet', ui.item.numNomRet )
355
			.data( 'nt', ui.item.nt )
356
			.data( 'famille', ui.item.famille );
357
		if ( ui.item.retenu ) {
358
			$( '#taxon' ).addClass( 'ns-retenu' );
359
		} else {
360
			$( '#taxon' ).removeClass( 'ns-retenu' );
361
		}
362
		// Si l'espèce est mal déterminée la certitude est "à déterminer"
363
		if( !utils.valOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
364
			$( '#certitude' ).find( 'option' ).each( function() {
365
				if ( $( this ).hasClass( 'aDeterminer' ) ) {
366
					$( this ).attr( 'selected', true );
367
				} else {
368
					$( this ).attr( 'selected', false );
369
				}
370
			});
371
		}
372
	}
373
	$( '#taxon' ).change();
374
};
375
 
376
// Fichier Images *************************************************************/
377
/**
378
 * Affiche temporairement (formulaire)
379
 * la miniature d'une image ajoutée à l'obs
380
 */
381
LichensLg.prototype.afficherMiniature = function( reponse ) {
382
	if ( this.debug ) {
383
		var debogage = $( 'debogage', reponse ).text();
384
	}
385
 
386
	var message = $( 'message', reponse ).text();
387
 
388
	if ( this.utils.valOk( message ) ) {
389
		$( '#miniature-msg' ).append( message );
390
	} else {
391
		$( '#miniatures' ).append( this.creerWidgetMiniature( reponse ) );
392
	}
393
	$( '#ajouter-obs' ).removeAttr( 'disabled' );
394
};
395
 
396
/**
397
 * Crée la miniature temporaire (formulaire) + bouton pour l'effacer
398
 */
399
LichensLg.prototype.creerWidgetMiniature = function( reponse ) {
400
	var miniatureUrl = $( 'miniature-url', reponse ).text();
401
	var imgNom = $( 'image-nom', reponse ).text();
402
	var html =
403
		'<div class="miniature mb-3 mr-3">'+
404
			'<img class="miniature-img" class="miniature img-rounded" alt="' + imgNom + '" src="' + miniatureUrl + '"/>'+
405
			'<a class="effacer-miniature"><i class="fas fa-times"></i></a>'+
406
		'</div>';
407
 
408
	return html;
409
};
410
 
411
/**
412
 * Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
413
 */
414
LichensLg.prototype.verifierFormat = function( cheminTmp ) {
415
	var parts     = cheminTmp.split( '.' ),
416
		extension = parts[ parts.length - 1 ];
417
 
418
	return ( 'jpeg' === extension.toLowerCase() || 'jpg' === extension.toLowerCase() );
419
};
420
 
421
/**
422
 * Check les miniatures déjà téléchargées
423
 * renvoie false si le même nom est rencontré 2 fois
424
 * renvoie true sinon
425
 */
426
LichensLg.prototype.verifierDuplication = function( cheminTmp ) {
427
	const lthis = this;
428
	var parts        = cheminTmp.split( '\\' ),
429
		nomImage     = parts[ parts.length - 1 ],
430
		thisSrcParts = [],
431
		thisNomImage = '',
432
		nonDupliquee = true;
433
 
434
	$( 'img.miniature-img,img.miniature' ).each( function() {
435
		// vérification avec alt de l'image
436
		if ( lthis.utils.valOk ( $( this ).attr ( 'alt' ), true, nomImage ) ) {
437
			nonDupliquee = false;
438
			return false;// Pas besoin de poursuivre la boucle
439
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
440
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
441
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' );
442
			if ( lthis.utils.valOk ( thisNomImage, true, nomImage ) ) {
443
				nonDupliquee = false;
444
				return false;
445
			}
446
		}
447
	});
448
	return nonDupliquee;
449
};
450
 
451
/**
452
 * Efface une miniature (formulaire)
453
 */
454
LichensLg.prototype.supprimerMiniature = function( miniature ) {
455
	miniature.parents( '.miniature' ).remove();
456
};
457
 
458
// Ajouter Obs ****************************************************************/
459
 
460
/**
461
 * Ajoute une observation à la liste des obs à transmettre
462
 * (résumé obs)
463
 */
464
LichensLg.prototype.ajouterObs = function() {
465
	// Fermeture automatique des dialogue de transmission de données
466
	// @WARNING TEST
467
	$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
468
	$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
469
	$( 'html, body' ).stop().animate({
470
		scrollTop: $( '#zone-lichens' ).offset().top
471
	}, 300);
472
 
473
	if ( this.validerLichens() ) {
474
		this.masquerPanneau( '#dialogue-form-invalide' );
475
		this.obsNbre  += 1;
476
		$( '.obs-nbre' ).text( this.obsNbre );
477
		$( '.obs-nbre' ).triggerHandler( 'changement' );
478
		//formatage des données
479
		var obsData   = this.formaterFormObsData();
480
 
481
		// Résumé obs et stockage en data de "#list-obs" pour envoi
482
		this.afficherObs( obsData );
483
		this.stockerObsData( obsData );
3334 idir 484
		this.reinitialiserFormLichens();
3318 idir 485
		$( '#barre-progression-upload' ).attr( 'aria-valuemax', this.obsNbre );
486
		$( '#barre-progression-upload .sr-only' ).text( '0/' + this.obsNbre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
487
	} else {
488
		this.afficherPanneau( '#dialogue-form-invalide' );
489
	}
490
};
491
 
3334 idir 492
LichensLg.prototype.reinitialiserFormLichens = function() {
493
	this.supprimerMiniatures();
494
	$( '#taxon,#taxon-autre,#commentaire' ).val( '' );
495
	$( '#taxon' ).removeData( 'value' )
496
		.removeData( 'numNomSel' )
497
		.removeData( 'nomRet' )
498
		.removeData( 'numNomRet' )
499
		.removeData( 'nt' )
500
		.removeData( 'famille' );
501
	$( '#taxon-liste,#certitude' ).find( 'option' ).each( function() {
502
		if ( $( this ).hasClass( 'choisir' ) ) {
503
			$( this ).attr( 'selected', true );
504
		} else {
505
			$( this ).attr( 'selected', false );
506
		}
507
	});
508
	$( '#taxon-input-groupe' ).addClass( 'hidden' );
509
	$( 'input[name=lichens-tronc]:checked' ).each( function() {
510
		$( this ).prop( 'checked', false );
511
	});
512
};
513
 
3318 idir 514
/**
515
 * Formatage des données du formulaire pour stockage et envoi
516
 */
517
LichensLg.prototype.formaterFormObsData = function() {
518
	var numArbre = $( '#choisir-arbre' ).val(),
519
		miniatureImg  = [],
520
		imgB64        = [],
521
		imgNom        = [],
522
		numNomSel     = $( '#taxon' ).data( 'numNomSel' ),
3355 idir 523
		referentiel   = ( !this.utils.valOk( numNomSel ) ) ? 'autre' : this.nomSciReferentiel;
3318 idir 524
 
525
	this.releveDatas = $.parseJSON( $( '#releve-data' ).val() );
526
	imgNom = this.getNomsImgsOriginales();
527
	imgB64 = this.getB64ImgsOriginales();
528
 
529
	var obsData = {
530
		obsNum   : this.obsNbre,
531
		numArbre : numArbre,
532
		lichen   : {
533
			'num_nom_sel'   : numNomSel,
534
			'nom_sel'       : $( '#taxon' ).val(),
535
			'nom_ret'       : $( '#taxon' ).data( 'nomRet' ),
536
			'num_nom_ret'   : $( '#taxon' ).data( 'numNomRet' ),
537
			'num_taxon'     : $( '#taxon' ).data( 'nt' ),
538
			'famille'       : $( '#taxon' ).data( 'famille' ),
539
			'referentiel'   : referentiel,
540
			'certitude'     : ( !this.utils.valOk( numNomSel ) ) ? $( '#certitude' ).val() : 'à determiner',
541
			'date'          : this.utils.fournirDate( $( '#obs-date' ).val() ),
542
			'notes'         : $( '#commentaire' ).val(),
543
			'pays'          : this.releveDatas[0].pays,
544
			'commune_nom'   : this.releveDatas[0]['commune-nom'],
545
			'commune_code_insee' : this.releveDatas[0]['commune-insee'],
546
			'latitude'      : this.releveDatas[numArbre]['latitude-arbres'],
547
			'longitude'     : this.releveDatas[numArbre]['longitude-arbres'],
548
			'altitude'      : this.releveDatas[numArbre]['altitude-arbres'],
549
			//Ajout des champs images
550
			'image_nom'     : imgNom,
551
			'image_b64'     : imgB64,
552
			// Ajout des champs étendus de l'obs
553
			'obs_etendue'   : this.getObsChpLichens( numArbre )
554
		}
555
	};
556
	return obsData;
557
};
558
 
559
/**
560
 * Retourne un Array contenant les valeurs des champs
561
 * dont les données seront transmises dans la table cel-obs-etendues
562
 */
563
LichensLg.prototype.getObsChpLichens = function( numArbre ) {
564
	const lthis = this;
565
 
566
	var retour = [
567
		{ cle : 'num-arbre', valeur : numArbre },
568
		{ cle : 'id_obs_arbre', valeur : this.releveDatas[numArbre]['id_observation'] },
569
		{ cle : 'rue' , valeur : this.releveDatas[0].rue  }
570
	];
571
 
572
	var valeursLT  = '';
573
	const $lichensTronc = $( 'input[name=lichens-tronc]:checked' );
574
	const LTLenght = $lichensTronc.length;
575
 
576
	$( 'input[name=lichens-tronc]:checked' ).each( function( i, value ) {
577
		valeursLT += $(value).val();
578
		if( i < LTLenght ) {
579
			valeursLT += ';';
580
		}
581
	});
582
	retour.push({ cle : 'loc-sur-tronc', valeur : valeursLT });
583
 
584
	return retour;
585
};
586
 
587
/**
588
 * Résumé obs
589
 */
590
LichensLg.prototype.afficherObs = function( datasObs ) {
591
	var obsNum            = datasObs.obsNum,
592
		numArbre          = datasObs.numArbre,
593
		dateObs           = datasObs.lichen.date,
594
		numNomSel         = datasObs.lichen['num_nom_sel'],
595
		taxon             = datasObs.lichen['nom_sel'],
596
		certitude         = datasObs.lichen.certitude,
597
		miniatures        = this.ajouterImgMiniatureAuTransfert(),
598
		commentaires      = '';
599
 
600
	if ( this.utils.valOk( datasObs.lichen.notes ) ) {
601
		commentaires =
602
			this.utils.msgTraduction( 'commentaires' ) +
603
			' : <span>'+
3364 idir 604
				datasObs.lichen.notes +
3318 idir 605
			'</span> ';
606
	}
607
 
608
	var responsivDiff1 = '',
609
		responsivDiff2 = '',
610
		responsivDiff3 = '',
611
		responsivDiff4 = '',
612
		responsivDiff5 = '',
613
		responsivDiff6 = '';
614
 
615
	if ( window.matchMedia( '(min-width: 576px)' ).matches ) {
616
		/* La largeur minimum de l'affichage est 600 px inclus */
617
		responsivDiff1 = ' droite';
618
		responsivDiff2 = '<div></div>';
619
		responsivDiff3 = '<div class="row">';
620
		responsivDiff4 = ' col-md-4 col-sm-5';
621
		responsivDiff5 = ' class="col-md-7 col-sm-6"';
622
		responsivDiff6 = '</div>';
623
	}
624
	$( '#liste-obs' ).prepend(
625
		'<div id="obs' + obsNum + '" class="obs obs' + obsNum + ' mb-2">'+
626
			'<div '+
627
				'class="obs-action" '+
628
				'title="' + this.utils.msgTraduction( 'supprimer-observation-liste' ) + '"'+
629
			'>'+
630
				'<button class="btn btn-danger supprimer-obs' + responsivDiff1 + '" value="'+ obsNum + '" title="' + this.utils.msgTraduction( 'obs-numero' ) + obsNum + '">'+
631
				'<i class="far fa-trash-alt"></i>'+
632
				'</button>'+
633
				responsivDiff2 +
634
			'</div> '+
635
			responsivDiff3 +
636
				'<div class="thumbnail' + responsivDiff4 + '">'+
637
					miniatures+
638
				'</div>'+
639
				'<div' + responsivDiff5 + '>'+
640
					'<ul class="unstyled">'+
641
						'<li>'+
3364 idir 642
							'<span id="obs-lichen-' + numArbre + '" class="badge num-obs-arbre" data-arbre="' + numArbre + '">Arbre ' + numArbre + '</span>' +
3318 idir 643
							' <span class="nom-sci">' + taxon + '</span> '+
644
							this.ajouterNumNomSel( numNomSel ) +
645
							' [certitude : ' + certitude + ']'+
646
							' ' + this.utils.msgTraduction( 'obs-le' ) + ' ' +
647
							'<span class="date">' + dateObs + '</span>'+
648
						'</li>'+
649
						'<li>'+
650
							commentaires +
651
						'</li>'+
652
					'</ul>'+
653
				'</div>'+
654
			responsivDiff6+
655
		'</div>'
656
	);
657
	$( '#zone-liste-obs' ).removeClass( 'hidden' );
658
};
659
 
660
/**
661
 * Ajoute une boîte de miniatures avec défilement des images,
662
 * pour une obs de la liste des obs à transmettre
663
 */
664
LichensLg.prototype.ajouterImgMiniatureAuTransfert = function() {
665
	var html        =
666
			'<div class="defilement-miniatures">'+
667
				'<figure class="centre">'+
668
					'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
669
				'</figure>'+
670
			'</div>',
671
		miniatures   = '',
672
		premiere     = true,
673
		centre       = '';
674
		defilVisible = '';
675
 
676
	if ( this.utils.valOk( $( '#miniatures img' ) ) ) {
677
		$( '#miniatures img' ).each( function() {
678
			var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
679
			premiere = false;
680
 
681
			var css        = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
682
				src        = $( this ).attr( 'src' ),
683
				alt        = $( this ).attr( 'alt' ),
684
				miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
685
 
686
			miniatures += miniature;
687
		});
688
		if ( 1 === $( '#miniatures img' ).length ) {
689
			centre       = 'centre';
690
			defilVisible = ' defilement-miniatures-cache';
691
		}
692
		html             =
693
			'<div class="defilement-miniatures">'+
694
				'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
695
				'<figure class="' + centre + '">'+
696
					miniatures+
697
				'</figure>'+
698
				'<a href="#" class="defilement-miniatures-droite ml-1' + defilVisible + '"><i class="fas fa-chevron-circle-right"></i></a>'+
699
			'</div>';
700
	}
701
	return html;
702
};
703
 
704
/**
705
 * Construit le html à afficher pour le numNom
706
 */
707
LichensLg.prototype.ajouterNumNomSel = function( numNomSel ) {
708
	var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
709
 
710
	if ( !this.utils.valOk( numNomSel ) ) {
711
		nn = '<span class="alert-error">[' + this.utils.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
712
	}
713
 
714
	return nn;
715
};
716
 
717
/**
718
 * Stocke des données d'obs à envoyer à la bdd
719
 */
720
LichensLg.prototype.stockerObsData = function( datasObs ) {
721
	// Stockage en data des données d'obs à transmettre
722
	$( '#liste-obs' ).data( 'obsId' + datasObs.obsNum, datasObs.lichen );
723
};
724
 
725
LichensLg.prototype.getNomsImgsOriginales = function() {
726
	var noms = new Array();
727
 
728
	$( '.miniature-img' ).each( function() {
729
		noms.push( $( this ).attr( 'alt' ) );
730
	});
731
 
732
	return noms;
733
};
734
 
735
LichensLg.prototype.getB64ImgsOriginales = function() {
736
	var b64 = new Array();
737
 
738
	$( '.miniature-img' ).each( function() {
739
		if ( $( this ).hasClass( 'b64' ) ) {
740
			b64.push( $( this ).attr( 'src' ) );
741
		} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
742
			b64.push( $( this ).data( 'b64' ) );
743
		}
744
	});
745
 
746
	return b64;
747
};
748
 
749
/**
750
 * Efface toutes les miniatures (formulaire)
751
 */
752
LichensLg.prototype.supprimerMiniatures = function() {
753
	$( '#miniatures' ).empty();
754
	$( '#miniature-msg' ).empty();
755
};
756
 
757
LichensLg.prototype.surChangementNbreObs = function() {
758
	if ( 0 === this.obsNbre ) {
759
		$( '#transmettre-obs' ).attr( 'disabled', 'disabled' );
760
	} else if ( 0 < this.obsNbre && this.obsNbre < this.obsMaxNbre ) {
761
		$( '#ajouter-obs,#transmettre-obs' ).removeAttr( 'disabled' );
762
	} else if ( this.obsNbre >= this.obsMaxNbre ) {
763
		$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
764
		this.afficherPanneau( '#dialogue-bloquer-creer-obs' );
765
	}
766
};
767
 
768
LichensLg.prototype.defilerMiniatures = function( element ) {
769
	var miniatureSelectionne  = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
770
 
771
	miniatureSelectionne.removeClass( 'miniature-selectionnee' );
772
	miniatureSelectionne.addClass( 'miniature-cachee' );
773
 
774
	var miniatureAffichee     = miniatureSelectionne;
775
 
776
	if( element.hasClass( 'defilement-miniatures-gauche' ) ) {
777
		if( 0 !== miniatureSelectionne.prev( '.miniature' ).length ) {
778
			miniatureAffichee = miniatureSelectionne.prev( '.miniature' );
779
		} else {
780
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).last();
781
		}
782
	} else {
783
		if( 0 !== miniatureSelectionne.next('.miniature').length ) {
784
			miniatureAffichee = miniatureSelectionne.next( '.miniature' );
785
		} else {
786
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).first();
787
		}
788
	}
789
	miniatureAffichee.addClass( 'miniature-selectionnee' );
790
	miniatureAffichee.removeClass( 'miniature-cachee' );
791
};
792
 
793
LichensLg.prototype.supprimerObs = function( selector ) {
794
	var obsId = $( selector ).val();
795
 
796
	// Problème avec IE 6 et 7
797
	if ( 'Supprimer' === obsId ) {
798
		obsId = $( selector ).attr( 'title' );
799
	}
800
	this.supprimerObsParId( obsId );
801
};
802
 
803
/**
804
 * Supprime l'obs et les data de l'obs
805
 * et remonte les suivantes d'un cran
806
 */
807
LichensLg.prototype.supprimerObsParId = function( obsId ) {
808
	this.obsNbre  -= 1;
809
	$( '.obs-nbre' ).text( this.obsNbre );
810
	$( '.obs-nbre' ).triggerHandler( 'changement' );
811
	$( '.obs' + obsId ).remove();
812
 
813
	obsId = parseInt(obsId);
814
	var listObsData = $( '#liste-obs' ).data(),
815
		exId        = 0,
816
		indexObs    = '',
817
		exIndexObs  = '';
818
 
819
	for ( var id = obsId; id <= ( this.obsNbre + 1 ); id++ ) {
820
		exId       = parseInt(id) + 1;
821
		indexObs   = 'obsId' + id;
822
		exIndexObs = 'obsId' + exId;
823
		$( '#liste-obs' ).removeData( indexObs );
824
		if ( this.utils.valOk( listObsData[ exIndexObs ] ) ) {
825
			$( '#liste-obs' ).data( indexObs, listObsData[ exIndexObs ] );
826
		}
827
		$( '#obs' + exId )
828
			.attr( 'id', 'obs' + id )
829
			.removeClass( 'obs' + exId )
830
			.addClass( 'obs' + id )
831
			.find( '.supprimer-obs' )
832
				.attr( 'title', 'Observation n°' + id )
833
				.val( id );
834
		if ( parseInt( id ) !== this.obsNbre ) {
835
			id = parseInt( id );
836
		}
837
	}
838
};
839
 
840
LichensLg.prototype.transmettreObs = function() {
841
	const lthis = this;
842
	var observations = $( '#liste-obs' ).data();
843
 
844
	if ( this.debug ) {
845
		console.log( observations );
846
	}
847
	if ( !this.utils.valOk( typeof observations, true, 'object' ) ) {
848
		this.afficherPanneau( '#dialogue-zero-obs' );
849
	} else {
850
		$( window ).on( 'beforeunload', function( event ) {
851
			return lthis.utils.msgTraduction( 'rechargement-page' );
852
		});
853
		this.nbObsEnCours         = 1;
854
		this.nbObsTransmises      = 0;
855
		this.totalObsATransmettre = $.map( observations, function( n, i ) {
856
			return i;
857
		}).length;
858
		this.depilerObsPourEnvoi();
859
	}
860
 
861
	return false;
862
};
863
 
864
LichensLg.prototype.depilerObsPourEnvoi = function() {
865
	var observations = $( '#liste-obs' ).data();
866
 
867
	// la boucle est factice car on utilise un tableau
868
	// dont on a besoin de n'extraire que le premier élément
869
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
870
	// TODO: utiliser var.keys quand ça sera plus répandu
871
	// ou bien utiliser un vrai tableau et pas un objet
872
	for ( var obsNum in observations ) {
873
		var obsATransmettre = {
874
			'projet'  : this.tagProjet,
875
			'tag-obs' : this.tagObs,
876
			'tag-img' : this.tagImg
877
		};
878
		var utilisateur = {
879
			id_utilisateur : this.infosUtilisateur.id,
880
			prenom         : this.infosUtilisateur.prenom,
881
			nom            : this.infosUtilisateur.nom,
882
			courriel       : $( '#courriel' ).val()
883
		};
884
 
885
		obsATransmettre['utilisateur'] = utilisateur;
886
		obsATransmettre[obsNum]        = observations[obsNum];
887
 
888
		var idObsNumerique = obsNum.replace( 'obsId', '' );
889
 
890
		if( '' !== idObsNumerique ) {
891
			this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
892
		}
893
		break;
894
	}
895
};
896
 
897
LichensLg.prototype.envoyerObsAuCel = function( idObs, observation ) {
898
	const lthis     = this;
899
	var erreurMsg = '';
900
 
901
	$.ajax({
902
		url        : lthis.serviceSaisieUrl,
903
		type       : 'POST',
904
		data       : observation,
905
		dataType   : 'json',
906
		beforeSend : function() {
907
			$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
908
			$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
909
			$( '.alert-txt' ).empty();
910
			$( '.alert-txt .msg-erreur' ).remove();
911
			$( '.alert-txt .msg-debug' ).remove();
912
			$( '#chargement' ).removeClass( 'hidden' );
913
		},
914
		success    : function( data, textStatus, jqXHR ) {
915
			// mise à jour du nombre d'obs à transmettre
916
			// et suppression de l'obs
917
			lthis.supprimerObsParId( idObs );
918
			lthis.nbObsEnCours++;
919
			// mise à jour du statut
920
			lthis.mettreAJourProgression();
921
			if( 0 < lthis.obsNbre ) {
922
				// dépilement de la suivante
923
				lthis.depilerObsPourEnvoi();
924
			}
925
		},
926
		statusCode  : {
927
			500 : function( jqXHR, textStatus, errorThrown ) {
928
				erreurMsg += lthis.utils.msgTraduction( 'erreur' ) + ' 500 :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
929
				}
930
		},
931
		error        : function( jqXHR, textStatus, errorThrown ) {
932
			erreurMsg += lthis.utils.msgTraduction( 'erreur-ajax' ) + ' :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
933
			try {
934
				reponse = jQuery.parseJSON( jqXHR.responseText );
935
				if ( null !== reponse ) {
936
					$.each( reponse, function( cle, valeur ) {
937
						erreurMsg += valeur + '\n';
938
					});
939
				}
940
			} catch( e ) {
941
				erreurMsg += lthis.utils.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
942
			}
943
		},
944
		complete      : function( jqXHR, textStatus ) {
945
			var debugMsg = extraireEnteteDebug( jqXHR );
946
 
947
			if ( '' !== erreurMsg ) {
948
				if ( lthis.debug ) {
949
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
950
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
951
				}
952
				var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
953
					'subject=Dysfonctionnement du widget de saisie ' + lthis.tagProjet+
954
					'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
955
 
956
				// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
957
				$( '#obs' + idObs + ' div div' ).addClass( 'obs-erreur' );
958
				// window.location.hash = 'obs' + idObs;
959
 
960
				$( '#dialogue-obs-transaction-ko .alert-txt' ).append(
961
					$( '#tpl-transmission-ko' ).clone()
962
						.find( '.courriel-erreur' )
963
						.attr( 'href', hrefCourriel )
964
						.end()
965
						.html()
966
				);
967
				$( '#dialogue-obs-transaction-ko' ).removeClass( 'hidden' );
968
				$( '#chargement' ).addClass( 'hidden' );
969
				lthis.initialiserBarreProgression;
970
			} else {
971
				if ( lthis.debug ) {
972
					$( '#dialogue-obs-transaction-ok .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
973
				}
974
				if( 0 === lthis.obsNbre ) {
975
					setTimeout( function() {
976
						$( '#chargement,#bloc-gauche,#bloc-controle-liste-obs' ).addClass( 'hidden' );
977
						$( '#dialogue-obs-transaction-ok .alert-txt' ).append( $( '#tpl-transmission-ok' ).clone().html() );
978
						$( '#dialogue-obs-transaction-ok,#bouton-poursuivre' ).removeClass( 'hidden' );
979
					}, 1500 );
980
				}
981
			}
982
		}
983
	});
984
};
985
 
986
LichensLg.prototype.mettreAJourProgression = function() {
987
	this.nbObsTransmises++;
988
 
989
	var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
990
 
991
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
992
	$( '#barre-progression-upload' ).css( 'width', pct + '%' );
993
	$( '#barre-progression-upload .sr-only' ).text( this.nbObsTransmises + '/' + this.totalObsATransmettre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
994
	if( 0 === this.obsNbre ) {
995
		$( '.progress' ).removeClass( 'active' );
996
		$( '.progress' ).removeClass( 'progress-bar-striped' );
997
	}
998
};
999
 
1000
LichensLg.prototype.initialiserBarreProgression = function() {
1001
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', 0 );
1002
	$( '#barre-progression-upload' ).css( 'width', '0%' );
1003
	$( '#barre-progression-upload .sr-only' ).text( '0/0 ' + this.utils.msgTraduction( 'observations-transmises' ) );
1004
	$( '.progress' ).addClass( 'active' );
1005
	$( '.progress' ).addClass( 'progress-bar-striped' );
1006
};
1007
 
1008
// Form Validator *************************************************************/
1009
LichensLg.prototype.configurerFormValidator = function() {
1010
	const lthis = this;
1011
 
1012
	$.validator.addMethod(
1013
		'dateCel',
1014
		function ( value, element ) {
1015
			return ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) );
1016
		},
1017
		lthis.utils.msgTraduction( 'date-incomplete' )
1018
	);
1019
 
1020
	$.validator.addMethod(
1021
		'userEmailOk',
1022
		function ( value, element ) {
1023
			return ( lthis.utils.valOk( value ) );
1024
		},
1025
		''
1026
	);
1027
 
1028
	$.extend( $.validator.defaults, {
1029
		errorElement: 'span',
1030
		errorPlacement: function( error, element ) {
1031
			element.after( error );
1032
		},
1033
		onfocusout: function( element ) {
1034
			if( lthis.utils.valOk( element.id, false, 'taxon' ) ) {
1035
				if ( $( element ).valid() ) {
1036
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1037
				} else {
1038
					$( element ).closest( '.control-group' ).addClass( 'error' );
1039
				}
1040
			}
1041
		},
1042
		onkeyup : function( element ) {
1043
			if( lthis.utils.valOk( element.id, false, 'taxon' ) ) {
1044
				if ( $( element ).valid() ) {
1045
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1046
				} else {
1047
					$( element ).closest( '.control-group' ).addClass( 'error' );
1048
				}
1049
			}
1050
		},
1051
		unhighlight: function( element ) {
1052
			if( lthis.utils.valOk( element.id, false, 'taxon' ) ) {
1053
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1054
			}
1055
		},
1056
		highlight: function( element ) {
1057
			$( element ).closest( '.control-group' ).addClass( 'error' );
1058
		}
1059
	});
1060
};
1061
 
1062
LichensLg.prototype.definirReglesFormValidator = function() {
1063
	const lthis = this;
1064
 
1065
	$( 'input[type=date]' ).on( 'input', function() {
1066
		$( this ).valid();
1067
	});
1068
	// Validation Taxon si pas de miniature
1069
	$( '#taxon' ).on( 'change', function() {
1070
		var images = lthis.utils.valOk( $( '#miniatures .miniature' ) );
1071
		lthis.validerTaxonImage( lthis.utils.valOk( $( this ).val() ), images );
1072
	});
1073
 
1074
	// // Validation miniatures avec MutationObserver
1075
	// this.surPresenceAbsenceMiniature();
1076
 
1077
	$( '#form-lichens' ).validate({
1078
		rules : {
1079
			'choisir-arbre' : {
1080
				required : true,
1081
				minlength : 1
1082
			},
1083
			'obs-date' : {
1084
				required : true,
1085
				'dateCel' : true
1086
			},
1087
			certitude : {
1088
				required : true,
1089
				minlength : 1
1090
			}
1091
		}
1092
	});
1093
	$( '#form-observateur' ).validate({
1094
		rules : {
1095
			courriel : {
1096
				required : true,
1097
				minlength : 1,
1098
				email : true,
1099
				'userEmailOk' : true
1100
			},
1101
			mdp : {
1102
				required : true,
1103
				minlength : 1
1104
			}
1105
		}
1106
	});
1107
	$( '#connexion,#inscription,#oublie' ).click( function() {
1108
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1109
	});
1110
};
1111
 
1112
LichensLg.prototype.validerTaxonImage = function( taxon = false, images = false ) {
1113
	var taxonOuImage = ( images || taxon );
1114
	if ( images || taxon ) {
1115
		this.masquerPanneau( '#dialogue-taxon-or-image' );
1116
		$( '#bloc-taxon' ).removeClass( 'error' )
1117
			.find( 'span.error' ).hide();
1118
		$( '#fichier' ).parent( 'label.label-file' ).removeClass( 'error' );
1119
		$( '#photos-conteneur').removeClass( 'error' ).find( 'span.error' ).hide();
1120
		// faire passer la certitude à 'à déterminer' si on a une image et pas de taxon
1121
		if( !taxon ) {
1122
			$( '#certitude' ).find( 'option' ).each( function() {
1123
				if ( $( this ).hasClass( 'aDeterminer' ) ) {
1124
					$( this ).attr( 'selected', true );
1125
				} else {
1126
					$( this ).attr( 'selected', false );
1127
				}
1128
			});
1129
		}
1130
	} else {
1131
		this.afficherPanneau( '#dialogue-taxon-or-image' );
1132
		$( '#bloc-taxon' ).addClass( 'error' )
1133
			.find( 'span.error' ).show();
1134
		$( '#fichier' ).parent( 'label.label-file' ).addClass( 'error' );
1135
		$( '#photos-conteneur').addClass( 'error' ).find( 'span.error' ).show();
1136
	}
1137
	return ( images || taxon );
1138
};
1139
 
1140
/**
1141
 * Valide le formulaire au click sur un bouton "suivant"
1142
 */
1143
LichensLg.prototype.validerLichens = function() {
1144
	const images       = this.utils.valOk( $( '#miniatures .miniature' ) );
1145
	const taxon        = this.utils.valOk( $( '#taxon' ).val() );
1146
	const taxonOuImage = this.validerTaxonImage( taxon, images );
1147
	const observateur  = ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() )
1148
	const obs          = $( '#form-lichens' ).valid();
1149
 
1150
	// panneau observateur
1151
	if ( observateur ) {
1152
		this.masquerPanneau( '#dialogue-utilisateur-non-identifie' );
1153
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1154
	} else {
1155
		this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
1156
		$( '#tb-observateur .control-group' ).addClass( 'error' );
1157
	}
1158
 
1159
	return ( observateur && obs && taxonOuImage );
1160
};
1161
 
1162
// Controle des panneaux d'infos **********************************************/
1163
 
1164
LichensLg.prototype.afficherPanneau = function( selecteur ) {
1165
	$( selecteur )
1166
		.removeClass( 'hidden' )
1167
		.hide()
1168
		.show( 600 )
1169
		.delay( this.dureeMessage )
1170
		.hide( 600 );
1171
	$( 'html, body' ).stop().animate({scrollTop: $( selecteur ).offset().top}, 300);
1172
};
1173
 
1174
LichensLg.prototype.masquerPanneau = function( selecteur ) {
1175
	$( selecteur ).addClass( 'hidden' );
1176
};
1177
 
1178
LichensLg.prototype.fermerPanneauAlert = function() {
1179
	$( this ).parentsUntil( '.zone-alerte', '.alert' ).addClass( 'hidden' );
1180
};
1181
 
1182
// lib hors objet --
1183
 
1184
/**
1185
* Stope l'évènement courant quand on clique sur un lien.
1186
* Utile pour Chrome, Safari...
1187
*/
1188
function arreter( event ) {
1189
	if ( event.stopPropagation ) {
1190
		event.stopPropagation();
1191
	}
1192
	if ( event.preventDefault ) {
1193
		event.preventDefault();
1194
	}
1195
 
1196
	return false;
1197
}
1198
 
1199
/**
1200
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
1201
 * @param jqXHR
1202
 * @returns {String}
1203
 */
1204
function extraireEnteteDebug( jqXHR ) {
1205
	var msgDebug = '';
1206
 
1207
	if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
1208
		var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
1209
		if ( null !== debugInfos ) {
1210
			$.each( debugInfos, function( cle, valeur ) {
1211
				msgDebug += valeur + '\n';
1212
			});
1213
		}
1214
	}
1215
 
1216
	return msgDebug;
1217
}
1218
 
1219
/*
1220
 * jQuery UI Autocomplete HTML Extension
1221
 *
1222
 * Copyright 2010, Scott González (http://scottgonzalez.com)
1223
 * Dual licensed under the MIT or GPL Version 2 licenses.
1224
 *
1225
 * http://github.com/scottgonzalez/jquery-ui-extensions
1226
 *
1227
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
1228
 */
1229
( function( $ ) {
1230
	var proto      = $.ui.autocomplete.prototype,
1231
		initSource = proto._initSource;
1232
 
1233
	LichensLg.prototype.filter = function( array, term ) {
1234
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
1235
 
1236
		return $.grep( array, function( value ) {
1237
 
1238
			return matcher.test( $( '<div>' ).html( value.label || value.value || value ).text() );
1239
		});
1240
	}
1241
	$.extend( proto, {
1242
		_initSource: function() {
1243
			if ( this.options.html && $.isArray( this.options.source ) ) {
1244
				this.source = function( request, response ) {
1245
					response( filter( this.options.source, request.term ) );
1246
				};
1247
			} else {
1248
				initSource.call( this );
1249
			}
1250
		},
1251
		_renderItem: function( ul, item) {
1252
			if ( item.retenu ) {
1253
				item.label = '<strong>' + item.label + '</strong>';
1254
			}
1255
 
1256
			return $( '<li></li>' )
1257
				.data( 'item.autocomplete', item )
1258
				.append( $( '<a></a>' )[ ( this.options.html ) ? 'html' : 'text' ]( item.label ) )
1259
				.appendTo( ul );
1260
		}
1261
	});
1262
})( jQuery );