Subversion Repositories eFlore/Applications.cel

Rev

Rev 3333 | Rev 3368 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3312 idir 1
/**
2
 * Constructeur ReleveApa par défaut
3
 */
4
function ReleveApa() {
5
	this.obsNbre = 0;
6
	this.numArbre = 0;
7
	this.nbObsEnCours = 1;
8
	this.totalObsATransmettre = 0;
9
	this.nbObsTransmises = 0;
10
	this.debug = null;
11
	this.html5 = null;
12
	this.tagProjet = null;
13
	this.tagImg = null;
14
	this.tagObs = null;
15
	this.separationTagImg = null;
16
	this.separationTagObs = null;
17
	this.obsId = null;
18
	this.serviceSaisieUrl = null;
19
	this.serviceObsUrl = null;
20
	this.serviceObsListUrl = null;
21
	this.serviceObsImgs = null;
22
	this.serviceObsImgUrl = null;
23
	this.nomSciReferentiel = null;
24
	this.isTaxonListe = false;
25
	this.autocompletionElementsNbre = null;
26
	this.referentielImpose = null;
27
	this.serviceAutocompletionNomSciUrl = null;
28
	this.serviceAutocompletionNomSciUrlTpl = null;
29
	this.obsMaxNbre = null;
30
	this.dureeMessage = null;
31
	this.serviceNomCommuneUrl = null;
32
	this.serviceNomCommuneUrlAlt = null;
33
	this.chargementImageIconeUrl = null;
34
	this.pasDePhotoIconeUrl = null;
35
	this.infosUtilisateur = {};
36
	this.releveDatas = null;
37
	this.utils = new UtilsApa();
38
}
39
 
40
ReleveApa.prototype.init = function() {
41
	this.initForm();
42
	this.initEvts();
43
};
44
 
45
/**
46
 * Initialise le formulaire, les validateurs, les listes de complétion...
47
 */
48
ReleveApa.prototype.initForm = function() {
49
	const lthis = this;
50
	var releveDatas = [];
51
	this.infosUtilisateur.id     = $( '#id_utilisateur' ).val();
52
	this.infosUtilisateur.prenom = $( '#prenom' ).val();
53
	this.infosUtilisateur.nom    = $( '#nom' ).val();
54
 
55
	if( this.utils.valOk( this.infosUtilisateur.id ) ) {
56
		if ( this.utils.valOk( $( '#releve-data' ).val() ) ) {
57
			const datRuComun = $.parseJSON( $( '#dates-rues-communes' ).val() );
58
			releveDatas = $.parseJSON( $( '#releve-data' ).val() );
59
 
60
			if ( !this.utils.valOk( releveDatas[1] ) || -1 === datRuComun.indexOf( releveDatas[1]['date_rue_commune'] )  ) {
61
				this.releveDatas = releveDatas;
62
				if ( this.utils.valOk( this.releveDatas[0].utilisateur, true, this.infosUtilisateur.id ) ) {
63
					$( '#releve-date' ).val( this.releveDatas[0].date );
64
					this.rechargerFormulaire();
65
					this.saisirArbres();
66
					$( '#bouton-list-releves' )
67
						.removeClass( 'hidden' )
68
						.click( function() {
69
							$( '#table-releves' ).removeClass( 'hidden' );
70
							$( this ).addClass( 'hidden' );
71
					});
72
				}
73
			}
74
		}
75
		if ( this.utils.valOk( $( '#apa-obs' ).val() ) ) {
76
			const apaObs = $.parseJSON( $( '#apa-obs' ).val() );
77
 
78
			$( '.charger-releve,.saisir-plantes,.saisir-lichens' ).click( function() {
79
				var nomSquelette = $( this ).data( 'load' );
80
				releveDatas = apaObs[ $( this ).data( 'releve' ) ];
81
				$( '#releve-data' ).val( JSON.stringify( releveDatas ) );
82
				lthis.utils.chargerForm( nomSquelette, lthis );
83
				$( '#bouton-list-releves' ).removeClass( 'hidden' );
84
				$( '#table-releves' ).addClass( 'hidden' );
85
			});
86
		}
87
	}
88
	this.ajouterAutocompletionNoms();
89
	this.configurerFormValidator();
90
	this.definirReglesFormValidator();
91
};
92
 
93
/**
94
 * Initialise les écouteurs d'événements
95
 */
96
ReleveApa.prototype.initEvts = function() {
97
	const lthis = this;
98
 
99
	$( '#bouton-nouveau-releve' ).click( function() {
100
		$( '#releve-data' ).val( '' );
101
		if ( lthis.utils.valOk( lthis.infosUtilisateur.id ) ) {
102
			lthis.utils.chargerForm( 'arbres', lthis );
103
			$( 'html, body' ).stop().animate({
104
				scrollTop: $( '#zone-observation' ).offset().top
105
			}, 300 );
106
		}
107
	});
108
 
109
	// Empêcher que le module carto ne bind ses events partout
3322 idir 110
	$( '#tb-geolocation' ).on( 'submit blur click focus mousedown mouseleave mouseup change', '*', function( event ) {
3312 idir 111
		event.preventDefault();
112
		return false;
113
	});
114
	$( '#tb-geolocation' ).on( 'location' , lthis.locationHandler.bind( lthis ) );
115
 
116
	// Sur téléchargement image
117
	$( '#fichier' ).on( 'change', function ( e ) {
118
		arreter( e );
119
 
120
		var options        = {
121
			success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
122
			dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
123
			resetForm: true // reset the form after successful submit
124
		};
125
 
126
		$( '#miniature' ).append( '<img id="miniature-chargement" class="miniature" alt="chargement" src="' + this.chargementImageIconeUrl + '"/>' );
127
 
128
		var imgCheminTmp    = $( '#fichier' ).val(),
129
			formatImgOk     = lthis.verifierFormat( imgCheminTmp ),
130
			imgNonDupliquee = lthis.verifierDuplication( imgCheminTmp );
131
 
132
		if( formatImgOk && imgNonDupliquee ) {
133
			$( '#form-upload' ).ajaxSubmit( options );
134
		} else {
135
			$( '#form-upload' )[0].reset();
136
			if ( !formatImgOk ) {
137
				window.alert( lthis.utils.msgTraduction( 'format-non-supporte' ) + ' ' + $( '#fichier' ).attr( 'accept' ) );
138
			}
139
			if ( !imgNonDupliquee ) {
140
				window.alert( lthis.utils.msgTraduction( 'image-deja-chargee' ) );
141
			}
142
		}
143
		return false;
144
	});
145
	// Gérer une option "aucune" sur plusieurs checkboxes
146
	$( '#face-ombre input' ).on( 'click', function () {
147
		if ( 'aucune' === $( this ).val() ) {
148
			$( '#face-ombre input' ).not( '#aucune' ).prop( 'checked' , false );
149
		} else {
150
			$( '#aucune' ).prop( 'checked' , false );
151
		}
152
	});
153
	$( 'body' ).on( 'click', '.effacer-miniature', function() {
154
		$( this ).parent().remove();
155
	});
156
 
157
	$( '#soumettre-releve' ).on( 'click', function( even ) {
158
		event.preventDefault();
159
		lthis.saisirArbres();
160
	});
161
	$( '#ajouter-obs' ).on( 'click', this.ajouterObs.bind( this ) );
162
	$( '.obs-nbre' ).on( 'changement', this.surChangementNbreObs.bind( this ) );
163
	$( '#bloc-info-arbres' ).on( 'click', '.arbre-info', function ( event ) {
164
		event.preventDefault();
165
		$( this ).addClass( 'disabled' );
166
		$( '.arbre-info' ).not( $( this ) ).removeClass( 'disabled' );
167
		var numArbre = $( this ).data( 'arbre-info' );
168
		lthis.chargerInfosArbre( numArbre );
169
	});
170
	// après avoir visualisé les champs d'un arbre, retour à la saisie
171
	$( '#retour' ).on( 'click', function( event ) {
172
		event.preventDefault();
173
		var numArbre = lthis.numArbre + 1;
174
		$( 'html, body' ).stop().animate({
175
			scrollTop: $( '#zone-arbres' ).offset().top
176
		}, 300);
177
		// activation des champs et retour à la saisie
178
		lthis.modeArbresBasculerActivation( false, numArbre );
179
	});
180
	// défilement des miniatures dans le résumé obs
181
	$( 'body' ).on( 'click', '.defilement-miniatures-gauche', function( event ) {
182
		event.preventDefault();
183
		lthis.defilerMiniatures( $( this ) );
184
	});
185
	$( 'body' ).on( 'click', '.defilement-miniatures-droite', function( event ) {
186
		event.preventDefault();
187
		lthis.defilerMiniatures( $( this ) );
188
	});
189
	// mécanisme de suppression d'une obs
190
	$( '#liste-obs' ).on( 'click', '.supprimer-obs', function() {
191
		var that = this,
192
		suppObs = lthis.supprimerObs.bind( lthis );
193
		// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
194
		suppObs( that );
195
	});
196
 
197
	$( '#transmettre-obs' ).on( 'click', this.transmettreObs.bind( this ) );
198
 
199
	// chargement plantes ou lichens
200
	$( '#charger-form' ).on( 'click', '#bouton-saisir-plantes,#bouton-saisir-lichens', function() {
201
		var nomSquelette = $( this ).data( 'load' );
202
		$( '#charger-form' ).data( 'load', nomSquelette );
203
		lthis.utils.chargerForm( nomSquelette, lthis );
204
		$( 'html, body' ).stop().animate({
205
			scrollTop: $( '#charger-form' ).offset().top
206
		}, 300 );
207
	});
208
 
209
	// Alertes et tooltips
210
	$( '.alert .close' ).on( 'click', this.fermerPanneauAlert );
211
	$( '#btn-aide' ).on( 'click', this.basculerAffichageAide );
212
	// $( '.has-tooltip' ).tooltip( 'enable' );
213
};
214
 
215
// Préchargement des infos-obs ************************************************/
216
 
217
/**
218
 * Callback dans le chargement du formulaire dans #charger-form
219
 */
220
ReleveApa.prototype.chargerSquelette = function( squelette, nomSquelette ) {
221
	switch( nomSquelette ) {
222
		case 'plantes' :
223
		case 'lichens' :
224
			this.utils.chargerFormPlantesOuLichens( squelette, nomSquelette );
225
			break;
226
		case 'arbres' :
227
		default :
228
			this.reinitialiserWidget( squelette );
229
		break;
230
	}
231
};
232
 
233
ReleveApa.prototype.reinitialiserWidget = function( squelette ) {
234
	$( '#charger-form' ).html( squelette );
235
	if ( this.utils.valOk( $( '#releve-data' ).val() ) ) {
236
		this.rechargerFormulaire();
237
	}
238
};
239
 
240
/**
241
 * Recharge le formulaire relevé (étape 1) à partir des infos
242
 * présentes dans l'input hidden '#releve-data'
243
 */
