Subversion Repositories eFlore/Applications.cel

Rev

Rev 3317 | Rev 3329 | 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"'+
592
				' layer="osm"'+
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 ) {
683
	var locDatas     = location.originalEvent.detail;
684
 
685
	if ( this.utils.valOk( locDatas ) ) {
3322 idir 686
		console.log( locDatas );
3312 idir 687
		var rue          = ( this.utils.valOk( locDatas.osmRoad ) ) ? locDatas.osmRoad : '';
688
		var latitude     = ( this.utils.valOk( locDatas.geometry.coordinates[1] ) ) ? locDatas.geometry.coordinates[1] : '';
689
		var longitude    = ( this.utils.valOk( locDatas.geometry.coordinates[0] ) ) ? locDatas.geometry.coordinates[0] : '';
690
		var nomCommune   = '';
691
		var	communeInsee = '';
692
 
693
		if ( this.utils.valOk( locDatas.inseeData ) ) {
694
			nomCommune = locDatas.inseeData.nom;
695
			communeInsee = ( this.utils.valOk( locDatas.inseeData.code ) ) ? locDatas.inseeData.code : '';
696
		} else if ( this.utils.valOk( locDatas.locality ) ) {
697
			nomCommune = locDatas.locality;
698
		} else if ( this.utils.valOk( locDatas.locality ) ) {
699
			nomCommune = locDatas.osmCounty;
700
		}
701
 
702
		var altitude     = ( this.utils.valOk( locDatas.elevation ) ) ? locDatas.elevation : '';
703
		var pays         = ( this.utils.valOk( locDatas.osmCountryCode ) ) ? locDatas.osmCountryCode.toUpperCase() : 'FR';
704
 
3322 idir 705
		$( '#rue' ).val( rue );
706
		$( '#latitude' ).val( latitude );
707
		$( '#longitude' ).val( longitude );
708
		$( '#commune-nom' ).val( nomCommune );
709
		$( '#commune-insee' ).val( communeInsee );
710
		$( '#altitude' ).val( altitude );
711
		$( '#pays' ).val( pays );
712
		if ( this.utils.valOk( $( '#rue' ).val() ) && this.utils.valOk( $( '#commune-nom' ).val() ) ) {
713
			if( !this.utils.valOk( $( '#geoloc #error-drc' ) ) ) {
714
				$( '#geoloc' ).closest( '.control-group' ).removeClass( 'error' );
3312 idir 715
			}
716
			$( '#geoloc-error' ).addClass( 'hidden' );
717
		} else {
3322 idir 718
			$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 719
			$( '#geoloc-error' ).removeClass( 'hidden' );
720
			$( '#releve-date' ).removeClass( 'erreur' ).closest( '.control-group' ).removeClass( 'error' ).find( '#error-drc' ).remove();
721
			$( '#geoloc #error-drc' ).remove();
722
		}
723
	} else {
724
		console.log( 'Error location' );
725
	}
726
}
727
 
728
/**
3322 idir 729
 * Fonction handler de l'évenement location du module tb-geoloc étape arbres
730
 */
731
ReleveApa.prototype.locationArbresHandler = function( location ) {
732
	var locDatas     = location.originalEvent.detail;
733
 
734
	if ( this.utils.valOk( locDatas ) ) {
735
		console.log( locDatas );
736
		var rue          = ( this.utils.valOk( locDatas.osmRoad ) ) ? locDatas.osmRoad : '';
737
		var latitude     = ( this.utils.valOk( locDatas.geometry.coordinates[1] ) ) ? locDatas.geometry.coordinates[1] : '';
738
		var longitude    = ( this.utils.valOk( locDatas.geometry.coordinates[0] ) ) ? locDatas.geometry.coordinates[0] : '';
739
		var altitude     = ( this.utils.valOk( locDatas.elevation ) ) ? locDatas.elevation : '';
740
 
741
		$( '#rue-arbres' ).val( rue );
742
		$( '#latitude-arbres' ).val( latitude );
743
		$( '#longitude-arbres' ).val( longitude );
744
		$( '#altitude-arbres' ).val( altitude );
745
		if ( this.utils.valOk( $( '#latitude-arbres' ).val() ) && this.utils.valOk( $( '#longitude-arbres' ).val() ) ) {
746
			$( '#geoloc-arbres' ).closest( '.control-group' ).removeClass( 'error' );
747
		} else {
748
			$( '#geoloc-arbres' ).closest( '.control-group' ).addClass( 'error' );
749
		}
750
	} else {
751
		console.log( 'Error location' );
752
	}
753
}
754
 
755
/**
3312 idir 756
 * Ajoute une observation à la liste des obs à transmettre
757
 * (résumé obs)
758
 */
