Subversion Repositories eFlore/Applications.cel

Rev

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