244
ReleveApa.prototype.rechargerFormulaire = function() {
245
	const lthis = this;
246
 
247
	this.releveDatas = $.parseJSON( $( '#releve-data' ).val() );
248
	$.each( this.releveDatas[0], function( cle , valeur ) {
249
		if ( 'zone-pietonne' === cle ||  'pres-lampadaires' === cle ) {
250
			$( 'input[name=' + cle + '][value=' + valeur + ']' , '#zone-observation' ).prop( 'checked', true );
251
		} else if ( lthis.utils.valOk( $( '#' + cle ) ) ) {
252
			$( '#' + cle ).val( valeur );
253
		}
254
	});
255
 
256
	$( 'html, body' ).stop().animate({
257
		scrollTop: $( '#charger-form' ).offset().top
258
	}, 300, function() {
259
		$( '#releve-date' ).focus();
260
	});
261
	if (
262
		this.utils.valOk( $( '#latitude' ).val() ) &&
263
		this.utils.valOk( $( '#longitude' ).val() ) &&
264
		this.utils.valOk( $( '#rue' ).val() ) &&
265
		this.utils.valOk( $( '#commune-nom' ).val() )
266
	) {
267
		$( '#geoloc' ).addClass( 'hidden' );
268
		$( '#geoloc-datas' ).removeClass( 'hidden' );
269
	}
270
};
271
 
272
/**
273
 * Recharge le formulaire étape arbres à partir des infos
274
 * présentes dans l'input hidden '#releve-data'
275
 */
276
ReleveApa.prototype.chargerArbres = function() {
277
	this.releveDatas = $.parseJSON( $( '#releve-data' ).val() );
278
	this.obsNbre     = this.releveDatas.length - 1;
279
	this.numArbre    = parseInt( this.releveDatas[ this.obsNbre ]['num-arbre'] ) || this.obsNbre;
280
	$( '.obs-nbre' ).text( this.obsNbre );
281
	$( '.obs-nbre' ).triggerHandler( 'changement' );
282
	$( '#arbre-nb' ).text( this.numArbre + 1 );
283
 
284
	var infosArbre = {
285
		releve : this.releveDatas[0],
286
		obsNum : 0,
287
		arbre  : {}
288
	};
289
 
290
	for( var i = 1; i <= this.obsNbre; i ++ ) {
291
		infosArbre.obsNum = i;
292
		infosArbre.arbre = this.releveDatas[i];
293
		this.lienArbreInfo( infosArbre.arbre['num-arbre'] );
294
		this.afficherObs( infosArbre );
295
		this.stockerObsData( infosArbre, true );
296
	}
297
};
298
 
299
ReleveApa.prototype.lienArbreInfo = function( numArbre ) {
300
	$( '#bloc-info-arbres' ).append(
301
		'<div'+
302
			' id="arbre-info-' + numArbre + '"'+
303
			' class="col-sm-8"'+
304
		'>'+
305
			'<a'+
306
				' id="arbre-info-lien-' + numArbre + '"'+
307
				' href=""'+
308
				' class="arbre-info btn btn-outline-info btn-block mb-3"'+
309
				' data-arbre-info="' + numArbre + '"'+
310
			'>'+
311
				'<i class="fas fa-info-circle"></i>'+
312
				' Arbre ' + numArbre +
313
			'</a>'+
314
		'</div>'
315
	);
316
};
317
 
318
 
319
 
320
// Autocompletion taxons ******************************************************/
321
/**
322
 * Initialise l'autocompletion taxons
323
 */
324
ReleveApa.prototype.ajouterAutocompletionNoms = function() {
325
	const lthis = this;
326
 
327
	$( '#taxon' ).autocomplete({
328
		source: function( requete, add ) {
329
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
330
			requete = '';
331
			if( lthis.utils.valOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
332
				var url = lthis.getUrlAutocompletionNomsSci();
333
				$.getJSON( url, requete, function( data ) {
334
					var suggestions = lthis.traiterRetourNomsSci( data );
335
					add( suggestions );
336
				})
337
				.fail( function() {
338
					$( '#certitude' ).find( 'option' ).each( function() {
339
						if ( $( this ).hasClass( 'aDeterminer' ) ) {
340
							$( this ).attr( 'selected', true );
341
						} else {
342
							$( this ).attr( 'selected', false );
343
						}
344
					});
345
				});
346
			}
347
		},
348
		html: true
349
	});
350
	$( '#taxon' ).on( 'autocompleteselect', this.surAutocompletionTaxon );
351
};
352
 
353
ReleveApa.prototype.getUrlAutocompletionNomsSci = function() {
354
	var mots = $( '#taxon' ).val();
355
	var url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
356
	url = url.replace( '{masque}', mots );
357
 
358
	return url;
359
};
360
 
361
/**
362
 * Objet taxons pour autocompletion en fonction de la recherche
363
 */
364
ReleveApa.prototype.traiterRetourNomsSci = function( data ) {
365
	var suggestions = [];
366
 
367
	if ( undefined != data.resultat ) {
368
		$.each( data.resultat, function( i, val ) {
369
			val.nn = i;
370
 
371
			var nom = {
372
				label : '',
373
				value : '',
374
				nt : 0,
375
				nomSel : '',
376
				nomSelComplet : '',
377
				numNomSel : 0,
378
				nomRet : '',
379
				numNomRet : 0,
380
				famille : '',
381
				retenu : false
382
			};
383
			if ( suggestions.length >= this.autocompletionElementsNbre ) {
384
				nom.label = '...';
385
				nom.value = $( '#taxon' ).val();
386
				suggestions.push( nom );
387
				return false;
388
			} else {
389
				nom.label = val.nom_sci_complet;
390
				nom.value = val.nom_sci_complet;
391
				nom.nt = val.num_taxonomique;
392
				nom.nomSel = val.nom_sci;
393
				nom.nomSelComplet = val.nom_sci_complet;
394
				nom.numNomSel = val.nn;
395
				nom.nomRet = val.nom_retenu_complet;
396
				nom.numNomRet = val['nom_retenu.id'];
397
				nom.famille = val.famille;
398
				// Tester dans ce sens, permet de considérer 'absent' comme 'false' => est-ce opportun ?
399
				// en tout cas c'est harmonisé avec le CeL
400
				nom.retenu = ( 'true' == val.retenu );
401
				suggestions.push( nom );
402
			}
403
		});
404
	}
405
	return suggestions;
406
};
407
 
408
/**
409
 * charge les données dans #taxon
410
 */
411
ReleveApa.prototype.surAutocompletionTaxon = function( event, ui ) {
412
	const utils = new UtilsApa();
413
 
414
	if ( utils.valOk( ui ) ) {
415
		$( '#taxon' ).val( ui.item.value );
416
		$( '#taxon' ).data( 'value', ui.item.value )
417
			.data( 'numNomSel', ui.item.numNomSel )
418
			.data( 'nomRet', ui.item.nomRet )
419
			.data( 'numNomRet', ui.item.numNomRet )
420
			.data( 'nt', ui.item.nt )
421
			.data( 'famille', ui.item.famille );
422
		if ( ui.item.retenu ) {
423
			$( '#taxon' ).addClass( 'ns-retenu' );
424
		} else {
425
			$( '#taxon' ).removeClass( 'ns-retenu' );
426
		}
427
		// Si l'espèce est mal déterminée la certitude est "à déterminer"
428
		if( !utils.valOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
429
			$( '#certitude' ).find( 'option' ).each( function() {
430
				if ( $( this ).hasClass( 'aDeterminer' ) ) {
431
					$( this ).attr( 'selected', true );
432
				} else {
433
					$( this ).attr( 'selected', false );
434
				}
435
			});
436
		}
437
	}
438
	$( '#taxon' ).change();
439
};
440
 
441
// Referentiel ****************************************************************/
442
// N'est pas utilisé en cas de taxon-liste
443
ReleveApa.prototype.surChangementReferentiel = function() {
444
	this.nomSciReferentiel = $( '#referentiel' ).val();
445
	//réinitialise taxon.val
446
	$( '#taxon' ).val( '' );
447
	$( '#taxon' ).data( 'numNomSel', '' );
448
};
449
 
450
// Fichier Images *************************************************************/
451
/**
452
 * Affiche temporairement (formulaire)
453
 * la miniature d'une image ajoutée à l'obs
454
 */
455
ReleveApa.prototype.afficherMiniature = function( reponse ) {
456
	if ( this.debug ) {
457
		var debogage = $( 'debogage', reponse ).text();
458
	}
459
 
460
	var message = $( 'message', reponse ).text();
461
 
462
	if ( this.utils.valOk( message ) ) {
463
		$( '#miniature-msg' ).append( message );
464
	} else {
465
		$( '#miniatures' ).append( this.creerWidgetMiniature( reponse ) );
466
	}
467
	$( '#ajouter-obs' ).removeAttr( 'disabled' );
468
};
469
 
470
/**
471
 * Crée la miniature temporaire (formulaire) + bouton pour l'effacer
472
 */
473
ReleveApa.prototype.creerWidgetMiniature = function( reponse ) {
474
	var miniatureUrl = $( 'miniature-url', reponse ).text();
475
	var imgNom = $( 'image-nom', reponse ).text();
476
	var html =
477
		'<div class="miniature mb-3 mr-3">'+
478
			'<img class="miniature-img" class="miniature img-rounded" alt="' + imgNom + '" src="' + miniatureUrl + '"/>'+
479
			'<a class="effacer-miniature"><i class="fas fa-times"></i></a>'+
480
		'</div>';
481
 
482
	return html;
483
};
484
 
485
/**
486
 * Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
487
 */
488
ReleveApa.prototype.verifierFormat = function( cheminTmp ) {
489
	var parts     = cheminTmp.split( '.' ),
490
		extension = parts[ parts.length - 1 ];
491
 
492
	return ( 'jpeg' === extension.toLowerCase() || 'jpg' === extension.toLowerCase() );
493
};
494
 
495
/**
496
 * Check les miniatures déjà téléchargées
497
 * renvoie false si le même nom est rencontré 2 fois
498
 * renvoie true sinon
499
 */
500
ReleveApa.prototype.verifierDuplication = function( cheminTmp ) {
501
	const lthis = this;
502
	var parts        = cheminTmp.split( '\\' ),
503
		nomImage     = parts[ parts.length - 1 ],
504
		thisSrcParts = [],
505
		thisNomImage = '',
506
		nonDupliquee = true;
507
 
508
	$( 'img.miniature-img,img.miniature' ).each( function() {
509
		// vérification avec alt de l'image
510
		if ( lthis.utils.valOk ( $( this ).attr ( 'alt' ), true, nomImage ) ) {
511
			nonDupliquee = false;
512
			return false;// Pas besoin de poursuivre la boucle
513
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
514
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
515
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' );
516
			if ( lthis.utils.valOk ( thisNomImage, true, nomImage ) ) {
517
				nonDupliquee = false;
518
				return false;
519
			}
520
		}
521
	});
522
	return nonDupliquee;
523
};
524
 
525
/**
526
 * Efface une miniature (formulaire)
527
 */
528
ReleveApa.prototype.supprimerMiniature = function( miniature ) {
529
	miniature.parents( '.miniature' ).remove();
530
};
531
 
532
// Ajouter Obs ****************************************************************/
533
 
534
/**
535
 * Etape formulaire avec transfert carto
536
 */