759
ReleveApa.prototype.ajouterObs = function() {
760
	// Fermeture automatique des dialogue de transmission de données
761
	// @WARNING TEST
762
	$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
763
	$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
764
	$( 'html, body' ).stop().animate({
765
		scrollTop: $( '#zone-arbres' ).offset().top
766
	}, 300);
767
 
768
	if ( this.validerArbres() ) {
769
		this.masquerPanneau( '#dialogue-form-invalide' );
770
		this.obsNbre  += 1;
771
		this.numArbre += 1;
772
		$( '.obs-nbre' ).text( this.obsNbre );
773
		$( '.obs-nbre' ).triggerHandler( 'changement' );
774
		// bouton info de cet arbre et affichage numéro du prochain arbre
775
		this.lienArbreInfo( this.numArbre );
776
		$( '#arbre-nb' ).text( this.numArbre + 1 );
777
		//formatage des données
778
		var obsData   = this.formaterFormObsData(),
779
			arbreData = obsData.arbre;
780
 
781
		// Résumé obs et stockage en data de "#list-obs" pour envoi
782
		this.afficherObs( obsData );
783
		this.stockerObsData( obsData );
784
		// Ajout de donnée utiles puis stockage dans input hidden "releve-data"
785
		arbreData['date_rue_commune']  = obsData.releve.date + obsData.releve.rue + obsData.releve['commune-nom'];
786
		arbreData['id_observation']    = 0;
787
		this.releveDatas               = $.parseJSON( $( '#releve-data' ).val() );
788
		this.releveDatas[this.obsNbre] = arbreData;
789
		$( '#releve-data' ).val( JSON.stringify( this.releveDatas ) );
790
 
791
		this.supprimerMiniatures();
792
		$( '#taxon' ).val( '' );
793
		$( '#taxon' ).data( 'numNomSel', '' )
794
			.data( 'nomRet','' )
795
			.data( 'numNomRet', '' )
796
			.data( 'nt', '' )
797
			.data( 'famille', '' );
798
		if( this.isTaxonListe ) {
799
			$( '#taxon-liste' ).find( 'option' ).each( function() {
800
				if ( $( this ).hasClass( 'choisir' ) ) {
801
					$( this ).attr( 'selected', true );
802
				} else {
803
					$( this ).attr( 'selected', false );
804
				}
805
			});
806
			$( '#taxon-input-groupe' ).addClass( 'hidden' );
807
			$('#taxon-autre').val('');
808
		}
809
		$( '#barre-progression-upload' ).attr( 'aria-valuemax', this.obsNbre );
810
		$( '#barre-progression-upload .sr-only' ).text( '0/' + this.obsNbre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
811
	} else {
812
		this.afficherPanneau( '#dialogue-form-invalide' );
813
	}
814
};
815
 
816
/**
817
 * Formatage des données du formulaire pour stockage et envoi
818
 */
819
ReleveApa.prototype.formaterFormObsData = function() {
820
	var miniatureImg  = [],
821
		faceOmbre     = [],
822
		imgB64        = [],
823
		imgNom        = [],
824
		numNomSel     = $( '#taxon' ).data( 'numNomSel' ),
825
		referentiel   = ( !this.utils.valOk( numNomSel ) ) ? 'autre' : 'bdtfx';
826
 
827
	$( '.miniature-img' ).each( function() {
828
		if ( $( this ).hasClass( 'b64' ) ) {
829
			imgB64 = $( this ).attr( 'src' );
830
		} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
831
			imgB64 = $( this ).data( 'b64' );
832
		}
833
		miniatureImg.push({
834
			'nom' : $( this ).attr( 'alt' ),
835
			'src' : $( this ).attr( 'src' ),
836
			'b64' : imgB64
837
		});
838
	});
839
	$( '#face-ombre input' ).each( function() {
840
		if( $( this ).is( ':checked' ) ) {
841
			faceOmbre.push( $( this ).val() );
842
		}
843
	});
844
	var obsData = {
845
		obsNum : this.obsNbre,
846
		arbre  : {
847
			'num-arbre'            : this.numArbre,
848
			'taxon'                : {
849
				'numNomSel' : numNomSel,
850
				'value'     : $( '#taxon' ).val(),
851
				'nomRet'    : $( '#taxon' ).data( 'nomRet' ),
852
				'numNomRet' : $( '#taxon' ).data( 'numNomRet' ),
853
				'nt'        : $( '#taxon' ).data( 'nt' ),
854
				'famille'   : $( '#taxon' ).data( 'famille' )
855
			},
856
			'referentiel'           : referentiel,
857
			'certitude'             : $( '#certitude' ).val(),
3322 idir 858
			'rue-arbres'            : $( '#rue-arbres' ).val(),
3312 idir 859
			'latitude-arbres'       : $( '#latitude-arbres' ).val(),
860
			'longitude-arbres'      : $( '#longitude-arbres' ).val(),
861
			'altitude-arbres'       : $( '#altitude-arbres' ).val(),
862
			'circonference'         : $( '#circonference' ).val(),
863
			'surface-pied'          : $( '#surface-pied' ).val(),
864
			'equipement-pied-arbre' : $( '#equipement-pied-arbre' ).val(),
865
			'tassement'             : $( '#tassement' ).val(),
866
			'dejections'            : $( '#dejections input:checked' ).val(),
867
			'face-ombre'            : faceOmbre,
868
			'com-arbres'            : $( '#com-arbres' ).val(),
869
			'miniature-img'         : miniatureImg,
870
		},
871
		releve : {
872
			'date'                  : this.utils.fournirDate( $( '#releve-date' ).val() ),
873
			'rue'                   : $( '#rue' ).val(),
874
			'latitude'              : $( '#latitude' ).val(),
875
			'longitude'             : $( '#longitude' ).val(),
876
			'altitude'              : $( '#altitude' ).val(),
3322 idir 877
			'commune-nom'           : $( '#commune-nom' ).val(),
878
			'commune-insee'         : $( '#commune-insee' ).val(),
879
			'pays'                  : $( '#pays' ).val(),
3312 idir 880
			'zone-pietonne'         : $( '#zone-pietonne input:checked' ).val(),
3322 idir 881
			'pres-lampadaires'      : $( '#pres-lampadaires input:checked' ).val(),
882
			'commentaires'          : $( '#commentaires' ).val()
3312 idir 883
		}
884
	};
885
	return obsData;
886
};
887
 
888
/**
889
 * Résumé obs
890
 */
891
ReleveApa.prototype.afficherObs = function( datasObs ) {
892
	var obsNum            = datasObs.obsNum,
893
		numArbre          = datasObs.arbre['num-arbre'],
894
		dateObs           = this.utils.fournirDate( datasObs.releve.date ),
895
		numNomSel         = datasObs.arbre.taxon.numNomSel,
896
		taxon             = datasObs.arbre.taxon.value,
897
		certitude         = datasObs.arbre.certitude,
3322 idir 898
		rue               = datasObs.arbre['rue-arbres'],
3312 idir 899
		commune           = datasObs.releve['commune-nom'],
900
		latitudeLongitude = '[' + datasObs.arbre['latitude-arbres'] + ' / ' + datasObs.arbre['longitude-arbres'] + ']',
901
		miniatures        = this.ajouterImgMiniatureAuTransfert( datasObs.arbre['miniature-img'] ),
902
		commentaires      = '';
903
 
904
	if ( this.utils.valOk( datasObs.arbre['com-arbres'] ) ) {
905
		commentaires =
906
			this.utils.msgTraduction( 'commentaires' ) +
907
			' : <span>'+
908
				datasObs.arbre['com-arbres'] +
909
			'</span> ';
910
	}
911
 
912
	var responsivDiff1 = '',
913
		responsivDiff2 = '',
914
		responsivDiff3 = '',
915
		responsivDiff4 = '',
916
		responsivDiff5 = '',
917
		responsivDiff6 = '';
918
 
919
	if ( window.matchMedia( '(min-width: 576px)' ).matches ) {
920
		/* La largeur minimum de l'affichage est 600 px inclus */
921
		responsivDiff1 = ' droite';
922
		responsivDiff2 = '<div></div>';
923
		responsivDiff3 = '<div class="row">';
924
		responsivDiff4 = ' col-md-4 col-sm-5';
925
		responsivDiff5 = ' class="col-md-7 col-sm-6"';
926
		responsivDiff6 = '</div>';
927
	}
928
	$( '#liste-obs' ).prepend(
929
		'<div id="obs' + obsNum + '" class="obs obs' + obsNum + ' mb-2">'+
930
			'<div '+
931
				'class="obs-action" '+
932
				'title="' + this.utils.msgTraduction( 'supprimer-observation-liste' ) + '"'+
933
			'>'+
934
				'<button class="btn btn-danger supprimer-obs' + responsivDiff1 + '" value="'+ obsNum + '" title="' + this.utils.msgTraduction( 'obs-numero' ) + obsNum + '">'+
935
				'<i class="far fa-trash-alt"></i>'+
936
				'</button>'+
937
				responsivDiff2 +
938
			'</div> '+
939
			responsivDiff3 +
940
				'<div class="thumbnail' + responsivDiff4 + '">'+
941
					miniatures+
942
				'</div>'+
943
				'<div' + responsivDiff5 + '>'+
944
					'<ul class="unstyled">'+
945
						'<li>'+
946
							'<span id="obs-arbre-' + numArbre + '" class="badge num-obs-arbre" data-arbre="' + numArbre + '">Arbre ' + numArbre + '</span>' +
947
							' <span class="nom-sci">' + taxon + '</span> '+
948
							' [certitude : ' + certitude + ']'+
949
							' '  + this.utils.msgTraduction( 'lieu-obs' ) +
950
							' ' + rue +
951
							', ' + commune +
952
							latitudeLongitude +
953
							' ' + this.utils.msgTraduction( 'obs-le' ) + ' ' +
954
							'<span class="date">' + this.utils.fournirDate( dateObs ) + '</span>'+
955
						'</li>'+
956
						'<li>'+
957
							commentaires +
958
						'</li>'+
959
					'</ul>'+
960
				'</div>'+
961
			responsivDiff6+
962
		'</div>'
963
	);
964
	$( '#zone-liste-obs' ).removeClass( 'hidden' );
965
};
966
 
967
/**
968
 * Ajoute une boîte de miniatures avec défilement des images,
969
 * pour une obs de la liste des obs à transmettre
970
 */
