Subversion Repositories eFlore/Applications.cel

Rev

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