537
ReleveApa.prototype.saisirArbres = function() {
538
	const lthis = this;
539
 
540
	if ( this.validerReleve() ) {
541
		$( '#soumettre-releve' )
542
			.addClass( 'disabled' )
543
			.attr( 'aria-disabled', true )
544
			.off( event );
545
		$( '#form-observation' ).find( 'input, textarea' ).prop( 'disabled', true );
546
		$( '#zone-arbres,#geoloc-datas' ).removeClass( 'hidden' );
547
		if ( !this.utils.valOk( $( '#releve-data' ).val() ) ) {
548
			this.releveDatas = this.utils.formaterReleveData({
549
				obs  : {
550
					ce_utilisateur     : this.infosUtilisateur.id,
551
					date_observation   : $( '#releve-date' ).val(),
552
					zone_geo           : $( '#commune-nom' ).val(),
553
					ce_zone_geo        : $( '#commune-insee' ).val(),
554
					pays               : $( '#pays' ).val(),
555
					latitude           : $( '#latitude' ).val(),
556
					longitude          : $( '#longitude' ).val(),
557
					altitude           : $( '#altitude' ).val(),
558
					commentaire        : $( '#commentaires' ).val().trim()
559
				},
560
				obsE : {
561
					rue                : $( '#rue' ).val(),
562
					'zone-pietonne'    : $( '#zone-pietonne input:checked' ).val(),
563
					'pres-lampadaires' : $( '#pres-lampadaires input:checked' ).val()
564
				}
565
			});
566
			$( '#releve-data' ).val( JSON.stringify( this.releveDatas ) );
567
			this.numArbre = this.releveDatas.length - 1;
568
		} else {
569
			this.releveDatas = $.parseJSON( $( '#releve-data' ).val() );
570
			this.releveDatas[0].date                = $( '#releve-date' ).val();
571
			this.releveDatas[0]['zone-pietonne']    = $( '#zone-pietonne input:checked' ).val();
572
			this.releveDatas[0]['pres-lampadaires'] = $( '#pres-lampadaires input:checked' ).val();
573
			this.releveDatas[0].commentaires        = $( '#commentaires' ).val().trim();
574
			for ( var i = 1 ; i < this.releveDatas.length; i++ ) {
575
				this.releveDatas[i]['date_rue_commune'] = (
576
					this.releveDatas[0].date +
577
					this.releveDatas[0].rue +
578
					this.releveDatas[0]['commune-nom']
579
				);
580
			}
581
			$( '#releve-data' ).val( JSON.stringify( this.releveDatas ) );
582
			//charger les images
583
			this.chargerImgEnregistrees();
584
			this.numArbre = $.parseJSON( $( '#releve-data' ).val() ).length - 1;
585
		}
586
 
587
		// transfert carto
3322 idir 588
		$( '#tb-geolocation' ).remove();
3312 idir 589
		$( '#geoloc-arbres' ).append(
590
			'<tb-geolocation-element'+
591
				' id="tb-geolocation-arbres"'+
3344 killian 592
				' layer="google hybrid"'+
3312 idir 593
				' zoom_init="20"'+
594
				' lat_init="' + $( '#latitude' ).val() + '"'+
595
				' lng_init="' + $( '#longitude' ).val() + '"'+
596
				' marker="true"'+
597
				' polyline="false"'+
598
				' polygon="false"'+
599
				' show_lat_lng_elevation_inputs="true"'+
600
				' osm_class_filter=""'+
601
				' elevation_provider="mapquest"'+
602
				' map_quest_api_key="mG6oU5clZHRHrOSnAV0QboFI7ahnGg34"'+
603
			'>'+
604
			'</tb-geolocation-element>'
605
		);
606
		// Empêcher que le module carto ne bind ses events partout
3322 idir 607
		$( '#tb-geolocation-arbres' ).on( 'submit blur click focus mousedown mouseleave mouseup change', '*', function( event ) {
3312 idir 608
			event.preventDefault();
609
			return false;
610
		});
3322 idir 611
		$( '#tb-geolocation-arbres' ).on( 'location', this.locationArbresHandler.bind( this ) );
3312 idir 612
	}
613
};
614
 
615
ReleveApa.prototype.chargerImgEnregistrees = function() {
616
	const releveL = this.releveDatas.length;
617
	var idArbre = 0,
618
		last  = false;
619
 
620
	for ( var i = 1; i < releveL; i++ ) {
621
		idArbre = this.releveDatas[i]['id_observation'];
622
 
623
		var urlImgObs = this.serviceObsImgs + idArbre,
624
			imgDatas  = {
625
				'indice'      : i,
626
				'idArbre'     : idArbre,
627
				'numArbre'    : this.releveDatas[i]['num-arbre'],
628
				'nomRet'      : this.releveDatas[i].taxon.nomRet.replace( /\s/, '_' ),
629
				'releveDatas' : this.releveDatas
630
			};
631
 
632
		if ( ( releveL - 1) === i ) {
633
			last = true;
634
		}
635
		this.chargerImgArbre( urlImgObs, imgDatas, last );
636
	}
637
};
638
 
639
ReleveApa.prototype.chargerImgArbre = function( urlImgObs, imgDatas, last ) {
640
	const lthis   = this;
641
 
642
	$.ajax({
643
		url: urlImgObs,
644
		type: 'GET',
645
		success: function( idsImg, textStatus, jqXHR ) {
646
			if ( lthis.utils.valOk( idsImg ) ) {
647
				var urlImg   = '',
648
					images   = [];
649
 
650
				idsImg = idsImg[parseInt( imgDatas.idArbre )];
651
				$.each( idsImg, function( i, idImg ) {
652
					urlImg = lthis.serviceObsImgUrl.replace( '{id}', idImg );
653
					images[i] = {
654
						nom : imgDatas.nomRet + '_arbre'+ imgDatas.numArbre +'_image' + ( i + 1 ),
655
						src : urlImg,
656
						b64 :[],
657
						id  : idImg
658
					};
659
				});
660
				imgDatas.releveDatas[imgDatas.indice]['miniature-img'] = images;
661
				$( '#releve-data' ).val( JSON.stringify( imgDatas.releveDatas ) );
662
				// dejsonifier releve data
663
				// mettre l'array image dans miniature(s?)-img
664
			} else {
665
				console.log( lthis.utils.msgTraduction( 'erreur-image' ) + ' : ' + lthis.utils.msgTraduction( 'arbre' ) + ' ' + imgDatas.idArbre );
666
			}
667
		},
668
		error: function( jqXHR, textStatus, errorThrown ) {
669
			console.log( lthis.utils.msgTraduction( 'erreur-image' ) );
670
		}
671
	})
672
	.always( function() {
673
		if (last) {
674
			lthis.chargerArbres();
675
		}
676
	});
677
};
678
 
679
/**
680
 * Fonction handler de l'évenement location du module tb-geoloc
681
 */