971
ReleveApa.prototype.ajouterImgMiniatureAuTransfert = function( chargerImages ) {
972
	const lthis = this;
973
	var html         =
974
			'<div class="defilement-miniatures">'+
975
				'<figure class="centre">'+
976
					'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
977
				'</figure>'+
978
			'</div>',
979
		miniatures   = '',
980
		centre       = '',
981
		defilVisible = '',
982
		length       = 0;
983
 
984
	if ( this.utils.valOk( chargerImages ) || this.utils.valOk( $( '#miniatures img' ) ) ) {
985
		if ( this.utils.valOk( chargerImages ) ) {
986
			$.each(  chargerImages, function( i, value ) {
987
				var imgVisible = ( 0 < i ) ? 'miniature-cachee' : 'miniature-selectionnee';
988
 
989
				var css        = ( lthis.utils.valOk( value['b64'] ) ) ? 'miniature b64' : 'miniature',
990
					src        = value.src,
991
					alt        = value.nom,
992
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
993
 
994
				miniatures += miniature;
995
			});
996
			length = chargerImages.length;
997
 
998
		} else {
999
			var premiere     = true;
1000
			$( '#miniatures img' ).each( function() {
1001
				var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
1002
				premiere = false;
1003
 
1004
				var css        = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
1005
					src        = $( this ).attr( 'src' ),
1006
					alt        = $( this ).attr( 'alt' ),
1007
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
1008
 
1009
				miniatures += miniature;
1010
			});
1011
			length = $( '#miniatures img' ).length;
1012
		}
1013
		if ( 1 === length ) {
1014
			centre       = 'centre';
1015
			defilVisible = ' defilement-miniatures-cache';
1016
		}
1017
		html             =
1018
			'<div class="defilement-miniatures">'+
1019
				'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
1020
				'<figure class="' + centre + '">'+
1021
					miniatures+
1022
				'</figure>'+
1023
				'<a href="#" class="defilement-miniatures-droite ml-1' + defilVisible + '"><i class="fas fa-chevron-circle-right"></i></a>'+
1024
			'</div>';
1025
	}
1026
 
1027
	return html;
1028
};
1029
 
1030
/**
1031
 * Construit le html à afficher pour le numNom
1032
 */
1033
ReleveApa.prototype.ajouterNumNomSel = function( numNomSel ) {
1034
	var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
1035
 
1036
	if ( !this.utils.valOk( numNomSel ) ) {
1037
		nn = '<span class="alert-error">[' + this.utils.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
1038
	}
1039
 
1040
	return nn;
1041
};
1042
 
1043
/**
1044
 * Stocke des données d'obs à envoyer à la bdd
1045
 */
1046
ReleveApa.prototype.stockerObsData = function( obsDatas ) {
1047
	const lthis = this;
1048
	var obsNum      = obsDatas.obsNum,
1049
		numNomSel   = obsDatas.arbre.taxon.numNomSel,
1050
		referentiel = ( !this.utils.valOk( numNomSel ) ) ? 'autre' : 'bdtfx',
1051
		date        = lthis.utils.fournirDate( obsDatas.releve.date ),
1052
		// si releve dupliqué on ne stocke pas l'image :
1053
		stockerImg  = this.utils.valOk( obsDatas.arbre['miniature-img'] ),
1054
		imgNom      = [],
1055
		imgB64      = [];
1056
 
1057
		if( stockerImg ) {
1058
			$.each( obsDatas.arbre['miniature-img'], function( i, obj ) {
1059
				if( obj.hasOwnProperty( 'id' ) ) {
1060
					stockerImg = false;
1061
				}
1062
				return stockerImg;
1063
			});
1064
		}
1065
		if ( stockerImg ) {
1066
			$.each( obsDatas.arbre['miniature-img'] , function(i, value) {
1067
				if( lthis.utils.valOk( value.nom ) ) {
1068
					imgNom.push( value.nom );
1069
				}
1070
				if( lthis.utils.valOk( value['b64'] ) ) {
1071
					imgB64.push( value['b64'] );
1072
				}
1073
			});
1074
		} else {
1075
			imgNom = lthis.getNomsImgsOriginales();
1076
			imgB64 = lthis.getB64ImgsOriginales();
1077
		}
1078
 
1079
	// Stockage en data des données d'obs à transmettre
1080
	$( '#liste-obs' ).data( 'obsId' + obsNum, {
1081
		'num_nom_sel'        : numNomSel,
1082
		'nom_sel'            : obsDatas.arbre.taxon.value,
1083
		'nom_ret'            : obsDatas.arbre.taxon.nomRet,
1084
		'num_nom_ret'        : obsDatas.arbre.taxon.numNomRet,
1085
		'num_taxon'          : obsDatas.arbre.taxon.nt,
1086
		'famille'            : obsDatas.arbre.taxon.famille,
1087
		'referentiel'        : referentiel,
1088
		'certitude'          : obsDatas.arbre.certitude,
1089
		'date'               : date,
1090
		'notes'              : obsDatas.releve.commentaires.trim(),
1091
		'pays'               : obsDatas.releve.pays,
1092
		'commune_nom'        : obsDatas.releve['commune-nom'],
1093
		'commune_code_insee' : obsDatas.releve['commune-insee'],
1094
		'latitude'           : obsDatas.releve.latitude,
1095
		'longitude'          : obsDatas.releve.longitude,
1096
		'altitude'           : obsDatas.releve.altitude,
1097
		//Ajout des champs images
1098
		'image_nom'          : imgNom,
1099
		'image_b64'          : imgB64,
1100
		// Ajout des champs étendus de l'obs
1101
		'obs_etendue'        : lthis.getObsChpArbres( obsDatas )
1102
	});
1103
};
1104
 
1105
ReleveApa.prototype.getNomsImgsOriginales = function() {
1106
	var noms = new Array();
1107
 
1108
	$( '.miniature-img' ).each( function() {
1109
		noms.push( $( this ).attr( 'alt' ) );
1110
	});
1111
 
1112
	return noms;
1113
};
1114
 
1115
ReleveApa.prototype.getB64ImgsOriginales = function() {
1116
	var b64 = new Array();
1117
 
1118
	$( '.miniature-img' ).each( function() {
1119
		if ( $( this ).hasClass( 'b64' ) ) {
1120
			b64.push( $( this ).attr( 'src' ) );
1121
		} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
1122
			b64.push( $( this ).data( 'b64' ) );
1123
		}
1124
	});
1125
 
1126
	return b64;
1127
};
1128
 
1129
/**
1130
 * Retourne un Array contenant les valeurs des champs
1131
 * dont les données seront transmises dans la table cel-obs-etendues
1132
 */
1133
ReleveApa.prototype.getObsChpArbres = function( datasArbres ) {
1134
	const lthis = this;
1135
 
1136
	var retour = [],
1137
		champs = [
1138
			'rue',
1139
			'zone-pietonne',
1140
			'pres-lampadaires',
3322 idir 1141
			'rue-arbres',
3312 idir 1142
			'latitude-arbres',
1143
			'longitude-arbres',
1144
			'altitude-arbres',
1145
			'circonference',
1146
			'surface-pied',
1147
			'equipement-pied-arbre',
1148
			'tassement',
1149
			'dejections',
1150
			'com-arbres'
1151
		];
1152
 
1153
	var cleValeur       = '',
1154
		faceOmbre       = '',
1155
		faceOmbreLength = datasArbres.arbre['face-ombre'].length;
1156
 
1157
	$.each( champs, function( i ,value ) {
1158
		cleValeur = ( 3 > i ) ? 'releve' : 'arbre';
1159
 
1160
		if ( lthis.utils.valOk( datasArbres[cleValeur][value] ) ) {
1161
			retour.push({ cle : value, valeur : datasArbres[cleValeur][value] });
1162
		}
1163
	});
1164
	if ( 'string' === typeof datasArbres.arbre['face-ombre'] ) {
1165
		faceOmbre = datasArbres.arbre['face-ombre'];
1166
	} else {
1167
		$.each( datasArbres.arbre['face-ombre'], function( i ,value ) {
1168
			faceOmbre += value
1169
			if ( faceOmbreLength > ( i + 1 ) ) {
1170
				faceOmbre += ';';
1171
			}
1172
		});
1173
	}
1174
	retour.push(
1175
		{ cle : 'face-ombre', valeur : faceOmbre },
1176
		{ cle : 'num_arbre' , valeur : datasArbres.obsNum }
1177
	);
1178
 
1179
	var stockerImg  = this.utils.valOk( datasArbres.arbre['miniature-img'] );
1180
 
1181
	if( stockerImg ) {
1182
		$.each( datasArbres.arbre['miniature-img'], function( i, paramsImg ) {
1183
			if( !paramsImg.hasOwnProperty( 'id' ) ) {
1184
				stockerImg = false;
1185
			}
1186
			return stockerImg;
1187
		});
1188
	}
1189
	if( stockerImg ) {
1190
		retour.push({ cle : 'miniature-img' , valeur : JSON.stringify( datasArbres.arbre['miniature-img'] ) });
1191
	}
1192
 
1193
	return retour;
1194
};
1195
 
