Subversion Repositories eFlore/Applications.cel

Rev

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

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