682
ReleveApa.prototype.locationHandler = function( location ) {
3333 idir 683
	const lthis = this;
3329 idir 684
	var locDatas = location.originalEvent.detail;
3312 idir 685
 
686
	if ( this.utils.valOk( locDatas ) ) {
3322 idir 687
		console.log( locDatas );
3329 idir 688
 
3312 idir 689
		var rue          = ( this.utils.valOk( locDatas.osmRoad ) ) ? locDatas.osmRoad : '';
3329 idir 690
		var altitude     = ( this.utils.valOk( locDatas.elevation ) ) ? locDatas.elevation : '';
691
		var pays         = ( this.utils.valOk( locDatas.osmCountryCode ) ) ? locDatas.osmCountryCode.toUpperCase() : 'FR';
692
		var latitude     = '';
693
		var longitude    = '';
3312 idir 694
		var nomCommune   = '';
695
		var	communeInsee = '';
696
 
3329 idir 697
		if ( this.utils.valOk( locDatas.geometry.coordinates ) ) {
698
			if ( 'Point' === locDatas.geometry.type ) {
699
				if ( this.utils.valOk( locDatas.geometry.coordinates[0] ) ) {
700
					longitude = locDatas.geometry.coordinates[0];
701
				}
702
				if ( this.utils.valOk( locDatas.geometry.coordinates[1] ) ) {
703
					latitude = locDatas.geometry.coordinates[1];
704
				}
705
			} else if ( 'LineString' === locDatas.geometry.type ) {// on a besoin que d'un point de la rue
706
				if ( this.utils.valOk( locDatas.geometry.coordinates[0][0] ) ) {
707
					longitude = locDatas.geometry.coordinates[0][0];
708
				}
709
				if ( this.utils.valOk( locDatas.geometry.coordinates[0][1] ) ){
710
					latitude = locDatas.geometry.coordinates[0][1];
711
				}
712
			}
713
		}
3312 idir 714
		if ( this.utils.valOk( locDatas.inseeData ) ) {
715
			nomCommune = locDatas.inseeData.nom;
716
			communeInsee = ( this.utils.valOk( locDatas.inseeData.code ) ) ? locDatas.inseeData.code : '';
717
		} else if ( this.utils.valOk( locDatas.locality ) ) {
718
			nomCommune = locDatas.locality;
3333 idir 719
		} else if ( this.utils.valOk( locDatas.osmCounty ) ) {
3312 idir 720
			nomCommune = locDatas.osmCounty;
721
		}
3322 idir 722
		$( '#rue' ).val( rue );
723
		$( '#latitude' ).val( latitude );
724
		$( '#longitude' ).val( longitude );
725
		$( '#commune-nom' ).val( nomCommune );
726
		$( '#commune-insee' ).val( communeInsee );
727
		$( '#altitude' ).val( altitude );
728
		$( '#pays' ).val( pays );
729
		if ( this.utils.valOk( $( '#rue' ).val() ) && this.utils.valOk( $( '#commune-nom' ).val() ) ) {
3312 idir 730
			$( '#geoloc-error' ).addClass( 'hidden' );
731
		} else {
3333 idir 732
			$( '#geoloc' ).addClass( 'hidden' );
733
			$( '#rue,#commune-nom' ).prop( 'disabled', false );
734
			$( '#geoloc-datas' ).removeClass( 'hidden' );
735
			$( '#geoloc-datas' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 736
			$( '#geoloc-error' ).removeClass( 'hidden' );
737
			$( '#releve-date' ).removeClass( 'erreur' ).closest( '.control-group' ).removeClass( 'error' ).find( '#error-drc' ).remove();
738
		}
3333 idir 739
		$( '#rue,#commune-nom' ).change( function() {
740
			if ( lthis.utils.valOk( $( '#rue' ).val() ) && lthis.utils.valOk( $( '#commune-nom' ).val() ) ) {
741
				$( '#geoloc-error' ).addClass( 'hidden' );
742
			} else {
743
				$( '#geoloc-error' ).removeClass( 'hidden' );
744
			}
745
		});
3312 idir 746
	} else {
747
		console.log( 'Error location' );
748
	}
749
}
750
 
751
/**
3322 idir 752
 * Fonction handler de l'évenement location du module tb-geoloc étape arbres
753
 */
754
ReleveApa.prototype.locationArbresHandler = function( location ) {
3329 idir 755
	var locDatas = location.originalEvent.detail;
3322 idir 756
 
757
	if ( this.utils.valOk( locDatas ) ) {
758
		console.log( locDatas );
3329 idir 759
 
3322 idir 760
		var rue          = ( this.utils.valOk( locDatas.osmRoad ) ) ? locDatas.osmRoad : '';
761
		var altitude     = ( this.utils.valOk( locDatas.elevation ) ) ? locDatas.elevation : '';
3329 idir 762
		var latitude     = '';
763
		var longitude    = '';
3322 idir 764
 
3329 idir 765
		if ( this.utils.valOk( locDatas.geometry.coordinates ) ) {
766
			if ( 'Point' === locDatas.geometry.type ) {
767
				if ( this.utils.valOk( locDatas.geometry.coordinates[0] ) ) {
768
					longitude = locDatas.geometry.coordinates[0];
769
				}
770
				if ( this.utils.valOk( locDatas.geometry.coordinates[1] ) ) {
771
					latitude = locDatas.geometry.coordinates[1];
772
				}
773
			} else if ( 'LineString' === locDatas.geometry.type ) {// on a besoin que d'un point de la rue
774
				if ( this.utils.valOk( locDatas.geometry.coordinates[0][0] ) ) {
775
					longitude = locDatas.geometry.coordinates[0][0];
776
				}
777
				if ( this.utils.valOk( locDatas.geometry.coordinates[0][1] ) ){
778
					latitude = locDatas.geometry.coordinates[0][1];
779
				}
780
			}
781
		}
3322 idir 782
		$( '#rue-arbres' ).val( rue );
783
		$( '#latitude-arbres' ).val( latitude );
784
		$( '#longitude-arbres' ).val( longitude );
785
		$( '#altitude-arbres' ).val( altitude );
786
		if ( this.utils.valOk( $( '#latitude-arbres' ).val() ) && this.utils.valOk( $( '#longitude-arbres' ).val() ) ) {
787
			$( '#geoloc-arbres' ).closest( '.control-group' ).removeClass( 'error' );
788
		} else {
789
			$( '#geoloc-arbres' ).closest( '.control-group' ).addClass( 'error' );
790
		}
791
	} else {
792
		console.log( 'Error location' );
793
	}
794
}
795
 
796
/**
3312 idir 797
 * Ajoute une observation à la liste des obs à transmettre
798
 * (résumé obs)
799
 */
800
ReleveApa.prototype.ajouterObs = function() {
801
	// Fermeture automatique des dialogue de transmission de données
802
	// @WARNING TEST
803
	$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
804
	$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
805
	$( 'html, body' ).stop().animate({
806
		scrollTop: $( '#zone-arbres' ).offset().top
807
	}, 300);
808
 
809
	if ( this.validerArbres() ) {
810
		this.masquerPanneau( '#dialogue-form-invalide' );
811
		this.obsNbre  += 1;
812
		this.numArbre += 1;
813
		$( '.obs-nbre' ).text( this.obsNbre );
814
		$( '.obs-nbre' ).triggerHandler( 'changement' );
815
		// bouton info de cet arbre et affichage numéro du prochain arbre
816
		this.lienArbreInfo( this.numArbre );
817
		$( '#arbre-nb' ).text( this.numArbre + 1 );
818
		//formatage des données
819
		var obsData   = this.formaterFormObsData(),
820
			arbreData = obsData.arbre;
821
 
822
		// Résumé obs et stockage en data de "#list-obs" pour envoi
823
		this.afficherObs( obsData );
824
		this.stockerObsData( obsData );
825
		// Ajout de donnée utiles puis stockage dans input hidden "releve-data"
826
		arbreData['date_rue_commune']  = obsData.releve.date + obsData.releve.rue + obsData.releve['commune-nom'];
827
		arbreData['id_observation']    = 0;
828
		this.releveDatas               = $.parseJSON( $( '#releve-data' ).val() );
829
		this.releveDatas[this.obsNbre] = arbreData;
830
		$( '#releve-data' ).val( JSON.stringify( this.releveDatas ) );
3333 idir 831
		this.modeArbresBasculerActivation( false );
3312 idir 832
		$( '#barre-progression-upload' ).attr( 'aria-valuemax', this.obsNbre );
833
		$( '#barre-progression-upload .sr-only' ).text( '0/' + this.obsNbre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
834
	} else {
835
		this.afficherPanneau( '#dialogue-form-invalide' );
836
	}
837
};
838
 
839
/**
840
 * Formatage des données du formulaire pour stockage et envoi
841
 */
842
ReleveApa.prototype.formaterFormObsData = function() {
843
	var miniatureImg  = [],
844
		faceOmbre     = [],
845
		imgB64        = [],
846
		imgNom        = [],
847
		numNomSel     = $( '#taxon' ).data( 'numNomSel' ),
848
		referentiel   = ( !this.utils.valOk( numNomSel ) ) ? 'autre' : 'bdtfx';
849
 
850
	$( '.miniature-img' ).each( function() {
851
		if ( $( this ).hasClass( 'b64' ) ) {
852
			imgB64 = $( this ).attr( 'src' );
853
		} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
854
			imgB64 = $( this ).data( 'b64' );
855
		}
856
		miniatureImg.push({
857
			'nom' : $( this ).attr( 'alt' ),
858
			'src' : $( this ).attr( 'src' ),
859
			'b64' : imgB64
860
		});
861
	});
862
	$( '#face-ombre input' ).each( function() {
863
		if( $( this ).is( ':checked' ) ) {
864
			faceOmbre.push( $( this ).val() );
865
		}
866
	});
867
	var obsData = {
868
		obsNum : this.obsNbre,
869
		arbre  : {
870
			'num-arbre'            : this.numArbre,
871
			'taxon'                : {
872
				'numNomSel' : numNomSel,
873
				'value'     : $( '#taxon' ).val(),
874
				'nomRet'    : $( '#taxon' ).data( 'nomRet' ),
875
				'numNomRet' : $( '#taxon' ).data( 'numNomRet' ),
876
				'nt'        : $( '#taxon' ).data( 'nt' ),
877
				'famille'   : $( '#taxon' ).data( 'famille' )
878
			},
879
			'referentiel'           : referentiel,
880
			'certitude'             : $( '#certitude' ).val(),
3322 idir 881
			'rue-arbres'            : $( '#rue-arbres' ).val(),
3312 idir 882
			'latitude-arbres'       : $( '#latitude-arbres' ).val(),
883
			'longitude-arbres'      : $( '#longitude-arbres' ).val(),
884
			'altitude-arbres'       : $( '#altitude-arbres' ).val(),
885
			'circonference'         : $( '#circonference' ).val(),
886
			'surface-pied'          : $( '#surface-pied' ).val(),
887
			'equipement-pied-arbre' : $( '#equipement-pied-arbre' ).val(),
888
			'tassement'             : $( '#tassement' ).val(),
889
			'dejections'            : $( '#dejections input:checked' ).val(),
890
			'face-ombre'            : faceOmbre,
891
			'com-arbres'            : $( '#com-arbres' ).val(),
892
			'miniature-img'         : miniatureImg,
893
		},
894
		releve : {
895
			'date'                  : this.utils.fournirDate( $( '#releve-date' ).val() ),
896
			'rue'                   : $( '#rue' ).val(),
897
			'latitude'              : $( '#latitude' ).val(),
898
			'longitude'             : $( '#longitude' ).val(),
899
			'altitude'              : $( '#altitude' ).val(),
3322 idir 900
			'commune-nom'           : $( '#commune-nom' ).val(),
901
			'commune-insee'         : $( '#commune-insee' ).val(),
902
			'pays'                  : $( '#pays' ).val(),
3312 idir 903
			'zone-pietonne'         : $( '#zone-pietonne input:checked' ).val(),
3322 idir 904
			'pres-lampadaires'      : $( '#pres-lampadaires input:checked' ).val(),
905
			'commentaires'          : $( '#commentaires' ).val()
3312 idir 906
		}
907
	};
908
	return obsData;
909
};
910
 
911
/**
912
 * Résumé obs
913
 */
914
ReleveApa.prototype.afficherObs = function( datasObs ) {
915
	var obsNum            = datasObs.obsNum,
916
		numArbre          = datasObs.arbre['num-arbre'],
917
		dateObs           = this.utils.fournirDate( datasObs.releve.date ),
918
		numNomSel         = datasObs.arbre.taxon.numNomSel,
919
		taxon             = datasObs.arbre.taxon.value,
920
		certitude         = datasObs.arbre.certitude,
3322 idir 921
		rue               = datasObs.arbre['rue-arbres'],
3312 idir 922
		commune           = datasObs.releve['commune-nom'],
923
		latitudeLongitude = '[' + datasObs.arbre['latitude-arbres'] + ' / ' + datasObs.arbre['longitude-arbres'] + ']',
924
		miniatures        = this.ajouterImgMiniatureAuTransfert( datasObs.arbre['miniature-img'] ),
925
		commentaires      = '';
926
 
927
	if ( this.utils.valOk( datasObs.arbre['com-arbres'] ) ) {
928
		commentaires =
929
			this.utils.msgTraduction( 'commentaires' ) +
930
			' : <span>'+
931
				datasObs.arbre['com-arbres'] +
932
			'</span> ';
933
	}
934
 
935
	var responsivDiff1 = '',
936
		responsivDiff2 = '',
937
		responsivDiff3 = '',
938
		responsivDiff4 = '',
939
		responsivDiff5 = '',
940
		responsivDiff6 = '';
941
 
942
	if ( window.matchMedia( '(min-width: 576px)' ).matches ) {
943
		/* La largeur minimum de l'affichage est 600 px inclus */
944
		responsivDiff1 = ' droite';
945
		responsivDiff2 = '<div></div>';
946
		responsivDiff3 = '<div class="row">';
947
		responsivDiff4 = ' col-md-4 col-sm-5';
948
		responsivDiff5 = ' class="col-md-7 col-sm-6"';
949
		responsivDiff6 = '</div>';
950
	}
951
	$( '#liste-obs' ).prepend(
952
		'<div id="obs' + obsNum + '" class="obs obs' + obsNum + ' mb-2">'+
953
			'<div '+
954
				'class="obs-action" '+
955
				'title="' + this.utils.msgTraduction( 'supprimer-observation-liste' ) + '"'+
956
			'>'+
957
				'<button class="btn btn-danger supprimer-obs' + responsivDiff1 + '" value="'+ obsNum + '" title="' + this.utils.msgTraduction( 'obs-numero' ) + obsNum + '">'+
958
				'<i class="far fa-trash-alt"></i>'+
959
				'</button>'+
960
				responsivDiff2 +
961
			'</div> '+
962
			responsivDiff3 +
963
				'<div class="thumbnail' + responsivDiff4 + '">'+
964
					miniatures+
965
				'</div>'+
966
				'<div' + responsivDiff5 + '>'+
967
					'<ul class="unstyled">'+
968
						'<li>'+
969
							'<span id="obs-arbre-' + numArbre + '" class="badge num-obs-arbre" data-arbre="' + numArbre + '">Arbre ' + numArbre + '</span>' +
970
							' <span class="nom-sci">' + taxon + '</span> '+
971
							' [certitude : ' + certitude + ']'+
972
							' '  + this.utils.msgTraduction( 'lieu-obs' ) +
973
							' ' + rue +
974
							', ' + commune +
975
							latitudeLongitude +
976
							' ' + this.utils.msgTraduction( 'obs-le' ) + ' ' +
977
							'<span class="date">' + this.utils.fournirDate( dateObs ) + '</span>'+
978
						'</li>'+
979
						'<li>'+
980
							commentaires +
981
						'</li>'+
982
					'</ul>'+
983
				'</div>'+
984
			responsivDiff6+
985
		'</div>'
986
	);
987
	$( '#zone-liste-obs' ).removeClass( 'hidden' );
988
};
989
 
990
/**
991
 * Ajoute une boîte de miniatures avec défilement des images,
992
 * pour une obs de la liste des obs à transmettre
993
 */
994
ReleveApa.prototype.ajouterImgMiniatureAuTransfert = function( chargerImages ) {
995
	const lthis = this;
996
	var html         =
997
			'<div class="defilement-miniatures">'+
998
				'<figure class="centre">'+
999
					'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
1000
				'</figure>'+
1001
			'</div>',
1002
		miniatures   = '',
1003
		centre       = '',
1004
		defilVisible = '',
1005
		length       = 0;
1006
 
1007
	if ( this.utils.valOk( chargerImages ) || this.utils.valOk( $( '#miniatures img' ) ) ) {
1008
		if ( this.utils.valOk( chargerImages ) ) {
1009
			$.each(  chargerImages, function( i, value ) {
1010
				var imgVisible = ( 0 < i ) ? 'miniature-cachee' : 'miniature-selectionnee';
1011
 
1012
				var css        = ( lthis.utils.valOk( value['b64'] ) ) ? 'miniature b64' : 'miniature',
1013
					src        = value.src,
1014
					alt        = value.nom,
1015
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
1016
 
1017
				miniatures += miniature;
1018
			});
1019
			length = chargerImages.length;
1020
 
1021
		} else {
1022
			var premiere     = true;
1023
			$( '#miniatures img' ).each( function() {
1024
				var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
1025
				premiere = false;
1026
 
1027
				var css        = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
1028
					src        = $( this ).attr( 'src' ),
1029
					alt        = $( this ).attr( 'alt' ),
1030
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
1031
 
1032
				miniatures += miniature;
1033
			});
1034
			length = $( '#miniatures img' ).length;
1035
		}
1036
		if ( 1 === length ) {
1037
			centre       = 'centre';
1038
			defilVisible = ' defilement-miniatures-cache';
1039
		}
1040
		html             =
1041
			'<div class="defilement-miniatures">'+
1042
				'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
1043
				'<figure class="' + centre + '">'+
1044
					miniatures+
1045
				'</figure>'+
1046
				'<a href="#" class="defilement-miniatures-droite ml-1' + defilVisible + '"><i class="fas fa-chevron-circle-right"></i></a>'+
1047
			'</div>';
1048
	}
1049
 
1050
	return html;
1051
};
1052
 
1053
/**
1054
 * Construit le html à afficher pour le numNom
1055
 */
1056
ReleveApa.prototype.ajouterNumNomSel = function( numNomSel ) {
1057
	var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
1058
 
1059
	if ( !this.utils.valOk( numNomSel ) ) {
1060
		nn = '<span class="alert-error">[' + this.utils.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
1061
	}
1062
 
1063
	return nn;
1064
};
1065
 
1066
/**
1067
 * Stocke des données d'obs à envoyer à la bdd
1068
 */
1069
ReleveApa.prototype.stockerObsData = function( obsDatas ) {
1070
	const lthis = this;
1071
	var obsNum      = obsDatas.obsNum,
1072
		numNomSel   = obsDatas.arbre.taxon.numNomSel,
1073
		referentiel = ( !this.utils.valOk( numNomSel ) ) ? 'autre' : 'bdtfx',
1074
		date        = lthis.utils.fournirDate( obsDatas.releve.date ),
1075
		// si releve dupliqué on ne stocke pas l'image :
1076
		stockerImg  = this.utils.valOk( obsDatas.arbre['miniature-img'] ),
1077
		imgNom      = [],
1078
		imgB64      = [];
1079
 
1080
		if( stockerImg ) {
1081
			$.each( obsDatas.arbre['miniature-img'], function( i, obj ) {
1082
				if( obj.hasOwnProperty( 'id' ) ) {
1083
					stockerImg = false;
1084
				}
1085
				return stockerImg;
1086
			});
1087
		}
1088
		if ( stockerImg ) {
1089
			$.each( obsDatas.arbre['miniature-img'] , function(i, value) {
1090
				if( lthis.utils.valOk( value.nom ) ) {
1091
					imgNom.push( value.nom );
1092
				}
1093
				if( lthis.utils.valOk( value['b64'] ) ) {
1094
					imgB64.push( value['b64'] );
1095
				}
1096
			});
1097
		} else {
1098
			imgNom = lthis.getNomsImgsOriginales();
1099
			imgB64 = lthis.getB64ImgsOriginales();
1100
		}
1101
 
1102
	// Stockage en data des données d'obs à transmettre
1103
	$( '#liste-obs' ).data( 'obsId' + obsNum, {
1104
		'num_nom_sel'        : numNomSel,
1105
		'nom_sel'            : obsDatas.arbre.taxon.value,
1106
		'nom_ret'            : obsDatas.arbre.taxon.nomRet,
1107
		'num_nom_ret'        : obsDatas.arbre.taxon.numNomRet,
1108
		'num_taxon'          : obsDatas.arbre.taxon.nt,
1109
		'famille'            : obsDatas.arbre.taxon.famille,
1110
		'referentiel'        : referentiel,
1111
		'certitude'          : obsDatas.arbre.certitude,
1112
		'date'               : date,
1113
		'notes'              : obsDatas.releve.commentaires.trim(),
1114
		'pays'               : obsDatas.releve.pays,
1115
		'commune_nom'        : obsDatas.releve['commune-nom'],
1116
		'commune_code_insee' : obsDatas.releve['commune-insee'],
1117
		'latitude'           : obsDatas.releve.latitude,
1118
		'longitude'          : obsDatas.releve.longitude,
1119
		'altitude'           : obsDatas.releve.altitude,
1120
		//Ajout des champs images
1121
		'image_nom'          : imgNom,
1122
		'image_b64'          : imgB64,
1123
		// Ajout des champs étendus de l'obs
1124
		'obs_etendue'        : lthis.getObsChpArbres( obsDatas )
1125
	});
1126
};
1127
 
1128
ReleveApa.prototype.getNomsImgsOriginales = function() {
1129
	var noms = new Array();
1130
 
1131
	$( '.miniature-img' ).each( function() {
1132
		noms.push( $( this ).attr( 'alt' ) );
1133
	});
1134
 
1135
	return noms;
1136
};
1137
 
1138
ReleveApa.prototype.getB64ImgsOriginales = function() {
1139
	var b64 = new Array();
1140
 
1141
	$( '.miniature-img' ).each( function() {
1142
		if ( $( this ).hasClass( 'b64' ) ) {
1143
			b64.push( $( this ).attr( 'src' ) );
1144
		} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
1145
			b64.push( $( this ).data( 'b64' ) );
1146
		}
1147
	});
1148
 
1149
	return b64;
1150
};
1151
 