1196
/**
1197
 * Efface toutes les miniatures (formulaire)
1198
 */
1199
ReleveApa.prototype.supprimerMiniatures = function() {
1200
	$( '#miniatures' ).empty();
1201
	$( '#miniature-msg' ).empty();
1202
};
1203
 
1204
ReleveApa.prototype.surChangementNbreObs = function() {
1205
	if ( 0 === this.obsNbre ) {
1206
		$( '#transmettre-obs' ).attr( 'disabled', 'disabled' );
1207
		// $( '#zone-liste-obs' ).addClass( 'hidden' );
1208
		$( '#bloc-form-arbres' ).removeClass( 'hidden' );
1209
	} else if ( 0 < this.obsNbre && this.obsNbre < this.obsMaxNbre ) {
1210
		$( '#ajouter-obs,#transmettre-obs' ).removeAttr( 'disabled' );
1211
		$( '#bloc-form-arbres' ).removeClass( 'hidden' );
1212
	} else if ( this.obsNbre >= this.obsMaxNbre ) {
1213
		$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
1214
		$( '#bloc-form-arbres' ).addClass( 'hidden' );
1215
		this.afficherPanneau( '#dialogue-bloquer-creer-obs' );
1216
	}
1217
};
1218
 
1219
ReleveApa.prototype.chargerInfosArbre = function( numArbre ) {
1220
	const lthis = this;
1221
	var desactiverForm = ( parseInt( numArbre ) !== ( this.numArbre + 1 ) );
1222
 
1223
	if ( desactiverForm ) {
1224
		var releveDatas = $.parseJSON( $( '#releve-data' ).val() ),
1225
			arbreDatas  = releveDatas[numArbre],
1226
			taxon       = {item:{}},
1227
			imgHtml     = '';
1228
 
1229
		$( '#arbre-nb').text( numArbre );
1230
 
1231
		taxon.item = arbreDatas.taxon;
1232
		this.surAutocompletionTaxon( {}, taxon );
1233
 
1234
		const SELECTS = ['certitude','equipement-pied-arbre','tassement'];
1235
 
1236
		$.each( SELECTS, function( i, value ) {
1237
			if( !lthis.utils.valOk( arbreDatas[value] ) ) {
1238
				arbreDatas[value] = '';
1239
			}
1240
			if ( $( this ).hasClass( 'other' ) && lthis.utils.valOk( $( this ).val() ) ) {
1241
				$( this ).text( $( this ).val() );
1242
			}
1243
			$( '#' + value + ' option' ).each( function() {
1244
				if ( arbreDatas[value] === $( this ).val() ) {
1245
					$( this ).prop( 'selected', true );
1246
				} else {
1247
					$( this ).prop( 'selected', false );
1248
				}
1249
			});
1250
		});
3322 idir 1251
		$( '#rue-arbres' ).val(arbreDatas['rue-arbres']);
3312 idir 1252
		$( '#latitude-arbres' ).val(arbreDatas['latitude-arbres']);
1253
		$( '#longitude-arbres' ).val(arbreDatas['longitude-arbres']);
1254
		$( '#altitude-arbres' ).val(arbreDatas['altitude-arbres']);
1255
		// image
1256
		this.supprimerMiniatures();
1257
		$.each( arbreDatas['miniature-img'], function( i, value ) {
1258
			imgHtml +=
1259
			'<div class="miniature mb-3 mr-3">'+
1260
				'<img class="miniature-img" class="miniature img-rounded" alt="' + value.nom + '" src="' + value.src + '"/>'+
1261
			'</div>';
1262
		});
1263
		$( '#miniatures' ).append( imgHtml );
1264
		$( '#circonference' ).val( arbreDatas.circonference );
1265
		$( '#surface-pied' ).val( arbreDatas['surface-pied'] );
1266
		$( '#com-arbres' ).val( arbreDatas['com-arbres'] );
1267
		if ( undefined != arbreDatas.dejections ) {
1268
			$( '#dejections-oui' ).prop( 'checked', arbreDatas.dejections );
1269
			$( '#dejections-non' ).prop( 'checked', !arbreDatas.dejections );
1270
		}
1271
		$( '#face-ombre input' ).each( function() {
1272
			if ( -1 < arbreDatas['face-ombre'].indexOf( $( this ).val() ) ) {
1273
				$( this ).prop( 'checked', true );
1274
			} else {
1275
				$( this ).prop( 'checked', false );
1276
			}
1277
		});
1278
	}
1279
 
1280
	this.modeArbresBasculerActivation( desactiverForm, numArbre );
1281
};
1282
 
1283
ReleveApa.prototype.modeArbresBasculerActivation = function( desactiver, numArbre = 0 ) {
1284
	$(
1285
		'#taxon,'+
1286
		'#certitude,'+
1287
		'#equipement-pied-arbre,'+
1288
		'#tassement,'+
1289
		'#latitude-arbres,'+
1290
		'#longitude-arbres,'+
1291
		'#rue-arbres,'+
1292
		'#fichier,'+
1293
		'#circonference,'+
1294
		'#surface-pied,'+
1295
		'#com-arbres,'+
1296
		'#ajouter-obs'
1297
	).prop( 'disabled', desactiver );
1298
	$( '#dejections,#face-ombre' ).find( 'input' ).prop( 'disabled', desactiver );
1299
 
1300
	if ( desactiver ) {
1301
		$( '#geoloc-arbres,#bouton-fichier,#miniature-arbres-info' ).addClass( 'hidden' );
1302
		$( '#geoloc-datas-arbres,#retour' ).removeClass( 'hidden' );
1303
	} else {
1304
		// quand on change ou qu'on revient à la normale :
1305
		$( '#geoloc-arbres,#bouton-fichier,#miniature-arbres-info' ).removeClass( 'hidden' );
1306
		$( '#geoloc-datas-arbres,#retour' ).addClass( 'hidden' );
1307
		// retour aux valeurs par defaut
1308
		$( '#equipement-pied-arbre .other' ).text( 'Autre' ).val( 'other' );
1309
		// $( '#equipement-pied-arbre .other' ).val( 'other' );
1310
		$(
1311
			'#certitude option,'+
1312
			'#equipement-pied-arbre option,'+
1313
			'#tassement option'
1314
		).each( function() {
1315
			if ( $( this ).hasClass( 'choisir' ) ) {
1316
				$( this ).prop( 'selected', true );
1317
			} else {
1318
				$( this ).prop( 'selected', false );
1319
			}
1320
		});
1321
		$( '#taxon' ).data( 'numNomSel', '' )
1322
			.data( 'nomRet','' )
1323
			.data( 'numNomRet', '' )
1324
			.data( 'nt', '' )
1325
			.data( 'famille', '' );
1326
		this.supprimerMiniatures();
1327
		$( '#dejections,#face-ombre' ).find( 'input' ).prop( 'checked', false );
1328
		$(
1329
			'#taxon,'+
1330
			'#circonference,'+
1331
			'#surface-pied,'+
1332
			'#com-arbres,'+
1333
			'#rue-arbres,'+
1334
			'#latitude-arbres,'+
1335
			'#longitude-arbres,'+
1336
			'#certitude,'+
1337
			'#equipement-pied-arbre,'+
1338
			'#tassement'
1339
		).val( '' );
1340
		$( '#arbre-nb' ).text( numArbre );
1341
		$( '#arbre-info-lien-' + numArbre ).addClass( 'disabled' );
1342
		$( '.arbre-info' ).not( '#arbre-info-lien-' + numArbre ).removeClass( 'disabled' );
1343
	}
1344
};
1345
 