1152
/**
1153
 * Retourne un Array contenant les valeurs des champs
1154
 * dont les données seront transmises dans la table cel-obs-etendues
1155
 */
1156
ReleveApa.prototype.getObsChpArbres = function( datasArbres ) {
1157
	const lthis = this;
1158
 
1159
	var retour = [],
1160
		champs = [
1161
			'rue',
1162
			'zone-pietonne',
1163
			'pres-lampadaires',
3322 idir 1164
			'rue-arbres',
3312 idir 1165
			'latitude-arbres',
1166
			'longitude-arbres',
1167
			'altitude-arbres',
1168
			'circonference',
1169
			'surface-pied',
1170
			'equipement-pied-arbre',
1171
			'tassement',
1172
			'dejections',
1173
			'com-arbres'
1174
		];
1175
 
1176
	var cleValeur       = '',
1177
		faceOmbre       = '',
1178
		faceOmbreLength = datasArbres.arbre['face-ombre'].length;
1179
 
1180
	$.each( champs, function( i ,value ) {
1181
		cleValeur = ( 3 > i ) ? 'releve' : 'arbre';
1182
 
1183
		if ( lthis.utils.valOk( datasArbres[cleValeur][value] ) ) {
1184
			retour.push({ cle : value, valeur : datasArbres[cleValeur][value] });
1185
		}
1186
	});
1187
	if ( 'string' === typeof datasArbres.arbre['face-ombre'] ) {
1188
		faceOmbre = datasArbres.arbre['face-ombre'];
1189
	} else {
1190
		$.each( datasArbres.arbre['face-ombre'], function( i ,value ) {
1191
			faceOmbre += value
1192
			if ( faceOmbreLength > ( i + 1 ) ) {
1193
				faceOmbre += ';';
1194
			}
1195
		});
1196
	}
1197
	retour.push(
1198
		{ cle : 'face-ombre', valeur : faceOmbre },
1199
		{ cle : 'num_arbre' , valeur : datasArbres.obsNum }
1200
	);
1201
 
1202
	var stockerImg  = this.utils.valOk( datasArbres.arbre['miniature-img'] );
1203
 
1204
	if( stockerImg ) {
1205
		$.each( datasArbres.arbre['miniature-img'], function( i, paramsImg ) {
1206
			if( !paramsImg.hasOwnProperty( 'id' ) ) {
1207
				stockerImg = false;
1208
			}
1209
			return stockerImg;
1210
		});
1211
	}
1212
	if( stockerImg ) {
1213
		retour.push({ cle : 'miniature-img' , valeur : JSON.stringify( datasArbres.arbre['miniature-img'] ) });
1214
	}
1215
 
1216
	return retour;
1217
};
1218
 
1219
/**
1220
 * Efface toutes les miniatures (formulaire)
1221
 */
1222
ReleveApa.prototype.supprimerMiniatures = function() {
1223
	$( '#miniatures' ).empty();
1224
	$( '#miniature-msg' ).empty();
1225
};
1226
 
1227
ReleveApa.prototype.surChangementNbreObs = function() {
1228
	if ( 0 === this.obsNbre ) {
1229
		$( '#transmettre-obs' ).attr( 'disabled', 'disabled' );
1230
		// $( '#zone-liste-obs' ).addClass( 'hidden' );
1231
		$( '#bloc-form-arbres' ).removeClass( 'hidden' );
1232
	} else if ( 0 < this.obsNbre && this.obsNbre < this.obsMaxNbre ) {
1233
		$( '#ajouter-obs,#transmettre-obs' ).removeAttr( 'disabled' );
1234
		$( '#bloc-form-arbres' ).removeClass( 'hidden' );
1235
	} else if ( this.obsNbre >= this.obsMaxNbre ) {
1236
		$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
1237
		$( '#bloc-form-arbres' ).addClass( 'hidden' );
1238
		this.afficherPanneau( '#dialogue-bloquer-creer-obs' );
1239
	}
1240
};
1241
 
1242
ReleveApa.prototype.chargerInfosArbre = function( numArbre ) {
1243
	const lthis = this;
1244
	var desactiverForm = ( parseInt( numArbre ) !== ( this.numArbre + 1 ) );
1245
 
1246
	if ( desactiverForm ) {
1247
		var releveDatas = $.parseJSON( $( '#releve-data' ).val() ),
1248
			arbreDatas  = releveDatas[numArbre],
1249
			taxon       = {item:{}},
1250
			imgHtml     = '';
1251
 
1252
		$( '#arbre-nb').text( numArbre );
1253
 
1254
		taxon.item = arbreDatas.taxon;
1255
		this.surAutocompletionTaxon( {}, taxon );
1256
 
1257
		const SELECTS = ['certitude','equipement-pied-arbre','tassement'];
1258
 
1259
		$.each( SELECTS, function( i, value ) {
1260
			if( !lthis.utils.valOk( arbreDatas[value] ) ) {
1261
				arbreDatas[value] = '';
1262
			}
1263
			if ( $( this ).hasClass( 'other' ) && lthis.utils.valOk( $( this ).val() ) ) {
1264
				$( this ).text( $( this ).val() );
1265
			}
1266
			$( '#' + value + ' option' ).each( function() {
1267
				if ( arbreDatas[value] === $( this ).val() ) {
1268
					$( this ).prop( 'selected', true );
1269
				} else {
1270
					$( this ).prop( 'selected', false );
1271
				}
1272
			});
1273
		});
3322 idir 1274
		$( '#rue-arbres' ).val(arbreDatas['rue-arbres']);
3312 idir 1275
		$( '#latitude-arbres' ).val(arbreDatas['latitude-arbres']);
1276
		$( '#longitude-arbres' ).val(arbreDatas['longitude-arbres']);
1277
		$( '#altitude-arbres' ).val(arbreDatas['altitude-arbres']);
1278
		// image
1279
		this.supprimerMiniatures();
1280
		$.each( arbreDatas['miniature-img'], function( i, value ) {
1281
			imgHtml +=
1282
			'<div class="miniature mb-3 mr-3">'+
1283
				'<img class="miniature-img" class="miniature img-rounded" alt="' + value.nom + '" src="' + value.src + '"/>'+
1284
			'</div>';
1285
		});
1286
		$( '#miniatures' ).append( imgHtml );
1287
		$( '#circonference' ).val( arbreDatas.circonference );
1288
		$( '#surface-pied' ).val( arbreDatas['surface-pied'] );
1289
		$( '#com-arbres' ).val( arbreDatas['com-arbres'] );
1290
		if ( undefined != arbreDatas.dejections ) {
1291
			$( '#dejections-oui' ).prop( 'checked', arbreDatas.dejections );
1292
			$( '#dejections-non' ).prop( 'checked', !arbreDatas.dejections );
1293
		}
1294
		$( '#face-ombre input' ).each( function() {
1295
			if ( -1 < arbreDatas['face-ombre'].indexOf( $( this ).val() ) ) {
1296
				$( this ).prop( 'checked', true );
1297
			} else {
1298
				$( this ).prop( 'checked', false );
1299
			}
1300
		});
1301
	}
1302
	this.modeArbresBasculerActivation( desactiverForm, numArbre );
1303
};
1304
 
1305
ReleveApa.prototype.modeArbresBasculerActivation = function( desactiver, numArbre = 0 ) {
1306
	$(
1307
		'#taxon,'+
1308
		'#certitude,'+
1309
		'#equipement-pied-arbre,'+
1310
		'#tassement,'+
1311
		'#latitude-arbres,'+
1312
		'#longitude-arbres,'+
1313
		'#rue-arbres,'+
1314
		'#fichier,'+
1315
		'#circonference,'+
1316
		'#surface-pied,'+
1317
		'#com-arbres,'+
1318
		'#ajouter-obs'
1319
	).prop( 'disabled', desactiver );
1320
	$( '#dejections,#face-ombre' ).find( 'input' ).prop( 'disabled', desactiver );
1321
 
1322
	if ( desactiver ) {
1323
		$( '#geoloc-arbres,#bouton-fichier,#miniature-arbres-info' ).addClass( 'hidden' );
1324
		$( '#geoloc-datas-arbres,#retour' ).removeClass( 'hidden' );
1325
	} else {
1326
		// quand on change ou qu'on revient à la normale :
1327
		$( '#geoloc-arbres,#bouton-fichier,#miniature-arbres-info' ).removeClass( 'hidden' );
1328
		$( '#geoloc-datas-arbres,#retour' ).addClass( 'hidden' );
1329
		// retour aux valeurs par defaut
1330
		$( '#equipement-pied-arbre .other' ).text( 'Autre' ).val( 'other' );
1331
		$(
1332
			'#certitude option,'+
1333
			'#equipement-pied-arbre option,'+
1334
			'#tassement option'
1335
		).each( function() {
1336
			if ( $( this ).hasClass( 'choisir' ) ) {
1337
				$( this ).prop( 'selected', true );
1338
			} else {
1339
				$( this ).prop( 'selected', false );
1340
			}
1341
		});
1342
		this.supprimerMiniatures();
1343
		$( '#dejections,#face-ombre' ).find( 'input' ).prop( 'checked', false );
1344
		$(
1345
			'#circonference,'+
1346
			'#surface-pied,'+
1347
			'#com-arbres,'+
1348
			'#rue-arbres,'+
1349
			'#latitude-arbres,'+
1350
			'#longitude-arbres,'+
1351
			'#certitude,'+
1352
			'#equipement-pied-arbre,'+
1353
			'#tassement'
1354
		).val( '' );
3333 idir 1355
		if( 0 < numArbre ) {
1356
			$( '#arbre-nb' ).text( numArbre );
1357
			$( '#arbre-info-lien-' + numArbre ).addClass( 'disabled' );
1358
			$( '.arbre-info' ).not( '#arbre-info-lien-' + numArbre ).removeClass( 'disabled' );
1359
		}
3312 idir 1360
	}
1361
};
1362
 
1363
ReleveApa.prototype.defilerMiniatures = function( element ) {
1364
	var miniatureSelectionne  = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
1365
 
1366
	miniatureSelectionne.removeClass( 'miniature-selectionnee' );
1367
	miniatureSelectionne.addClass( 'miniature-cachee' );
1368
 
1369
	var miniatureAffichee     = miniatureSelectionne;
1370
 
1371
	if( element.hasClass( 'defilement-miniatures-gauche' ) ) {
1372
		if( 0 !== miniatureSelectionne.prev( '.miniature' ).length ) {
1373
			miniatureAffichee = miniatureSelectionne.prev( '.miniature' );
1374
		} else {
1375
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).last();
1376
		}
1377
	} else {
1378
		if( 0 !== miniatureSelectionne.next('.miniature').length ) {
1379
			miniatureAffichee = miniatureSelectionne.next( '.miniature' );
1380
		} else {
1381
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).first();
1382
		}
1383
	}
1384
	miniatureAffichee.addClass( 'miniature-selectionnee' );
1385
	miniatureAffichee.removeClass( 'miniature-cachee' );
1386
};
1387
 
1388
ReleveApa.prototype.supprimerObs = function( selector ) {
1389
	var obsId = $( selector ).val();
1390
 
1391
	// Problème avec IE 6 et 7
1392
	if ( 'Supprimer' === obsId ) {
1393
		obsId = $( selector ).attr( 'title' );
1394
	}
1395
	this.supprimerObsParId( obsId );
1396
};
1397
 
1398
/**
1399
 * Supprime l'obs et les data de l'obs
1400
 * et remonte les suivantes d'un cran
1401
 */
1402
ReleveApa.prototype.supprimerObsParId = function( obsId, transmission = false ) {
1403
	if ( !transmission ) {
1404
		this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1405
		this.releveData.splice( obsId , 1 );
1406
		$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
1407
	}
1408
	$( '#arbre-info-' + ( this.numArbre ) ).remove();
1409
	$( '#arbre-nb' ).text( this.numArbre );
1410
 
1411
	this.obsNbre  -= 1;
1412
	this.numArbre -= 1;
1413
	$( '.obs-nbre' ).text( this.obsNbre );
1414
	$( '.obs-nbre' ).triggerHandler( 'changement' );
1415
	$( '.obs' + obsId ).remove();
1416
 
1417
	obsId = parseInt(obsId);
1418
	var listObsData = $( '#liste-obs' ).data(),
1419
		exId        = 0,
1420
		indexObs    = '',
1421
		exIndexObs  = '',
3333 idir 1422
		arbreExId   = 0,
1423
		arbreId     = 0;
3312 idir 1424
 
1425
	for ( var id = obsId; id <= ( this.obsNbre + 1 ); id++ ) {
1426
		exId       = parseInt(id) + 1;
1427
		indexObs   = 'obsId' + id;
1428
		exIndexObs = 'obsId' + exId;
1429
		arbreExId  = parseInt( $( '#obs-arbre-' + exId ).data( 'arbre' ) );
1430
		arbreId    = arbreExId - 1;
1431
		$( '#liste-obs' ).removeData( indexObs );
1432
		if ( this.utils.valOk( listObsData[ exIndexObs ] ) ) {
1433
			$( '#liste-obs' ).data( indexObs, listObsData[ exIndexObs ] );
1434
		}
1435
		$( '#obs' + exId )
1436
			.attr( 'id', 'obs' + id )
1437
			.removeClass( 'obs' + exId )
1438
			.addClass( 'obs' + id )
1439
			.find( '.supprimer-obs' )
1440
				.attr( 'title', 'Observation n°' + id )
1441
				.val( id );
1442
		$( '#obs-arbre-' + arbreExId )
1443
			.attr( 'id', 'obs-arbre-' + arbreId )
1444
			.attr( 'data-arbre', arbreId )
1445
			.data( 'arbre', arbreId )
1446
			.text( 'Arbre ' + arbreId );
1447
 
1448
		if ( parseInt( id ) !== this.obsNbre ) {
1449
			id = parseInt(id);
1450
		}
1451
	}
1452
};
1453
 
1454
/*
1455
 * Actualise l'id_observation ( id de l'obs en bdd )
1456
 * à partir des données renvoyées par le service après transfert
1457
 */
1458
ReleveApa.prototype.actualiserReleveDataIdObs = function( obsId, id_observation ) {
1459
	this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1460
	this.releveData[obsId ]['id_observation'] = id_observation;
1461
	$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
1462
};
1463
 
1464
ReleveApa.prototype.transmettreObs = function() {
1465
	const lthis = this;
1466
	var observations = $( '#liste-obs' ).data();
1467
 
1468
	if ( this.debug ) {
1469
		console.log( observations );
1470
	}
1471
	if ( !this.utils.valOk( typeof observations, true, 'object' ) ) {
1472
		this.afficherPanneau( '#dialogue-zero-obs' );
1473
	} else {
1474
		$( window ).on( 'beforeunload', function( event ) {
1475
			return lthis.utils.msgTraduction( 'rechargement-page' );
1476
		});
1477
		this.nbObsEnCours         = 1;
1478
		this.nbObsTransmises      = 0;
1479
		this.totalObsATransmettre = $.map( observations, function( n, i ) {
1480
			return i;
1481
		}).length;
1482
		this.depilerObsPourEnvoi();
1483
	}
1484
 
1485
	return false;
1486
};
1487
 
1488
ReleveApa.prototype.depilerObsPourEnvoi = function() {
1489
	var observations = $( '#liste-obs' ).data();
1490
 
1491
	// la boucle est factice car on utilise un tableau
1492
	// dont on a besoin de n'extraire que le premier élément
1493
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
1494
	// TODO: utiliser var.keys quand ça sera plus répandu
1495
	// ou bien utiliser un vrai tableau et pas un objet
1496
	for ( var obsNum in observations ) {
1497
		var obsATransmettre = {
1498
			'projet'  : this.tagProjet,
1499
			'tag-obs' : this.tagObs,
1500
			'tag-img' : this.tagImg
1501
		};
1502
		var utilisateur = {
1503
			id_utilisateur : this.infosUtilisateur.id,
1504
			prenom         : this.infosUtilisateur.prenom,
1505
			nom            : this.infosUtilisateur.nom,
1506
			courriel       : $( '#courriel' ).val()
1507
		};
1508
 
1509
		obsATransmettre['utilisateur'] = utilisateur;
1510
		obsATransmettre[obsNum]        = observations[obsNum];
1511
 
1512
		var idObsNumerique = obsNum.replace( 'obsId', '' );
1513
 
1514
		if( '' !== idObsNumerique ) {
1515
			this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
1516
		}
1517
		break;
1518
	}
1519
};
1520
 