1346
ReleveApa.prototype.defilerMiniatures = function( element ) {
1347
	var miniatureSelectionne  = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
1348
 
1349
	miniatureSelectionne.removeClass( 'miniature-selectionnee' );
1350
	miniatureSelectionne.addClass( 'miniature-cachee' );
1351
 
1352
	var miniatureAffichee     = miniatureSelectionne;
1353
 
1354
	if( element.hasClass( 'defilement-miniatures-gauche' ) ) {
1355
		if( 0 !== miniatureSelectionne.prev( '.miniature' ).length ) {
1356
			miniatureAffichee = miniatureSelectionne.prev( '.miniature' );
1357
		} else {
1358
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).last();
1359
		}
1360
	} else {
1361
		if( 0 !== miniatureSelectionne.next('.miniature').length ) {
1362
			miniatureAffichee = miniatureSelectionne.next( '.miniature' );
1363
		} else {
1364
			miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).first();
1365
		}
1366
	}
1367
	miniatureAffichee.addClass( 'miniature-selectionnee' );
1368
	miniatureAffichee.removeClass( 'miniature-cachee' );
1369
};
1370
 
1371
ReleveApa.prototype.supprimerObs = function( selector ) {
1372
	var obsId = $( selector ).val();
1373
 
1374
	// Problème avec IE 6 et 7
1375
	if ( 'Supprimer' === obsId ) {
1376
		obsId = $( selector ).attr( 'title' );
1377
	}
1378
	this.supprimerObsParId( obsId );
1379
};
1380
 
1381
/**
1382
 * Supprime l'obs et les data de l'obs
1383
 * et remonte les suivantes d'un cran
1384
 */
1385
ReleveApa.prototype.supprimerObsParId = function( obsId, transmission = false ) {
1386
	if ( !transmission ) {
1387
		this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1388
		this.releveData.splice( obsId , 1 );
1389
		$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
1390
	}
1391
	$( '#arbre-info-' + ( this.numArbre ) ).remove();
1392
	$( '#arbre-nb' ).text( this.numArbre );
1393
 
1394
	this.obsNbre  -= 1;
1395
	this.numArbre -= 1;
1396
	$( '.obs-nbre' ).text( this.obsNbre );
1397
	$( '.obs-nbre' ).triggerHandler( 'changement' );
1398
	$( '.obs' + obsId ).remove();
1399
 
1400
	obsId = parseInt(obsId);
1401
	var listObsData = $( '#liste-obs' ).data(),
1402
		exId        = 0,
1403
		indexObs    = '',
1404
		exIndexObs  = '',
1405
		arbreExId   = 0;
1406
 
1407
	for ( var id = obsId; id <= ( this.obsNbre + 1 ); id++ ) {
1408
		exId       = parseInt(id) + 1;
1409
		indexObs   = 'obsId' + id;
1410
		exIndexObs = 'obsId' + exId;
1411
		arbreExId  = parseInt( $( '#obs-arbre-' + exId ).data( 'arbre' ) );
1412
		arbreId    = arbreExId - 1;
1413
		$( '#liste-obs' ).removeData( indexObs );
1414
		if ( this.utils.valOk( listObsData[ exIndexObs ] ) ) {
1415
			$( '#liste-obs' ).data( indexObs, listObsData[ exIndexObs ] );
1416
		}
1417
		$( '#obs' + exId )
1418
			.attr( 'id', 'obs' + id )
1419
			.removeClass( 'obs' + exId )
1420
			.addClass( 'obs' + id )
1421
			.find( '.supprimer-obs' )
1422
				.attr( 'title', 'Observation n°' + id )
1423
				.val( id );
1424
		$( '#obs-arbre-' + arbreExId )
1425
			.attr( 'id', 'obs-arbre-' + arbreId )
1426
			.attr( 'data-arbre', arbreId )
1427
			.data( 'arbre', arbreId )
1428
			.text( 'Arbre ' + arbreId );
1429
 
1430
		if ( parseInt( id ) !== this.obsNbre ) {
1431
			id = parseInt(id);
1432
		}
1433
	}
1434
};
1435
 
1436
/*
1437
 * Actualise l'id_observation ( id de l'obs en bdd )
1438
 * à partir des données renvoyées par le service après transfert
1439
 */
1440
ReleveApa.prototype.actualiserReleveDataIdObs = function( obsId, id_observation ) {
1441
	this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1442
	this.releveData[obsId ]['id_observation'] = id_observation;
1443
	$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
1444
};
1445
 
1446
ReleveApa.prototype.transmettreObs = function() {
1447
	const lthis = this;
1448
	var observations = $( '#liste-obs' ).data();
1449
 
1450
	if ( this.debug ) {
1451
		console.log( observations );
1452
	}
1453
	if ( !this.utils.valOk( typeof observations, true, 'object' ) ) {
1454
		this.afficherPanneau( '#dialogue-zero-obs' );
1455
	} else {
1456
		$( window ).on( 'beforeunload', function( event ) {
1457
			return lthis.utils.msgTraduction( 'rechargement-page' );
1458
		});
1459
		this.nbObsEnCours         = 1;
1460
		this.nbObsTransmises      = 0;
1461
		this.totalObsATransmettre = $.map( observations, function( n, i ) {
1462
			return i;
1463
		}).length;
1464
		this.depilerObsPourEnvoi();
1465
	}
1466
 
1467
	return false;
1468
};
1469
 
1470
ReleveApa.prototype.depilerObsPourEnvoi = function() {
1471
	var observations = $( '#liste-obs' ).data();
1472
 
1473
	// la boucle est factice car on utilise un tableau
1474
	// dont on a besoin de n'extraire que le premier élément
1475
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
1476
	// TODO: utiliser var.keys quand ça sera plus répandu
1477
	// ou bien utiliser un vrai tableau et pas un objet
1478
	for ( var obsNum in observations ) {
1479
		var obsATransmettre = {
1480
			'projet'  : this.tagProjet,
1481
			'tag-obs' : this.tagObs,
1482
			'tag-img' : this.tagImg
1483
		};
1484
		var utilisateur = {
1485
			id_utilisateur : this.infosUtilisateur.id,
1486
			prenom         : this.infosUtilisateur.prenom,
1487
			nom            : this.infosUtilisateur.nom,
1488
			courriel       : $( '#courriel' ).val()
1489
		};
1490
 
1491
		obsATransmettre['utilisateur'] = utilisateur;
1492
		obsATransmettre[obsNum]        = observations[obsNum];
1493
 
1494
		var idObsNumerique = obsNum.replace( 'obsId', '' );
1495
 
1496
		if( '' !== idObsNumerique ) {
1497
			this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
1498
		}
1499
		break;
1500
	}
1501
};
1502
 