1521
ReleveApa.prototype.envoyerObsAuCel = function( idObs, observation ) {
1522
	const lthis     = this;
1523
	var erreurMsg = '';
1524
 
1525
	$.ajax({
1526
		url        : lthis.serviceSaisieUrl,
1527
		type       : 'POST',
1528
		data       : observation,
1529
		dataType   : 'json',
1530
		beforeSend : function() {
1531
			$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
1532
			$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
1533
			$( '.alert-txt' ).empty();
1534
			$( '.alert-txt .msg-erreur' ).remove();
1535
			$( '.alert-txt .msg-debug' ).remove();
1536
			$( '#chargement' ).removeClass( 'hidden' );
1537
		},
1538
		success    : function( transfertDatas, textStatus, jqXHR ) {
1539
			// actualisation de id_observation dans '#releve-data'
1540
			lthis.actualiserReleveDataIdObs( idObs, transfertDatas.id );
1541
			// mise à jour du nombre d'obs à transmettre
1542
			// et suppression de l'obs
1543
			lthis.supprimerObsParId( idObs, true );
1544
			lthis.nbObsEnCours++;
1545
			// mise à jour du statut
1546
			lthis.mettreAJourProgression();
1547
			if( 0 < lthis.obsNbre ) {
1548
				// dépilement de la suivante
1549
				lthis.depilerObsPourEnvoi();
1550
			}
1551
		},
1552
		statusCode  : {
1553
			500 : function( jqXHR, textStatus, errorThrown ) {
1554
				erreurMsg += lthis.utils.msgTraduction( 'erreur' ) + ' 500 :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
1555
				}
1556
		},
1557
		error        : function( jqXHR, textStatus, errorThrown ) {
1558
			erreurMsg += lthis.utils.msgTraduction( 'erreur-ajax' ) + ' :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
1559
			try {
1560
				reponse = jQuery.parseJSON( jqXHR.responseText );
1561
				if ( null !== reponse ) {
1562
					$.each( reponse, function( cle, valeur ) {
1563
						erreurMsg += valeur + '\n';
1564
					});
1565
				}
1566
			} catch( e ) {
1567
				erreurMsg += lthis.utils.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
1568
			}
1569
		},
1570
		complete      : function( jqXHR, textStatus ) {
1571
			var debugMsg = extraireEnteteDebug( jqXHR );
1572
 
1573
			if ( '' !== erreurMsg ) {
1574
				if ( lthis.debug ) {
1575
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
1576
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1577
				}
1578
				var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
1579
					'subject=Dysfonctionnement du widget de saisie ' + lthis.tagProjet+
1580
					'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
1581
 
1582
				// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
1583
				$( '#obs' + idObs + ' div div' ).addClass( 'obs-erreur' );
1584
				// window.location.hash = 'obs' + idObs;
1585
 
1586
				$( '#dialogue-obs-transaction-ko .alert-txt' ).append(
1587
					$( '#tpl-transmission-ko' ).clone()
1588
						.find( '.courriel-erreur' )
1589
						.attr( 'href', hrefCourriel )
1590
						.end()
1591
						.html()
1592
				);
1593
				$( '#dialogue-obs-transaction-ko' ).removeClass( 'hidden' );
1594
				$( '#chargement' ).addClass( 'hidden' );
1595
				lthis.initialiserBarreProgression;
1596
			} else {
1597
				if ( lthis.debug ) {
1598
					$( '#dialogue-obs-transaction-ok .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1599
				}
1600
				if( 0 === lthis.obsNbre ) {
1601
					setTimeout( function() {
1602
						$( '#chargement,#bloc-arbres-gauche,#bloc-controle-liste-obs' ).addClass( 'hidden' );
1603
						$( '#dialogue-obs-transaction-ok .alert-txt' ).append( $( '#tpl-transmission-ok' ).clone().html() );
1604
						$( '#dialogue-obs-transaction-ok,#bouton-saisir-plantes,#bouton-saisir-lichens' ).removeClass( 'hidden' );
1605
					}, 1500 );
1606
				}
1607
			}
1608
		}
1609
	});
1610
};
1611
 
1612
ReleveApa.prototype.mettreAJourProgression = function() {
1613
	this.nbObsTransmises++;
1614
 
1615
	var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
1616
 
1617
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
1618
	$( '#barre-progression-upload' ).css( 'width', pct + '%' );
1619
	$( '#barre-progression-upload .sr-only' ).text( this.nbObsTransmises + '/' + this.totalObsATransmettre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
1620
	if( 0 === this.obsNbre ) {
1621
		$( '.progress' ).removeClass( 'active' );
1622
		$( '.progress' ).removeClass( 'progress-bar-striped' );
1623
	}
1624
};
1625
 
1626
ReleveApa.prototype.initialiserBarreProgression = function() {
1627
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', 0 );
1628
	$( '#barre-progression-upload' ).css( 'width', '0%' );
1629
	$( '#barre-progression-upload .sr-only' ).text( '0/0 ' + this.utils.msgTraduction( 'observations-transmises' ) );
1630
	$( '.progress' ).addClass( 'active' );
1631
	$( '.progress' ).addClass( 'progress-bar-striped' );
1632
};
1633
 
1634
// Form Validator *************************************************************/
1635
ReleveApa.prototype.configurerFormValidator = function() {
1636
	const lthis = this;
1637
 
1638
	$.validator.addMethod(
1639
		'dateCel',
1640
		function ( value, element ) {
1641
			return ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) );
1642
		},
1643
		lthis.utils.msgTraduction( 'date-incomplete' )
1644
	);
1645
 
1646
	$.validator.addMethod(
1647
		'userEmailOk',
1648
		function ( value, element ) {
1649
			return ( lthis.utils.valOk( value ) );
1650
		},
1651
		''
1652
	);
1653
	$.validator.addMethod(
1654
		'minMaxOk',
1655
		function ( value, element, param ) {
1656
			$.validator.messages.minMaxOk = lthis.validerMinMax( element ).message;
1657
			return lthis.validerMinMax( element ).cond;
1658
		},
1659
		$.validator.messages.minMaxOk
1660
	);
1661
 
1662
	$.extend( $.validator.defaults, {
1663
		errorElement: 'span',
1664
		errorPlacement: function( error, element ) {
1665
			if ( 'checkbox' === element.attr( 'type' ) || 'radio' === element.attr( 'type' ) ) {
1666
				error.appendTo( element.closest( '.list' ) );
1667
			} else {
1668
				element.after( error );
1669
			}
1670
		},
1671
		onfocusout: function( element ) {
1672
			if ( $( element ).valid() ) {
1673
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1674
			} else {
1675
				$( element ).closest( '.control-group' ).addClass( 'error' );
1676
			}
1677
		},
1678
		onkeyup : function( element ) {
1679
			if ( $( element ).valid() ) {
1680
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1681
			} else {
1682
				$( element ).closest( '.control-group' ).addClass( 'error' );
1683
			}
1684
		},
1685
		unhighlight: function( element ) {
1686
			$( element ).closest( '.control-group' ).removeClass( 'error' );
1687
		},
1688
		highlight: function( element ) {
1689
			$( element ).closest( '.control-group' ).addClass( 'error' );
1690
		}
1691
	});
1692
};
1693
 
1694
ReleveApa.prototype.validerMinMax = function( element ) {
1695
	var mMCond      = new Boolean(),
1696
		minCond     = parseFloat( element.value ) >= parseFloat( element.min ),
1697
		maxCond     = parseFloat( element.value ) <= parseFloat( element.max ),
1698
		messageMnMx = 'La valeur entrée doit être',
1699
		returnMnMx  = { cond : true , message : '' };
1700
 
1701
	if (
1702
			( this.utils.valOk( element.type, true, 'number' ) || this.utils.valOk( element.type, true, 'range' ) ) &&
1703
			( this.utils.valOk( element.min ) || this.utils.valOk( element.max ) )
1704
		) {
1705
 
1706
		if ( element.min && element.max ) {
1707
			messageMnMx += ' comprise entre ' + element.min + ' et ' + element.max;
1708
			mnMxCond     = ( minCond && maxCond );
1709
		} else if ( element.min ) {
1710
			messageMnMx += ' supérieure à ' + element.min;
1711
			mnMxCond     = minCond;
1712
		} else {
1713
			messageMnMx += ' inférieure à ' + element.max;
1714
			mnMxCond     = maxCond;
1715
		}
1716
		returnMnMx.cond    = mnMxCond;
1717
		returnMnMx.message = messageMnMx;
1718
	}
1719
 
1720
	return returnMnMx;
1721
};
1722
 
1723
/**
1724
 * Valider date/rue/commune par rapport aux relevés précédents
1725
 */
1726
ReleveApa.prototype.validerDateRueCommune = function( valeurDate, valeurRue, valeurCmn ) {
1727
	var valide = true;
1728
 
1729
	if (
1730
		this.utils.valOk( $( '#dates-rues-communes' ).val() ) &&
1731
		this.utils.valOk( valeurDate ) &&
1732
		this.utils.valOk( valeurRue ) &&
1733
		this.utils.valOk( valeurCmn )
1734
	) {
1735
		var valsEltDRC = $.parseJSON( $( '#dates-rues-communes' ).val() ),
1736
			valeurDRC = valeurDate + valeurRue + valeurCmn;
1737
		valide = ( -1 === valsEltDRC.indexOf( valeurDRC ) );
1738
 
1739
	}
1740
	return valide;
1741
};
1742
 
1743
/**
1744
 * FormValidator pour les champs date/rue/Commune
1745
 */
1746
ReleveApa.prototype.dateRueCommuneFormValidator = function() {
1747
	var dateValid    = ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( $( '#releve-date' ).val() ) ),
1748
		geolocValid  = ( this.utils.valOk( $( '#commune-nom' ).val() ) && this.utils.valOk( $( '#rue' ).val() ) );
1749
	const errorDateRue =
1750
			'<span id="error-drc" class="error">'+
1751
				this.utils.msgTraduction( 'date-rue' )+
1752
			'</span> ';
1753
 
1754
	if( this.validerDateRueCommune( $( '#releve-date' ).val(), $( '#rue' ).val(), $( '#commune-nom' ).val()  ) ) {
1755
		$( '#releve-date' )
1756
			.removeClass( 'erreur' )
1757
			.closest( '.control-group' )
1758
				.removeClass( 'error' )
1759
				.find( '#error-drc' )
1760
					.remove();
1761
		if ( geolocValid ) {
1762
			$( '#geoloc' )
1763
			.closest( '.control-group' )
1764
				.removeClass( 'error' );
1765
		}
1766
	} else {
1767
		$( '#releve-date' )
1768
			.addClass( 'erreur' )
1769
			.closest( '.control-group' )
1770
				.addClass( 'error' );
1771
		if ( !this.utils.valOk( $( '#releve-date' ).closest( '.control-group' ).find( '#error-drc' ) ) ) {
1772
			$( '#releve-date' ).after( errorDateRue );
1773
		}
1774
		$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
1775
	}
1776
	if ( dateValid ) {
1777
		$( '#releve-date' ).closest( '.control-group span.error' ).not( '#error-drc' ).remove();
1778
	}
1779
};
1780
 