1503
ReleveApa.prototype.envoyerObsAuCel = function( idObs, observation ) {
1504
	const lthis     = this;
1505
	var erreurMsg = '';
1506
 
1507
	$.ajax({
1508
		url        : lthis.serviceSaisieUrl,
1509
		type       : 'POST',
1510
		data       : observation,
1511
		dataType   : 'json',
1512
		beforeSend : function() {
1513
			$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
1514
			$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
1515
			$( '.alert-txt' ).empty();
1516
			$( '.alert-txt .msg-erreur' ).remove();
1517
			$( '.alert-txt .msg-debug' ).remove();
1518
			$( '#chargement' ).removeClass( 'hidden' );
1519
		},
1520
		success    : function( transfertDatas, textStatus, jqXHR ) {
1521
			// actualisation de id_observation dans '#releve-data'
1522
			lthis.actualiserReleveDataIdObs( idObs, transfertDatas.id );
1523
			// mise à jour du nombre d'obs à transmettre
1524
			// et suppression de l'obs
1525
			lthis.supprimerObsParId( idObs, true );
1526
			lthis.nbObsEnCours++;
1527
			// mise à jour du statut
1528
			lthis.mettreAJourProgression();
1529
			if( 0 < lthis.obsNbre ) {
1530
				// dépilement de la suivante
1531
				lthis.depilerObsPourEnvoi();
1532
			}
1533
		},
1534
		statusCode  : {
1535
			500 : function( jqXHR, textStatus, errorThrown ) {
1536
				erreurMsg += lthis.utils.msgTraduction( 'erreur' ) + ' 500 :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
1537
				}
1538
		},
1539
		error        : function( jqXHR, textStatus, errorThrown ) {
1540
			erreurMsg += lthis.utils.msgTraduction( 'erreur-ajax' ) + ' :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
1541
			try {
1542
				reponse = jQuery.parseJSON( jqXHR.responseText );
1543
				if ( null !== reponse ) {
1544
					$.each( reponse, function( cle, valeur ) {
1545
						erreurMsg += valeur + '\n';
1546
					});
1547
				}
1548
			} catch( e ) {
1549
				erreurMsg += lthis.utils.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
1550
			}
1551
		},
1552
		complete      : function( jqXHR, textStatus ) {
1553
			var debugMsg = extraireEnteteDebug( jqXHR );
1554
 
1555
			if ( '' !== erreurMsg ) {
1556
				if ( lthis.debug ) {
1557
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
1558
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1559
				}
1560
				var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
1561
					'subject=Dysfonctionnement du widget de saisie ' + lthis.tagProjet+
1562
					'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
1563
 
1564
				// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
1565
				$( '#obs' + idObs + ' div div' ).addClass( 'obs-erreur' );
1566
				// window.location.hash = 'obs' + idObs;
1567
 
1568
				$( '#dialogue-obs-transaction-ko .alert-txt' ).append(
1569
					$( '#tpl-transmission-ko' ).clone()
1570
						.find( '.courriel-erreur' )
1571
						.attr( 'href', hrefCourriel )
1572
						.end()
1573
						.html()
1574
				);
1575
				$( '#dialogue-obs-transaction-ko' ).removeClass( 'hidden' );
1576
				$( '#chargement' ).addClass( 'hidden' );
1577
				lthis.initialiserBarreProgression;
1578
			} else {
1579
				if ( lthis.debug ) {
1580
					$( '#dialogue-obs-transaction-ok .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1581
				}
1582
				if( 0 === lthis.obsNbre ) {
1583
					setTimeout( function() {
1584
						$( '#chargement,#bloc-arbres-gauche,#bloc-controle-liste-obs' ).addClass( 'hidden' );
1585
						$( '#dialogue-obs-transaction-ok .alert-txt' ).append( $( '#tpl-transmission-ok' ).clone().html() );
1586
						$( '#dialogue-obs-transaction-ok,#bouton-saisir-plantes,#bouton-saisir-lichens' ).removeClass( 'hidden' );
1587
					}, 1500 );
1588
				}
1589
			}
1590
		}
1591
	});
1592
};
1593
 
1594
ReleveApa.prototype.mettreAJourProgression = function() {
1595
	this.nbObsTransmises++;
1596
 
1597
	var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
1598
 
1599
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
1600
	$( '#barre-progression-upload' ).css( 'width', pct + '%' );
1601
	$( '#barre-progression-upload .sr-only' ).text( this.nbObsTransmises + '/' + this.totalObsATransmettre + ' ' + this.utils.msgTraduction( 'observations-transmises' ) );
1602
	if( 0 === this.obsNbre ) {
1603
		$( '.progress' ).removeClass( 'active' );
1604
		$( '.progress' ).removeClass( 'progress-bar-striped' );
1605
	}
1606
};
1607
 
1608
ReleveApa.prototype.initialiserBarreProgression = function() {
1609
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', 0 );
1610
	$( '#barre-progression-upload' ).css( 'width', '0%' );
1611
	$( '#barre-progression-upload .sr-only' ).text( '0/0 ' + this.utils.msgTraduction( 'observations-transmises' ) );
1612
	$( '.progress' ).addClass( 'active' );
1613
	$( '.progress' ).addClass( 'progress-bar-striped' );
1614
};
1615
 
1616
// Form Validator *************************************************************/
1617
ReleveApa.prototype.configurerFormValidator = function() {
1618
	const lthis = this;
1619
 
1620
	$.validator.addMethod(
1621
		'dateCel',
1622
		function ( value, element ) {
1623
			return ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) );
1624
		},
1625
		lthis.utils.msgTraduction( 'date-incomplete' )
1626
	);
1627
 
1628
	$.validator.addMethod(
1629
		'userEmailOk',
1630
		function ( value, element ) {
1631
			return ( lthis.utils.valOk( value ) );
1632
		},
1633
		''
1634
	);
1635
	$.validator.addMethod(
1636
		'minMaxOk',
1637
		function ( value, element, param ) {
1638
			$.validator.messages.minMaxOk = lthis.validerMinMax( element ).message;
1639
			return lthis.validerMinMax( element ).cond;
1640
		},
1641
		$.validator.messages.minMaxOk
1642
	);
1643
 
1644
	$.extend( $.validator.defaults, {
1645
		errorElement: 'span',
1646
		errorPlacement: function( error, element ) {
1647
			if ( 'checkbox' === element.attr( 'type' ) || 'radio' === element.attr( 'type' ) ) {
1648
				error.appendTo( element.closest( '.list' ) );
1649
			} else {
1650
				element.after( error );
1651
			}
1652
		},
1653
		onfocusout: function( element ) {
1654
			if ( $( element ).valid() ) {
1655
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1656
			} else {
1657
				$( element ).closest( '.control-group' ).addClass( 'error' );
1658
			}
1659
		},
1660
		onkeyup : function( element ) {
1661
			if ( $( element ).valid() ) {
1662
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1663
			} else {
1664
				$( element ).closest( '.control-group' ).addClass( 'error' );
1665
			}
1666
		},
1667
		unhighlight: function( element ) {
1668
			$( element ).closest( '.control-group' ).removeClass( 'error' );
1669
		},
1670
		highlight: function( element ) {
1671
			$( element ).closest( '.control-group' ).addClass( 'error' );
1672
		}
1673
	});
1674
};
1675
 
1676
ReleveApa.prototype.validerMinMax = function( element ) {
1677
	var mMCond      = new Boolean(),
1678
		minCond     = parseFloat( element.value ) >= parseFloat( element.min ),
1679
		maxCond     = parseFloat( element.value ) <= parseFloat( element.max ),
1680
		messageMnMx = 'La valeur entrée doit être',
1681
		returnMnMx  = { cond : true , message : '' };
1682
 
1683
	if (
1684
			( this.utils.valOk( element.type, true, 'number' ) || this.utils.valOk( element.type, true, 'range' ) ) &&
1685
			( this.utils.valOk( element.min ) || this.utils.valOk( element.max ) )
1686
		) {
1687
 
1688
		if ( element.min && element.max ) {
1689
			messageMnMx += ' comprise entre ' + element.min + ' et ' + element.max;
1690
			mnMxCond     = ( minCond && maxCond );
1691
		} else if ( element.min ) {
1692
			messageMnMx += ' supérieure à ' + element.min;
1693
			mnMxCond     = minCond;
1694
		} else {
1695
			messageMnMx += ' inférieure à ' + element.max;
1696
			mnMxCond     = maxCond;
1697
		}
1698
		returnMnMx.cond    = mnMxCond;
1699
		returnMnMx.message = messageMnMx;
1700
	}
1701
 
1702
	return returnMnMx;
1703
};
1704
 