1781
ReleveApa.prototype.definirReglesFormValidator = function() {
1782
	const lthis = this;
1783
 
1784
	$( '#form-observation' ).validate({
1785
		rules : {
1786
			'zone-pietonne' : {
1787
				required : true,
1788
				minlength : 1
1789
			},
1790
			latitude : {
1791
				required : true,
1792
				minlength : 1,
1793
				range : [-90, 90]
1794
			},
1795
			longitude : {
1796
				required : true,
1797
				minlength : 1,
1798
				range : [-180, 180]
1799
			}
1800
		}
1801
	});
1802
	$( 'input[type=date]' ).not( '#releve-date' ).on( 'input', function() {
1803
		$( this ).valid();
1804
	});
1805
	// validation date/rue/commune au démarage
1806
	this.dateRueCommuneFormValidator();
1807
	// validation date/rue/commune sur event
1808
	$( '#releve-date,#rue,#commune-nom' ).on( 'change input focusout', this.dateRueCommuneFormValidator.bind( this ) );
1809
	$( '#form-arbre' ).validate({
1810
		rules : {
1811
			taxon : {
1812
				required : true,
1813
				minlength : 1
1814
			},
1815
			certitude : {
1816
				required : true,
1817
				minlength : 1
1818
			},
1819
			'latitude-arbres' : {
1820
				required : true,
1821
				minlength : 1,
1822
				range : [-90, 90]
1823
			},
1824
			'longitude-arbres' : {
1825
				required : true,
1826
				minlength : 1,
1827
				range : [-180, 180]
1828
			}
1829
		}
1830
	});
1831
	$( '#form-arbre-fs' ).validate({
1832
		onkeyup : false,
1833
		onclick : false,
1834
		rules : {
1835
			circonference : {
1836
				required : true,
1837
				minlength : 1//,
1838
				//'minMaxOk' : true
1839
			},
1840
			'surface-pied' : {
1841
				required : true,
1842
				minlength : 1,
1843
				'minMaxOk' : true
1844
			},
1845
			'equipement-pied-arbre' : {
1846
				required : true,
1847
				minlength : 1
1848
			},
1849
			'face-ombre' : {
1850
				required : true,
1851
				minlength : 1
1852
			}
1853
		}
1854
	});
1855
	$( '#equipement-pied-arbre' ).change( function() {
1856
		if ( lthis.utils.valOk( $( this ).val(), false, 'other' ) ) {
1857
			$( this )
1858
				.closest( '.control-group' )
1859
					.removeClass( 'error' )
1860
					.find( 'span.error' )
1861
						.addClass( 'hidden' );
1862
		}
1863
	});
1864
	$( '#form-observateur' ).validate({
1865
		rules : {
1866
			courriel : {
1867
				required : true,
1868
				minlength : 1,
1869
				email : true,
1870
				'userEmailOk' : true
1871
			},
1872
			mdp : {
1873
				required : true,
1874
				minlength : 1
1875
			}
1876
		}
1877
	});
1878
	$( '#face-ombre input' ).click( function() {
1879
		var oneIsChecked = false;
1880
		$( '#face-ombre input' ).each( function() {
1881
			if ( $( this ).is( ':checked' ) ) {
1882
				oneIsChecked = true;
1883
				return false;
1884
			}
1885
		});
1886
		if ( oneIsChecked ) {
1887
			$( '#face-ombre.control-group' )
1888
				.removeClass( 'error' )
1889
				.find( 'span.error' )
1890
					.addClass( 'hidden' );
1891
		} else {
1892
			$( '#face-ombre.control-group' )
1893
				.addClass( 'error' )
1894
				.find( 'span.error' )
1895
					.removeClass( 'hidden' );
1896
		}
1897
	});
1898
	$( '#connexion,#inscription,#oublie' ).click( function() {
1899
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1900
	});
1901
};
1902
 
1903
/**
1904
 * Valide le formulaire Relevé (= étape 1) au click sur un bouton "enregistrer"
1905
 */
1906
ReleveApa.prototype.validerReleve = function() {
1907
	const observateur = ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() )
1908
	const obs         = $( '#form-observation' ).valid();
1909
	const geoloc      = (
1910
		this.utils.valOk( $( '#latitude' ).val() ) &&
1911
		this.utils.valOk( $( '#longitude' ).val() ) &&
1912
		this.utils.valOk( $( '#rue' ).val() ) &&
1913
		this.utils.valOk( $( '#commune-nom' ).val() )
1914
	) ;
1915
	var dateRue = true;
1916
	if ( this.utils.valOk( $( '#dates-rues-communes' ).val() ) ) {
1917
		dateRue = (
1918
			this.utils.valOk( $( '#releve-date' ).val() ) &&
1919
			this.utils.valOk( $( '#rue' ).val() ) &&
1920
			this.validerDateRueCommune( $( '#releve-date' ).val(), $( '#rue' ).val(), $( '#commune-nom' ).val() )
1921
		);
1922
	}
1923
	if ( !obs ) {
1924
		$( 'html, body' ).stop().animate({
1925
			scrollTop: $( '#zone-observation' ).offset().top
1926
		}, 300 );
1927
	}
1928
	// panneau observateur
1929
	if ( observateur ) {
1930
		this.masquerPanneau( '#dialogue-utilisateur-non-identifie' );
1931
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1932
	} else {
1933
		this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
1934
		$( '#tb-observateur .control-group' ).addClass( 'error' );
1935
	}
1936
	if ( dateRue && geoloc ) {
1937
		this.masquerPanneau( '#dialogue-date-rue-ko' );
1938
		$( '#geoloc-datas' ).closest( '.control-group' ).removeClass( 'error' );
1939
	} else {
1940
		if (
1941
			this.utils.valOk( $( '#releve-date' ).val() ) &&
1942
			this.utils.valOk( $( '#rue' ).val() ) &&
1943
			this.utils.valOk( $( '#dates-rues-communes' ).val() )
1944
		) {
1945
			this.afficherPanneau( '#dialogue-date-rue-ko' );
1946
		}
1947
		$( '#geoloc-datas' ).closest( '.control-group' ).addClass( 'error' );
1948
	}
1949
	if (
1950
		!this.utils.valOk( $( '#releve-date' ).val() ) ||
1951
		!this.utils.valOk( $( '#rue' ).val() ) ||
1952
		!this.utils.valOk( $( '#dates-rues-communes' ).val() )
1953
	) {
1954
		this.masquerPanneau( '#dialogue-date-rue-ko' );
1955
	}
1956
	if ( geoloc ) {
1957
		this.masquerPanneau( '#dialogue-geoloc-ko' );
1958
		if ( dateRue ) {
3322 idir 1959
			$( '#geoloc' ).closest( '.control-group' ).removeClass( 'error' );
3312 idir 1960
		}
1961
	} else {
1962
		this.afficherPanneau( '#dialogue-geoloc-ko' );
3322 idir 1963
		$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 1964
	}
1965
 
3322 idir 1966
	return  (observateur && obs && geoloc && dateRue);
3312 idir 1967
};
1968
 
1969
/**
1970
 * Valide le formulaire Arbres (= étape 2) au click sur un bouton "suivant"
1971
 */
3322 idir 1972
ReleveApa.prototype.validerArbres = function() {
1973
	const validerReleve = this.validerReleve();
3312 idir 1974
	const geoloc      = (
1975
		this.utils.valOk( $( '#latitude-arbres' ).val() ) &&
3322 idir 1976
		this.utils.valOk( $( '#longitude-arbres' ).val() )
3312 idir 1977
	);
1978
	const piedArbre = this.utils.valOk( $( '#equipement-pied-arbre' ).val(), false, 'other' );
1979
	const taxon = this.utils.valOk( $( '#taxon' ).val() );
1980
	const obs   = (
1981
		$( '#form-arbre' ).valid() &&
1982
		$( '#form-arbre-fs' ).valid() &&
1983
		piedArbre
1984
	);
1985
 
1986
	if ( piedArbre ) {
1987
		$( '#equipement-pied-arbre' )
1988
			.closest( '.control-group' )
1989
				.removeClass( 'error' )
1990
				.find( 'span.error' )
1991
					.addClass( 'hidden' );
1992
	} else {
1993
		$( '#equipement-pied-arbre' )
1994
			.closest( '.control-group' )
1995
				.addClass( 'error' )
1996
				.find( 'span.error' )
1997
					.removeClass( 'hidden' );
1998
	}
1999
	if ( geoloc ) {
2000
		this.masquerPanneau( '#dialogue-geoloc-ko' );
3322 idir 2001
		$( '#geoloc-arbres' ).closest( '.control-group' ).removeClass( 'error' );
3312 idir 2002
	} else {
2003
		this.afficherPanneau( '#dialogue-geoloc-ko' );
3322 idir 2004
		$( '#geoloc-arbres' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 2005
	}
2006
 
3322 idir 2007
	return ( validerReleve && obs && geoloc && taxon );
3312 idir 2008
};
2009
 
2010
// Controle des panneaux d'infos **********************************************/
2011
 
2012
ReleveApa.prototype.afficherPanneau = function( selecteur ) {
2013
	$( selecteur )
2014
		.removeClass( 'hidden' )
2015
		.hide()
2016
		.show( 600 )
2017
		.delay( this.dureeMessage )
2018
		.hide( 600 );
2019
	$( 'html, body' ).stop().animate({scrollTop: $( selecteur ).offset().top}, 300);
2020
};
2021
 
2022
ReleveApa.prototype.masquerPanneau = function( selecteur ) {
2023
	$( selecteur ).addClass( 'hidden' );
2024
};
2025
 
2026
ReleveApa.prototype.fermerPanneauAlert = function() {
2027
	$( this ).parentsUntil( '.zone-alerte', '.alert' ).addClass( 'hidden' );
2028
};
2029
 
2030
// lib hors objet --
2031
 
2032
/**
2033
* Stope l'évènement courant quand on clique sur un lien.
2034
* Utile pour Chrome, Safari...
2035
*/
2036
function arreter( event ) {
2037
	if ( event.stopPropagation ) {
2038
		event.stopPropagation();
2039
	}
2040
	if ( event.preventDefault ) {
2041
		event.preventDefault();
2042
	}
2043
 
2044
	return false;
2045
}
2046
 
2047
/**
2048
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
2049
 * @param jqXHR
2050
 * @returns {String}
2051
 */
2052
function extraireEnteteDebug( jqXHR ) {
2053
	var msgDebug = '';
2054
 
2055
	if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
2056
		var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
2057
		if ( null !== debugInfos ) {
2058
			$.each( debugInfos, function( cle, valeur ) {
2059
				msgDebug += valeur + '\n';
2060
			});
2061
		}
2062
	}
2063
 
2064
	return msgDebug;
2065
}
2066
 
2067
/*
2068
 * jQuery UI Autocomplete HTML Extension
2069
 *
2070
 * Copyright 2010, Scott González (http://scottgonzalez.com)
2071
 * Dual licensed under the MIT or GPL Version 2 licenses.
2072
 *
2073
 * http://github.com/scottgonzalez/jquery-ui-extensions
2074
 *
2075
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
2076
 */
2077
( function( $ ) {
2078
	var proto      = $.ui.autocomplete.prototype,
2079
		initSource = proto._initSource;
2080
 
2081
	ReleveApa.prototype.filter = function( array, term ) {
2082
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
2083
 
2084
		return $.grep( array, function( value ) {
2085
 
2086
			return matcher.test( $( '<div>' ).html( value.label || value.value || value ).text() );
2087
		});
2088
	}
2089
	$.extend( proto, {
2090
		_initSource: function() {
2091
			if ( this.options.html && $.isArray( this.options.source ) ) {
2092
				this.source = function( request, response ) {
2093
					response( filter( this.options.source, request.term ) );
2094
				};
2095
			} else {
2096
				initSource.call( this );
2097
			}
2098
		},
2099
		_renderItem: function( ul, item) {
2100
			if ( item.retenu ) {
2101
				item.label = '<strong>' + item.label + '</strong>';
2102
			}
2103
 
2104
			return $( '<li></li>' )
2105
				.data( 'item.autocomplete', item )
2106
				.append( $( '<a></a>' )[ ( this.options.html ) ? 'html' : 'text' ]( item.label ) )
2107
				.appendTo( ul );
2108
		}
2109
	});
2110
})( jQuery );