1705
/**
1706
 * Valider date/rue/commune par rapport aux relevés précédents
1707
 */
1708
ReleveApa.prototype.validerDateRueCommune = function( valeurDate, valeurRue, valeurCmn ) {
1709
	var valide = true;
1710
 
1711
	if (
1712
		this.utils.valOk( $( '#dates-rues-communes' ).val() ) &&
1713
		this.utils.valOk( valeurDate ) &&
1714
		this.utils.valOk( valeurRue ) &&
1715
		this.utils.valOk( valeurCmn )
1716
	) {
1717
		var valsEltDRC = $.parseJSON( $( '#dates-rues-communes' ).val() ),
1718
			valeurDRC = valeurDate + valeurRue + valeurCmn;
1719
		valide = ( -1 === valsEltDRC.indexOf( valeurDRC ) );
1720
 
1721
	}
1722
	return valide;
1723
};
1724
 
1725
/**
1726
 * FormValidator pour les champs date/rue/Commune
1727
 */
1728
ReleveApa.prototype.dateRueCommuneFormValidator = function() {
1729
	var dateValid    = ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( $( '#releve-date' ).val() ) ),
1730
		geolocValid  = ( this.utils.valOk( $( '#commune-nom' ).val() ) && this.utils.valOk( $( '#rue' ).val() ) );
1731
	const errorDateRue =
1732
			'<span id="error-drc" class="error">'+
1733
				this.utils.msgTraduction( 'date-rue' )+
1734
			'</span> ';
1735
 
1736
	if( this.validerDateRueCommune( $( '#releve-date' ).val(), $( '#rue' ).val(), $( '#commune-nom' ).val()  ) ) {
1737
		$( '#releve-date' )
1738
			.removeClass( 'erreur' )
1739
			.closest( '.control-group' )
1740
				.removeClass( 'error' )
1741
				.find( '#error-drc' )
1742
					.remove();
1743
		if ( geolocValid ) {
1744
			$( '#geoloc' )
1745
			.closest( '.control-group' )
1746
				.removeClass( 'error' );
1747
		}
1748
		$( '#geoloc #error-drc' ).remove();
1749
	} else {
1750
		$( '#releve-date' )
1751
			.addClass( 'erreur' )
1752
			.closest( '.control-group' )
1753
				.addClass( 'error' );
1754
		if ( !this.utils.valOk( $( '#releve-date' ).closest( '.control-group' ).find( '#error-drc' ) ) ) {
1755
			$( '#releve-date' ).after( errorDateRue );
1756
		}
1757
		$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
1758
		if ( !this.utils.valOk( $( '#geoloc' ).find( '#error-drc' ) ) ) {
1759
			$( '#geoloc' ).prepend( errorDateRue );
1760
		}
1761
	}
1762
	if ( dateValid ) {
1763
		$( '#releve-date' ).closest( '.control-group span.error' ).not( '#error-drc' ).remove();
1764
	}
1765
};
1766
 
1767
ReleveApa.prototype.definirReglesFormValidator = function() {
1768
	const lthis = this;
1769
 
1770
	$( '#form-observation' ).validate({
1771
		rules : {
1772
			'zone-pietonne' : {
1773
				required : true,
1774
				minlength : 1
1775
			},
1776
			latitude : {
1777
				required : true,
1778
				minlength : 1,
1779
				range : [-90, 90]
1780
			},
1781
			longitude : {
1782
				required : true,
1783
				minlength : 1,
1784
				range : [-180, 180]
1785
			}
1786
		}
1787
	});
1788
	$( 'input[type=date]' ).not( '#releve-date' ).on( 'input', function() {
1789
		$( this ).valid();
1790
	});
1791
	// validation date/rue/commune au démarage
1792
	this.dateRueCommuneFormValidator();
1793
	// validation date/rue/commune sur event
1794
	$( '#releve-date,#rue,#commune-nom' ).on( 'change input focusout', this.dateRueCommuneFormValidator.bind( this ) );
1795
	$( '#form-arbre' ).validate({
1796
		rules : {
1797
			taxon : {
1798
				required : true,
1799
				minlength : 1
1800
			},
1801
			certitude : {
1802
				required : true,
1803
				minlength : 1
1804
			},
1805
			'latitude-arbres' : {
1806
				required : true,
1807
				minlength : 1,
1808
				range : [-90, 90]
1809
			},
1810
			'longitude-arbres' : {
1811
				required : true,
1812
				minlength : 1,
1813
				range : [-180, 180]
1814
			}
1815
		}
1816
	});
1817
	$( '#form-arbre-fs' ).validate({
1818
		onkeyup : false,
1819
		onclick : false,
1820
		rules : {
1821
			circonference : {
1822
				required : true,
1823
				minlength : 1//,
1824
				//'minMaxOk' : true
1825
			},
1826
			'surface-pied' : {
1827
				required : true,
1828
				minlength : 1,
1829
				'minMaxOk' : true
1830
			},
1831
			'equipement-pied-arbre' : {
1832
				required : true,
1833
				minlength : 1
1834
			},
1835
			'face-ombre' : {
1836
				required : true,
1837
				minlength : 1
1838
			}
1839
		}
1840
	});
1841
	$( '#equipement-pied-arbre' ).change( function() {
1842
		if ( lthis.utils.valOk( $( this ).val(), false, 'other' ) ) {
1843
			$( this )
1844
				.closest( '.control-group' )
1845
					.removeClass( 'error' )
1846
					.find( 'span.error' )
1847
						.addClass( 'hidden' );
1848
		}
1849
	});
1850
	$( '#form-observateur' ).validate({
1851
		rules : {
1852
			courriel : {
1853
				required : true,
1854
				minlength : 1,
1855
				email : true,
1856
				'userEmailOk' : true
1857
			},
1858
			mdp : {
1859
				required : true,
1860
				minlength : 1
1861
			}
1862
		}
1863
	});
1864
	$( '#face-ombre input' ).click( function() {
1865
		var oneIsChecked = false;
1866
		$( '#face-ombre input' ).each( function() {
1867
			if ( $( this ).is( ':checked' ) ) {
1868
				oneIsChecked = true;
1869
				return false;
1870
			}
1871
		});
1872
		if ( oneIsChecked ) {
1873
			$( '#face-ombre.control-group' )
1874
				.removeClass( 'error' )
1875
				.find( 'span.error' )
1876
					.addClass( 'hidden' );
1877
		} else {
1878
			$( '#face-ombre.control-group' )
1879
				.addClass( 'error' )
1880
				.find( 'span.error' )
1881
					.removeClass( 'hidden' );
1882
		}
1883
	});
1884
	$( '#connexion,#inscription,#oublie' ).click( function() {
1885
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1886
	});
1887
};
1888
 
1889
/**
1890
 * Valide le formulaire Relevé (= étape 1) au click sur un bouton "enregistrer"
1891
 */
1892
ReleveApa.prototype.validerReleve = function() {
1893
	const observateur = ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() )
1894
	const obs         = $( '#form-observation' ).valid();
1895
	const geoloc      = (
1896
		this.utils.valOk( $( '#latitude' ).val() ) &&
1897
		this.utils.valOk( $( '#longitude' ).val() ) &&
1898
		this.utils.valOk( $( '#rue' ).val() ) &&
1899
		this.utils.valOk( $( '#commune-nom' ).val() )
1900
	) ;
1901
	var dateRue = true;
1902
	if ( this.utils.valOk( $( '#dates-rues-communes' ).val() ) ) {
1903
		dateRue = (
1904
			this.utils.valOk( $( '#releve-date' ).val() ) &&
1905
			this.utils.valOk( $( '#rue' ).val() ) &&
1906
			this.validerDateRueCommune( $( '#releve-date' ).val(), $( '#rue' ).val(), $( '#commune-nom' ).val() )
1907
		);
1908
	}
1909
	if ( !obs ) {
1910
		$( 'html, body' ).stop().animate({
1911
			scrollTop: $( '#zone-observation' ).offset().top
1912
		}, 300 );
1913
	}
1914
	// panneau observateur
1915
	if ( observateur ) {
1916
		this.masquerPanneau( '#dialogue-utilisateur-non-identifie' );
1917
		$( '#tb-observateur .control-group' ).removeClass( 'error' );
1918
	} else {
1919
		this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
1920
		$( '#tb-observateur .control-group' ).addClass( 'error' );
1921
	}
1922
	if ( dateRue && geoloc ) {
1923
		this.masquerPanneau( '#dialogue-date-rue-ko' );
1924
		$( '#geoloc-datas' ).closest( '.control-group' ).removeClass( 'error' );
1925
	} else {
1926
		if (
1927
			this.utils.valOk( $( '#releve-date' ).val() ) &&
1928
			this.utils.valOk( $( '#rue' ).val() ) &&
1929
			this.utils.valOk( $( '#dates-rues-communes' ).val() )
1930
		) {
1931
			this.afficherPanneau( '#dialogue-date-rue-ko' );
1932
		}
1933
		$( '#geoloc-datas' ).closest( '.control-group' ).addClass( 'error' );
1934
	}
1935
	if (
1936
		!this.utils.valOk( $( '#releve-date' ).val() ) ||
1937
		!this.utils.valOk( $( '#rue' ).val() ) ||
1938
		!this.utils.valOk( $( '#dates-rues-communes' ).val() )
1939
	) {
1940
		this.masquerPanneau( '#dialogue-date-rue-ko' );
1941
	}
1942
	if ( geoloc ) {
1943
		this.masquerPanneau( '#dialogue-geoloc-ko' );
1944
		if ( dateRue ) {
3322 idir 1945
			$( '#geoloc' ).closest( '.control-group' ).removeClass( 'error' );
3312 idir 1946
		}
1947
	} else {
1948
		this.afficherPanneau( '#dialogue-geoloc-ko' );
3322 idir 1949
		$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 1950
	}
1951
 
3322 idir 1952
	return  (observateur && obs && geoloc && dateRue);
3312 idir 1953
};
1954
 
1955
/**
1956
 * Valide le formulaire Arbres (= étape 2) au click sur un bouton "suivant"
1957
 */
3322 idir 1958
ReleveApa.prototype.validerArbres = function() {
1959
	const validerReleve = this.validerReleve();
3312 idir 1960
	const geoloc      = (
1961
		this.utils.valOk( $( '#latitude-arbres' ).val() ) &&
3322 idir 1962
		this.utils.valOk( $( '#longitude-arbres' ).val() )
3312 idir 1963
	);
1964
	const piedArbre = this.utils.valOk( $( '#equipement-pied-arbre' ).val(), false, 'other' );
1965
	const taxon = this.utils.valOk( $( '#taxon' ).val() );
1966
	const obs   = (
1967
		$( '#form-arbre' ).valid() &&
1968
		$( '#form-arbre-fs' ).valid() &&
1969
		piedArbre
1970
	);
1971
 
1972
	if ( piedArbre ) {
1973
		$( '#equipement-pied-arbre' )
1974
			.closest( '.control-group' )
1975
				.removeClass( 'error' )
1976
				.find( 'span.error' )
1977
					.addClass( 'hidden' );
1978
	} else {
1979
		$( '#equipement-pied-arbre' )
1980
			.closest( '.control-group' )
1981
				.addClass( 'error' )
1982
				.find( 'span.error' )
1983
					.removeClass( 'hidden' );
1984
	}
1985
	if ( geoloc ) {
1986
		this.masquerPanneau( '#dialogue-geoloc-ko' );
3322 idir 1987
		$( '#geoloc-arbres' ).closest( '.control-group' ).removeClass( 'error' );
3312 idir 1988
	} else {
1989
		this.afficherPanneau( '#dialogue-geoloc-ko' );
3322 idir 1990
		$( '#geoloc-arbres' ).closest( '.control-group' ).addClass( 'error' );
3312 idir 1991
	}
1992
 
3322 idir 1993
	return ( validerReleve && obs && geoloc && taxon );
3312 idir 1994
};
1995
 
1996
// Controle des panneaux d'infos **********************************************/
1997
 
1998
ReleveApa.prototype.afficherPanneau = function( selecteur ) {
1999
	$( selecteur )
2000
		.removeClass( 'hidden' )
2001
		.hide()
2002
		.show( 600 )
2003
		.delay( this.dureeMessage )
2004
		.hide( 600 );
2005
	$( 'html, body' ).stop().animate({scrollTop: $( selecteur ).offset().top}, 300);
2006
};
2007
 
2008
ReleveApa.prototype.masquerPanneau = function( selecteur ) {
2009
	$( selecteur ).addClass( 'hidden' );
2010
};
2011
 
2012
ReleveApa.prototype.fermerPanneauAlert = function() {
2013
	$( this ).parentsUntil( '.zone-alerte', '.alert' ).addClass( 'hidden' );
2014
};
2015
 
2016
// lib hors objet --
2017
 
2018
/**
2019
* Stope l'évènement courant quand on clique sur un lien.
2020
* Utile pour Chrome, Safari...
2021
*/
2022
function arreter( event ) {
2023
	if ( event.stopPropagation ) {
2024
		event.stopPropagation();
2025
	}
2026
	if ( event.preventDefault ) {
2027
		event.preventDefault();
2028
	}
2029
 
2030
	return false;
2031
}
2032
 
2033
/**
2034
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
2035
 * @param jqXHR
2036
 * @returns {String}
2037
 */
2038
function extraireEnteteDebug( jqXHR ) {
2039
	var msgDebug = '';
2040
 
2041
	if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
2042
		var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
2043
		if ( null !== debugInfos ) {
2044
			$.each( debugInfos, function( cle, valeur ) {
2045
				msgDebug += valeur + '\n';
2046
			});
2047
		}
2048
	}
2049
 
2050
	return msgDebug;
2051
}
2052
 
2053
/*
2054
 * jQuery UI Autocomplete HTML Extension
2055
 *
2056
 * Copyright 2010, Scott González (http://scottgonzalez.com)
2057
 * Dual licensed under the MIT or GPL Version 2 licenses.
2058
 *
2059
 * http://github.com/scottgonzalez/jquery-ui-extensions
2060
 *
2061
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
2062
 */
2063
( function( $ ) {
2064
	var proto      = $.ui.autocomplete.prototype,
2065
		initSource = proto._initSource;
2066
 
2067
	ReleveApa.prototype.filter = function( array, term ) {
2068
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
2069
 
2070
		return $.grep( array, function( value ) {
2071
 
2072
			return matcher.test( $( '<div>' ).html( value.label || value.value || value ).text() );
2073
		});
2074
	}
2075
	$.extend( proto, {
2076
		_initSource: function() {
2077
			if ( this.options.html && $.isArray( this.options.source ) ) {
2078
				this.source = function( request, response ) {
2079
					response( filter( this.options.source, request.term ) );
2080
				};
2081
			} else {
2082
				initSource.call( this );
2083
			}
2084
		},
2085
		_renderItem: function( ul, item) {
2086
			if ( item.retenu ) {
2087
				item.label = '<strong>' + item.label + '</strong>';
2088
			}
2089
 
2090
			return $( '<li></li>' )
2091
				.data( 'item.autocomplete', item )
2092
				.append( $( '<a></a>' )[ ( this.options.html ) ? 'html' : 'text' ]( item.label ) )
2093
				.appendTo( ul );
2094
		}
2095
	});
2096
})( jQuery );