Subversion Repositories eFlore/Applications.cel

Rev

Rev 3811 | Rev 3847 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3811 Rev 3844
Line -... Line 1...
-
 
1
import {Geoloc} from './tb-geoloc/js/Geoloc.js';
1
const utils = new Utils;
2
import {Utils,valOk} from './Utils.js';
Line -... Line 3...
-
 
3
 
2
 
4
export const utils = new Utils();
3
/**
5
/**
4
 * WidgetsSaisiesCommun
6
 * WidgetsSaisiesCommun
5
 * Methodes communes aux widgets de saisie
7
 * Methodes communes aux widgets de saisie
6
 */
8
 */
Line 7... Line 9...
7
function WidgetsSaisiesCommun(){}
9
export function WidgetsSaisiesCommun(){}
-
 
10
 
8
 
11
WidgetsSaisiesCommun.prototype.init = function() {
9
WidgetsSaisiesCommun.prototype.init = function() {
12
	this.geoloc = new Geoloc();
10
	// ASL : APA, sTREETs, Lichen's Go!
13
	// ASL : APA, sTREETs, Lichen's Go!
11
	// const ASL = ['tb_aupresdemonarbre','tb_streets','tb_lichensgo'];
14
	// const ASL = ['tb_aupresdemonarbre','tb_streets','tb_lichensgo'];
12
	// this.isASL = ( utils.valOk( this.projet ) && -1 < $.inArray( this.projet , ASL ) );
15
	// this.isASL = ( valOk( this.projet ) && -1 < $.inArray( this.projet , ASL ) );
13
	this.initForm();
16
	this.initForm();
Line 14... Line 17...
14
	this.initEvts();
17
	this.initEvts();
Line 71... Line 74...
71
			lthis.reduireVoletIdentite();
74
			lthis.reduireVoletIdentite();
72
		});
75
		});
73
		$( '#courriel_confirmation' ).on( 'paste', this.bloquerCopierCollerCourriel.bind( this ) );
76
		$( '#courriel_confirmation' ).on( 'paste', this.bloquerCopierCollerCourriel.bind( this ) );
74
		$( '#courriel_confirmation' ).on( 'blur', this.reduireVoletIdentite.bind( this ) );
77
		$( '#courriel_confirmation' ).on( 'blur', this.reduireVoletIdentite.bind( this ) );
75
		$( '#courriel_confirmation' ).on( 'keypress', function( event ) {
78
		$( '#courriel_confirmation' ).on( 'keypress', function( event ) {
76
			if ( lthis.valOk( event.which, true, 13 ) ) {
79
			if ( valOk( event.which, true, 13 ) ) {
77
				lthis.reduireVoletIdentite();
80
				lthis.reduireVoletIdentite();
78
				event.preventDefault();
81
				event.preventDefault();
79
				event.stopPropagation();
82
				event.stopPropagation();
80
			}
83
			}
81
		});
84
		});
Line 83... Line 86...
83
};
86
};
Line 84... Line 87...
84
 
87
 
85
WidgetsSaisiesCommun.prototype.initEvtsFichier = function() {
88
WidgetsSaisiesCommun.prototype.initEvtsFichier = function() {
Line 86... Line 89...
86
	const lthis = this;
89
	const lthis = this;
87
 
90
 
Line 88... Line 91...
88
	function fileInputFonctionne() {
91
	const fileInputFonctionne = () => {
89
		var ua = navigator.userAgent;
92
		const ua = navigator.userAgent;
90
 
93
 
91
		if (
94
		if (
92
			ua.match( /(Android (1.0|1.1|1.5|1.6|2.0|2.1))|(Windows Phone (OS 7|8.0))|(XBLWP)|(ZuneWP)|(w(eb)?OSBrowser)|(webOS)|(Kindle\/(1.0|2.0|2.5|3.0))/ ) ||
95
			ua.match( /(Android (1.0|1.1|1.5|1.6|2.0|2.1))|(Windows Phone (OS 7|8.0))|(XBLWP)|(ZuneWP)|(w(eb)?OSBrowser)|(webOS)|(Kindle\/(1.0|2.0|2.5|3.0))/ ) ||
93
			ua.match( /\swv\).+(chrome)\/([\w\.]+)/i )
96
			ua.match( /\swv\).+(chrome)\/([\w\.]+)/i )
Line 94... Line 97...
94
		) {
97
		) {
Line 95... Line 98...
95
		  return false;
98
		  return false;
Line 96... Line 99...
96
		}
99
		}
97
 
100
 
Line 105... Line 108...
105
	if ( fileInputFonctionne() ) {
108
	if ( fileInputFonctionne() ) {
106
		// Sur téléchargement image
109
		// Sur téléchargement image
107
		$( '#fichier' ).on( 'change', function ( event ) {
110
		$( '#fichier' ).on( 'change', function ( event ) {
108
			lthis.arreter ( event );
111
			lthis.arreter ( event );
Line 109... Line 112...
109
 
112
 
110
			var options        = {
113
			const options       = {
111
				beforeSend : function ( jqXHR, settings ) {
114
					beforeSend : function ( jqXHR, settings ) {
112
					$( '#miniatures' ).on( 'click', '.effacer-miniature', function() {
115
						$( '#miniatures' ).on( 'click', '.effacer-miniature', function() {
113
						jqXHR.abort(jqXHR);
116
							jqXHR.abort(jqXHR);
-
 
117
						});
-
 
118
					},
-
 
119
					success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
-
 
120
					dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
114
					});
121
					resetForm: true // reset the form after successful submit
115
				},
-
 
116
				success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
-
 
117
				dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
-
 
118
				resetForm: true // reset the form after successful submit
-
 
119
			};
122
				},
120
			var imgCheminTmp    = $( '#fichier' ).val(),
123
				imgCheminTmp    = $( '#fichier' ).val(),
121
				parts           = imgCheminTmp.split( '\\' ),
124
				parts           = imgCheminTmp.split( '\\' ),
122
				nomImage        = parts[ parts.length - 1 ],
125
				nomImage        = parts[ parts.length - 1 ],
123
				formatImgOk     = lthis.verifierFormat( nomImage ),
126
				formatImgOk     = lthis.verifierFormat( nomImage ),
Line 134... Line 137...
134
				$( '#ajouter-obs' ).addClass( 'hidden' );
137
				$( '#ajouter-obs' ).addClass( 'hidden' );
135
				$( '#message-chargement' ).removeClass( 'hidden' );
138
				$( '#message-chargement' ).removeClass( 'hidden' );
136
			} else {
139
			} else {
137
				$( '#form-upload' )[0].reset();
140
				$( '#form-upload' )[0].reset();
138
				if ( !formatImgOk ) {
141
				if ( !formatImgOk ) {
139
					lthis.activerModale( lthis.msgTraduction( 'format-non-supporte' ) + ' : ' + $( '#fichier' ).attr( 'accept' ) );
142
					utils.activerModale( lthis.msgTraduction( 'format-non-supporte' ) + ' : ' + $( '#fichier' ).attr( 'accept' ) );
140
				}
143
				}
141
				if ( !imgNonDupliquee ) {
144
				if ( !imgNonDupliquee ) {
142
					lthis.activerModale( lthis.msgTraduction( 'image-deja-chargee' ) );
145
					utils.activerModale( lthis.msgTraduction( 'image-deja-chargee' ) );
143
				}
146
				}
144
			}
147
			}
145
			return false;
148
			return false;
146
		});
149
		});
147
		$( 'body' ).on( 'click', '.effacer-miniature', function() {
150
		$( 'body' ).on( 'click', '.effacer-miniature', function() {
148
			$( this ).parent().remove();
151
			$( this ).parent().remove();
149
			if ( !lthis.valOk( $('.miniature-chargement' ) ) ) {
152
			if ( !valOk( $('.miniature-chargement' ) ) ) {
150
				$( '#ajouter-obs' ).removeClass( 'hidden' );
153
				$( '#ajouter-obs' ).removeClass( 'hidden' );
151
				$( '#message-chargement' ).addClass( 'hidden' );
154
				$( '#message-chargement' ).addClass( 'hidden' );
152
			}
155
			}
153
		});
156
		});
154
	} else {
157
	} else {
Line 164... Line 167...
164
};
167
};
Line 165... Line 168...
165
 
168
 
166
WidgetsSaisiesCommun.prototype.initEvtsGeoloc = function( isFormArbre = false ) {
169
WidgetsSaisiesCommun.prototype.initEvtsGeoloc = function( isFormArbre = false ) {
Line 167... Line 170...
167
	const lthis = this;
170
	const lthis = this;
168
 
171
 
Line 169... Line 172...
169
	var ancre               = '-observation',
172
	let ancre               = '-observation',
170
		complementSelecteur = '';
173
		complementSelecteur = '';
171
 
174
 
172
	if ( isFormArbre ) {
175
	if ( isFormArbre ) {
-
 
176
		ancre               = '-arbres';
173
		ancre               = '-arbres';
177
		complementSelecteur = ancre;
-
 
178
	}
-
 
179
 
174
		complementSelecteur = ancre;
180
	const $mapEl = $( '#tb-geolocation' + complementSelecteur );
-
 
181
 
175
	}
182
	if( valOk( $mapEl ) ) {
176
	// Empêcher que le module carto ne bind ses events partout
183
		const typeLocalisation = $mapEl.data( 'typeLocalisation' ) || 'point';
177
	$( '#zone' + ancre ).on( 'submit blur click focus mousedown mouseleave mouseup change', '#tb-geolocation' + complementSelecteur + ' *', function( event ) {
-
 
178
		event.preventDefault();
184
 
179
		return false;
185
		this.geoloc.init(complementSelecteur);
-
 
186
		$( '#coord' ).toggleClass( 'hidden', 'point' !== typeLocalisation );
180
	});
187
		// evenement location
Line 181... Line 188...
181
	// evenement location
188
		$mapEl.on( 'location' , this.locationHandler.bind( this ) );
182
	$( '#tb-geolocation' + complementSelecteur ).on( 'location' , this.locationHandler.bind( this ) );
189
	}
Line 195... Line 202...
195
		event.preventDefault();
202
		event.preventDefault();
196
		lthis.defilerMiniatures( $( this ) );
203
		lthis.defilerMiniatures( $( this ) );
197
	});
204
	});
198
	// mécanisme de suppression d'une obs
205
	// mécanisme de suppression d'une obs
199
	$( '#liste-obs' ).on( 'click', '.supprimer-obs', function() {
206
	$( '#liste-obs' ).on( 'click', '.supprimer-obs', function() {
200
		var buttons = [
207
		const buttons = [
201
				{
208
				{
202
					label   : 'Annuler',
209
					label   : 'Annuler',
203
					class   : 'btn-secondary',
210
					class   : 'btn-secondary',
204
					dismiss : true
211
					dismiss : true
205
				},
212
				},
Line 208... Line 215...
208
					class   : 'btn-success confirmer',
215
					class   : 'btn-success confirmer',
209
					dismiss : true
216
					dismiss : true
210
				}
217
				}
211
			];
218
			];
212
		// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
219
		// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
213
		var that    = this,
220
		const that  = this,
214
			suppObs = lthis.supprimerObs.bind( lthis );
221
			suppObs = lthis.supprimerObs.bind( lthis );
Line 215... Line 222...
215
 
222
 
216
		lthis.activerModale( lthis.msgTraduction( 'confirmation-suppression' ), '', buttons );
223
		utils.activerModale( lthis.msgTraduction( 'confirmation-suppression' ), '', buttons );
217
		$( '.confirmer' ).on( 'click', function() {
224
		$( '.confirmer' ).on( 'click', function() {
218
			suppObs( that );
225
			suppObs( that );
219
		});
226
		});
220
	});
227
	});
Line 231... Line 238...
231
 * Interroge le SSO pour connaître le statut de l'utilisateur, et change le menu
238
 * Interroge le SSO pour connaître le statut de l'utilisateur, et change le menu
232
 * à droite de la barre en fonction
239
 * à droite de la barre en fonction
233
 */
240
 */
234
WidgetsSaisiesCommun.prototype.chargerStatutSSO = function() {
241
WidgetsSaisiesCommun.prototype.chargerStatutSSO = function() {
235
	const lthis = this;
242
	const lthis = this;
236
	var urlAuth = this.urlBaseAuth + '/identite';
243
	let urlAuth = this.urlBaseAuth + '/identite';
Line 237... Line 244...
237
 
244
 
238
	if( 'local' !== this.mode ) {
245
	if( 'local' !== this.mode ) {
239
		this.connexion( urlAuth, true );
246
		this.connexion( urlAuth, true );
240
		if( this.isASL) {
247
		if( this.isASL) {
241
			$( '#connexion' ).on( 'click', function( event ) {
248
			$( '#connexion' ).on( 'click', function( event ) {
242
				event.preventDefault();
249
				event.preventDefault();
243
				if( $( '#utilisateur-connecte' ).hasClass( 'hidden' ) || !lthis.valOk( $( '#nom-complet' ).text() ) ) {
250
				if( $( '#utilisateur-connecte' ).hasClass( 'hidden' ) || !valOk( $( '#nom-complet' ).text() ) ) {
244
					var login = $( '#courriel' ).val(),
251
					const login = $( '#courriel' ).val(),
-
 
252
						mdp     = $( '#mdp' ).val();
245
						mdp   = $( '#mdp' ).val();
253
 
246
					if ( lthis.valOk( login ) && lthis.valOk( mdp ) ) {
254
					if ( valOk( login ) && valOk( mdp ) ) {
247
						urlAuth = lthis.urlBaseAuth + '/connexion?login=' + login + '&password=' + mdp;
255
						urlAuth = lthis.urlBaseAuth + '/connexion?login=' + login + '&password=' + mdp;
248
						lthis.connexion( urlAuth, true );
256
						lthis.connexion( urlAuth, true );
249
					} else {
257
					} else {
250
						lthis.activerModale( lthis.msgTraduction( 'non-connexion' ) );
258
						utils.activerModale( lthis.msgTraduction( 'non-connexion' ) );
251
					}
259
					}
252
				}
260
				}
253
			});
261
			});
254
		}
262
		}
255
	} else {
263
	} else {
-
 
264
		urlAuth = this.urlWidgets + 'modules/saisie/test-token.json';
256
		urlAuth = this.urlWidgets + 'modules/saisie/test-token.json';
265
		// Pour tester le bouton de connexion :
257
		// $( '#connexion' ).on( 'click', function( event ) {
266
		// $( '#connexion' ).on( 'click', function( event ) {
258
		// 	event.preventDefault();
267
		// 	event.preventDefault();
259
			// lthis.connexion( urlAuth, true );
268
			// lthis.connexion( urlAuth, true );
260
			this.connexion( urlAuth, true );
269
			this.connexion( urlAuth, true );
Line 264... Line 273...
264
 
273
 
265
/**
274
/**
266
 * Déconnecte l'utilisateur du SSO
275
 * Déconnecte l'utilisateur du SSO
267
 */
276
 */
268
WidgetsSaisiesCommun.prototype.deconnecterUtilisateur = function() {
277
WidgetsSaisiesCommun.prototype.deconnecterUtilisateur = function() {
Line 269... Line 278...
269
	var urlAuth = this.urlBaseAuth + '/deconnexion';
278
	const urlAuth = this.urlBaseAuth + '/deconnexion';
270
 
279
 
271
	if( 'local' === this.mode ) {
280
	if( 'local' === this.mode ) {
272
		this.definirUtilisateur();
281
		this.definirUtilisateur();
Line 303... Line 312...
303
	});
312
	});
304
};
313
};
Line 305... Line 314...
305
 
314
 
306
WidgetsSaisiesCommun.prototype.definirUtilisateur = function( jeton ) {
315
WidgetsSaisiesCommun.prototype.definirUtilisateur = function( jeton ) {
307
	const thisObj = this;
316
	const thisObj = this;
308
	var idUtilisateur = '',
317
	let idUtilisateur = '',
309
		prenom        = '',
318
		prenom        = '',
310
		nom           = '',
319
		nom           = '',
311
		nomComplet    = '',
320
		nomComplet    = '',
Line 338... Line 347...
338
	$( '#nom' ).val( nom );
347
	$( '#nom' ).val( nom );
339
	$( '#nom-complet' ).html( nomComplet );
348
	$( '#nom-complet' ).html( nomComplet );
340
	$( '#courriel' ).val( courriel );
349
	$( '#courriel' ).val( courriel );
341
	$( '#profil-utilisateur a' ).attr( 'href', this.urlSiteTb() + 'membres/me' );
350
	$( '#profil-utilisateur a' ).attr( 'href', this.urlSiteTb() + 'membres/me' );
342
	if ( this.isASL ) {
351
	if ( this.isASL ) {
343
		if ( this.valOk( idUtilisateur ) ) {
352
		if ( valOk( idUtilisateur ) ) {
344
			var nomSquelette = $( '#charger-form' ).data( 'load' ) || 'arbres';
353
			const nomSquelette = $( '#charger-form' ).data( 'load' ) || 'arbres';
345
			this.chargerForm( nomSquelette, thisObj );
354
			this.chargerForm( nomSquelette, thisObj );
346
		}
355
		}
347
	} else {
356
	} else {
348
		$( '.warning' ).remove();
357
		$( '.warning' ).remove();
349
		$( '#courriel_confirmation' ).val( courriel );
358
		$( '#courriel_confirmation' ).val( courriel );
Line 353... Line 362...
353
/**
362
/**
354
 * Décodage à l'arrache d'un jeton JWT, ATTENTION CONSIDERE QUE LE
363
 * Décodage à l'arrache d'un jeton JWT, ATTENTION CONSIDERE QUE LE
355
 * JETON EST VALIDE, ne pas décoder n'importe quoi - pas trouvé de lib simple
364
 * JETON EST VALIDE, ne pas décoder n'importe quoi - pas trouvé de lib simple
356
 */
365
 */
357
WidgetsSaisiesCommun.prototype.decoderJeton = function( jeton ) {
366
WidgetsSaisiesCommun.prototype.decoderJeton = function( jeton ) {
358
	var parts = jeton.split( '.' ),
367
	const parts = jeton.split( '.' );
359
		payload = parts[1];
368
	let payload = parts[1];
-
 
369
 
360
	payload = this.b64d( payload );
370
	payload = this.b64d( payload );
361
	payload = JSON.parse( payload, true );
371
	payload = JSON.parse( payload, true );
-
 
372
 
362
	return payload;
373
	return payload;
363
};
374
};
Line 364... Line 375...
364
 
375
 
365
/**
376
/**
366
 * Décodage "url-safe" des chaînes base64 retournées par le SSO (lib jwt)
377
 * Décodage "url-safe" des chaînes base64 retournées par le SSO (lib jwt)
367
 */
378
 */
368
WidgetsSaisiesCommun.prototype.b64d = function( input ) {
379
WidgetsSaisiesCommun.prototype.b64d = function( input ) {
Line 369... Line 380...
369
  var remainder = input.length % 4;
380
  const remainder = input.length % 4;
370
 
381
 
Line 371... Line 382...
371
  if ( 0 !== remainder ) {
382
  if ( 0 !== remainder ) {
372
	var padlen = 4 - remainder;
383
	const padlen = 4 - remainder;
373
 
384
 
374
	for ( var i = 0; i < padlen; i++ ) {
385
	for ( let i = 0; i < padlen; i++ ) {
375
	  input += '=';
386
	  input += '=';
376
	}
387
	}
-
 
388
  }
377
  }
389
  input = input.replace( '-', '+' );
378
  input = input.replace( '-', '+' );
390
  input = input.replace( '_', '/' );
Line 379... Line 391...
379
  input = input.replace( '_', '/' );
391
 
380
  return atob( input );
392
  return atob( input );
Line 381... Line 393...
381
};
393
};
382
 
394
 
Line 383... Line 395...
383
WidgetsSaisiesCommun.prototype.urlSiteTb = function() {
395
WidgetsSaisiesCommun.prototype.urlSiteTb = function() {
384
	var urlPart = ( 'test' === this.mode ) ? '/test/' : '/';
396
	const urlPart = ( 'test' === this.mode ) ? '/test/' : '/';
385
 
397
 
386
	return this.urlRacine + urlPart;
398
	return this.urlRacine + urlPart;
387
};
399
};
388
 
400
 
389
// uniquement utilisé si taxon-liste ******************************************/
401
// uniquement utilisé si taxon-liste ******************************************/
390
/**
402
/**
391
 * Affiche/Cache le champ taxon
403
 * Affiche/Cache le champ taxon
392
 */
404
 */
393
WidgetsSaisiesCommun.prototype.surChangementTaxonListe = function() {
405
WidgetsSaisiesCommun.prototype.surChangementTaxonListe = function() {
Line 403... Line 415...
403
				.hide()
415
				.hide()
404
				.removeClass( 'hidden' )
416
				.removeClass( 'hidden' )
405
				.show(200)
417
				.show(200)
406
				.find( '#taxon-autre' )
418
				.find( '#taxon-autre' )
407
					.on( 'change', function() {
419
					.on( 'change', function() {
408
						if( !utils.valOk( $( '#taxon-autre' ).data( 'numNomSel' ) ) ) {
420
						if( !valOk( $( '#taxon-autre' ).data( 'numNomSel' ) ) ) {
409
							$( '#taxon' ).val( $( '#taxon-autre' ).val() )
421
							$( '#taxon' ).val( $( '#taxon-autre' ).val() )
410
								.data( 'value', $( '#taxon-autre' ).val() )
422
								.data( 'value', $( '#taxon-autre' ).val() )
411
								.removeData([
423
								.removeData([
412
									'numNomSel',
424
									'numNomSel',
413
									'nomRet',
425
									'nomRet',
Line 421... Line 433...
421
		}
433
		}
422
	}
434
	}
423
};
435
};
Line 424... Line 436...
424
 
436
 
425
WidgetsSaisiesCommun.prototype.surChangementValeurTaxon = function() {
-
 
426
	var numNomSel = 0;
-
 
427
 
437
WidgetsSaisiesCommun.prototype.surChangementValeurTaxon = function() {
428
	if( this.valOk( $( '#taxon-liste' ).val() ) ) {
438
	if( valOk( $( '#taxon-liste' ).val() ) ) {
429
		if( 'autre' === $( '#taxon-liste' ).val() ) {
439
		if( 'autre' === $( '#taxon-liste' ).val() ) {
430
			this.ajouterAutocompletionNoms();
440
			this.ajouterAutocompletionNoms();
431
		} else {
441
		} else {
-
 
442
			const optionRetenue = $( '#taxon-liste' ).find( 'option[value="' + $( '#taxon-liste' ).val() + '"]' );
432
			var optionRetenue = $( '#taxon-liste' ).find( 'option[value="' + $( '#taxon-liste' ).val() + '"]' );
443
 
433
			$( '#taxon' ).val( $( '#taxon-liste' ).val() )
444
			$( '#taxon' ).val( $( '#taxon-liste' ).val() )
434
				.data( 'value', $( '#taxon-liste' ).val() )
445
				.data( 'value', $( '#taxon-liste' ).val() )
435
				.data( 'numNomSel', optionRetenue.data( 'num-nom-sel' ) )
446
				.data( 'numNomSel', optionRetenue.data( 'num-nom-sel' ) )
436
				.data( 'nomRet', optionRetenue.data( 'nom-ret' ) )
447
				.data( 'nomRet', optionRetenue.data( 'nom-ret' ) )
437
				.data( 'numNomRet', optionRetenue.data( 'num-nom-ret' ) )
448
				.data( 'numNomRet', optionRetenue.data( 'num-nom-ret' ) )
438
				.data( 'nt', optionRetenue.data( 'nt' ) )
449
				.data( 'nt', optionRetenue.data( 'nt' ) )
439
				.data( 'famille', optionRetenue.data( 'famille' ) );
450
				.data( 'famille', optionRetenue.data( 'famille' ) );
Line 440... Line 451...
440
			$( '#taxon' ).trigger( 'change' );
451
			$( '#taxon' ).trigger( 'change' );
-
 
452
 
441
 
453
			const numNomSel = $( '#taxon' ).data( 'numNomSel' );
442
			numNomSel = $( '#taxon' ).data( 'numNomSel' );
454
 
443
			// Si l'espèce est mal déterminée la certitude est "à déterminer"
455
			// Si l'espèce est mal déterminée la certitude est "à déterminer"
444
			if( !this.valOk( numNomSel ) ) {
456
			if( !valOk( numNomSel ) ) {
445
				$( '#certitude' ).find( 'option' ).each( function() {
457
				$( '#certitude' ).find( 'option' ).each( function() {
446
					if ( $( this ).hasClass( 'aDeterminer' ) ) {
458
					if ( $( this ).hasClass( 'aDeterminer' ) ) {
447
						$( this ).attr( 'selected', true );
459
						$( this ).attr( 'selected', true );
Line 458... Line 470...
458
/**
470
/**
459
 * Initialise l'autocompletion taxons
471
 * Initialise l'autocompletion taxons
460
 */
472
 */
461
WidgetsSaisiesCommun.prototype.ajouterAutocompletionNoms = function() {
473
WidgetsSaisiesCommun.prototype.ajouterAutocompletionNoms = function() {
462
	const lthis = this;
474
	const lthis = this;
463
	var taxonSelecteur = '#taxon';
475
	let taxonSelecteur = '#taxon';
Line 464... Line 476...
464
 
476
 
465
	if ( this.valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
477
	if ( valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
466
		taxonSelecteur += '-autre';
478
		taxonSelecteur += '-autre';
467
	}
479
	}
468
	$( taxonSelecteur ).autocomplete({
480
	$( taxonSelecteur ).autocomplete({
469
		source: function( requete, add ) {
481
		source: function( requete, add ) {
470
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
482
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
471
			requete = '';
483
			requete = '';
472
			if( lthis.valOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
484
			if( valOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
Line 473... Line 485...
473
				var url = lthis.getUrlAutocompletionNomsSci();
485
				const url = lthis.getUrlAutocompletionNomsSci();
474
 
486
 
475
				$( '#taxon-autocomplete-label' ).addClass( 'loading' );
487
			$( '#taxon-autocomplete-label' ).addClass( 'loading' );
476
				$.getJSON( url, requete, function( data ) {
488
				$.getJSON( url, requete, function( data ) {
477
					var suggestions = lthis.traiterRetourNomsSci( data );
489
					let suggestions = lthis.traiterRetourNomsSci( data );
478
					add( suggestions );
490
					add( suggestions );
479
				})
491
				})
480
				.fail( function() {
492
				.fail( function() {
Line 495... Line 507...
495
	});
507
	});
496
	$( taxonSelecteur ).on( 'autocompleteselect', this.surAutocompletionTaxon );
508
	$( taxonSelecteur ).on( 'autocompleteselect', this.surAutocompletionTaxon );
497
};
509
};
Line 498... Line 510...
498
 
510
 
499
WidgetsSaisiesCommun.prototype.getUrlAutocompletionNomsSci = function() {
511
WidgetsSaisiesCommun.prototype.getUrlAutocompletionNomsSci = function() {
Line 500... Line 512...
500
	var taxonSelecteur = '#taxon';
512
	let taxonSelecteur = '#taxon';
501
 
513
 
502
	if ( this.valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
514
	if ( valOk( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
503
		taxonSelecteur += '-autre';
515
		taxonSelecteur += '-autre';
504
	}
516
	}
505
	var mots = $( taxonSelecteur ).val();
-
 
Line 506... Line 517...
506
	var url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
517
	const mots = $( taxonSelecteur ).val(),
507
	url = url.replace( '{masque}', mots );
518
		url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
Line 508... Line 519...
508
 
519
 
509
	return url;
520
	return url.replace( '{masque}', mots );
510
};
521
};
511
 
522
 
512
/**
523
/**
513
 * Objet taxons pour autocompletion en fonction de la recherche
524
 * Objet taxons pour autocompletion en fonction de la recherche
Line 514... Line 525...
514
 */
525
 */
515
WidgetsSaisiesCommun.prototype.traiterRetourNomsSci = function( data ) {
526
WidgetsSaisiesCommun.prototype.traiterRetourNomsSci = function( data ) {
516
	var taxonSelecteur = '#taxon',
527
	let taxonSelecteur = '#taxon',
517
		suggestions    = [];
528
		suggestions = [];
518
 
529
 
519
	if ( this.valOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
530
	if ( valOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
Line 520... Line 531...
520
		taxonSelecteur += '-autre';
531
		taxonSelecteur += '-autre';
521
	}
532
	}
522
	if ( undefined != data.resultat ) {
533
	if ( undefined != data.resultat ) {
523
		$.each( data.resultat, function( i, val ) {
534
		$.each( data.resultat, function( i, val ) {
524
			val.nn = i;
535
			val.nn = i;
525
 
536
 
Line 562... Line 573...
562
 
573
 
563
/**
574
/**
564
 * charge les données dans #taxon
575
 * charge les données dans #taxon
565
 */
576
 */
566
WidgetsSaisiesCommun.prototype.surAutocompletionTaxon = function( event, ui ) {
577
WidgetsSaisiesCommun.prototype.surAutocompletionTaxon = function( event, ui ) {
567
	if ( utils.valOk( ui ) ) {
578
	if ( valOk( ui ) ) {
568
		$( '#taxon' ).val( ui.item.value );
579
		$( '#taxon' ).val( ui.item.value );
569
		$( '#taxon' ).data( 'value', ui.item.value )
580
		$( '#taxon' ).data( 'value', ui.item.value )
570
			.data( 'numNomSel', ui.item.numNomSel )
581
			.data( 'numNomSel', ui.item.numNomSel )
571
			.data( 'nomRet', ui.item.nomRet )
582
			.data( 'nomRet', ui.item.nomRet )
Line 576... Line 587...
576
			$( '#taxon' ).addClass( 'ns-retenu' );
587
			$( '#taxon' ).addClass( 'ns-retenu' );
577
		} else {
588
		} else {
578
			$( '#taxon' ).removeClass( 'ns-retenu' );
589
			$( '#taxon' ).removeClass( 'ns-retenu' );
579
		}
590
		}
580
		// Si l'espèce est mal déterminée la certitude est "à déterminer"
591
		// Si l'espèce est mal déterminée la certitude est "à déterminer"
581
		if( !utils.valOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
592
		if( !valOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
582
			$( '#certitude' ).find( 'option' ).each( function() {
593
			$( '#certitude' ).find( 'option' ).each( function() {
583
				if ( $( this ).hasClass( 'aDeterminer' ) ) {
594
				if ( $( this ).hasClass( 'aDeterminer' ) ) {
584
					$( this ).attr( 'selected', true );
595
					$( this ).attr( 'selected', true );
585
				} else {
596
				} else {
586
					$( this ).attr( 'selected', false );
597
					$( this ).attr( 'selected', false );
Line 595... Line 606...
595
/**
606
/**
596
 * Affiche temporairement (formulaire)
607
 * Affiche temporairement (formulaire)
597
 * la miniature d'une image ajoutée à l'obs
608
 * la miniature d'une image ajoutée à l'obs
598
 */
609
 */
599
WidgetsSaisiesCommun.prototype.afficherMiniature = function( reponse ) {
610
WidgetsSaisiesCommun.prototype.afficherMiniature = function( reponse ) {
600
	if ( this.debug ) {
-
 
601
		var debogage = $( 'debogage', reponse ).text();
-
 
602
	}
-
 
603
 
-
 
604
	var message        = $( 'message', reponse ).text();
611
	const message      = $( 'message', reponse ).text(),
605
		$blocMiniature = $( '#miniatures .miniature.loading').first();
612
		$blocMiniature = $( '#miniatures .miniature.loading').first();
Line 606... Line 613...
606
 
613
 
607
	if( this.valOk( $blocMiniature ) ) {
614
	if( valOk( $blocMiniature ) ) {
608
		if ( this.valOk( message ) ) {
615
		if ( valOk( message ) ) {
609
			$( '.miniature-msg' ).text( message );
616
			$( '.miniature-msg' ).text( message );
Line 610... Line 617...
610
			$blocMiniature.remove();
617
			$blocMiniature.remove();
611
 
618
 
612
		} else {
619
		} else {
613
			this.creerWidgetMiniature( reponse, $blocMiniature );
620
			this.creerWidgetMiniature( reponse, $blocMiniature );
614
			$blocMiniature.removeClass('loading');
621
			$blocMiniature.removeClass('loading');
615
		}
622
		}
616
		if ( !lthis.valOk( $( '.miniature-chargement' ) ) ) {
623
		if ( !valOk( $( '.miniature-chargement' ) ) ) {
617
			$( '#ajouter-obs' ).removeClass( 'hidden' );
624
			$( '#ajouter-obs' ).removeClass( 'hidden' );
618
			$( '#message-chargement' ).addClass( 'hidden' );
625
			$( '#message-chargement' ).addClass( 'hidden' );
619
		}
626
		}
Line 623... Line 630...
623
 
630
 
624
/**
631
/**
625
 * Crée la miniature temporaire (formulaire) + bouton pour l'effacer
632
 * Crée la miniature temporaire (formulaire) + bouton pour l'effacer
626
 */
633
 */
627
WidgetsSaisiesCommun.prototype.creerWidgetMiniature = function( reponse, $blocMiniature ) {
634
WidgetsSaisiesCommun.prototype.creerWidgetMiniature = function( reponse, $blocMiniature ) {
628
	var miniatureUrl = $( 'miniature-url', reponse ).text();
635
	const miniatureUrl = $( 'miniature-url', reponse ).text(),
Line 629... Line 636...
629
	var imgNom       = $( 'image-nom', reponse ).text();
636
		imgNom         = $( 'image-nom', reponse ).text();
630
 
637
 
631
	$blocMiniature.removeClass( 'miniature-chargement' );
638
	$blocMiniature.removeClass( 'miniature-chargement' );
632
	$( '.miniature-img', $blocMiniature )
639
	$( '.miniature-img', $blocMiniature )
Line 639... Line 646...
639
 
646
 
640
/**
647
/**
641
 * Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
648
 * Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
642
 */
649
 */
643
WidgetsSaisiesCommun.prototype.verifierFormat = function( nomImage ) {
650
WidgetsSaisiesCommun.prototype.verifierFormat = function( nomImage ) {
644
	var parts     = nomImage.split( '.' ),
651
	const parts   = nomImage.split( '.' ),
Line 645... Line 652...
645
		extension = parts[ parts.length - 1 ];
652
		extension = parts[ parts.length - 1 ];
646
 
653
 
Line 652... Line 659...
652
 * renvoie false si le même nom est rencontré 2 fois
659
 * renvoie false si le même nom est rencontré 2 fois
653
 * renvoie true sinon
660
 * renvoie true sinon
654
 */
661
 */
655
WidgetsSaisiesCommun.prototype.verifierDuplication = function( nomImage ) {
662
WidgetsSaisiesCommun.prototype.verifierDuplication = function( nomImage ) {
656
	const lthis = this;
663
	const lthis = this;
657
 
-
 
658
	var thisSrcParts = [],
664
	let thisSrcParts = [],
659
		thisNomImage = '',
665
		thisNomImage = '',
660
		nonDupliquee = true;
666
		nonDupliquee = true;
Line 661... Line 667...
661
 
667
 
Line 662... Line 668...
662
	nomImage = nomImage.toLowerCase();
668
	nomImage = nomImage.toLowerCase();
663
 
669
 
664
	$( 'img.miniature-img,img.miniature' ).each( function() {
670
	$( 'img.miniature-img,img.miniature' ).each( function() {
665
		// vérification avec alt de l'image
671
		// vérification avec alt de l'image
-
 
672
		if ( valOk ( $( this ).attr( 'alt' ) ) && $( this ).attr('alt' ).toLowerCase() === nomImage ) {
666
		if ( lthis.valOk ( $( this ).attr( 'alt' ) ) && $( this ).attr('alt' ).toLowerCase() === nomImage ) {
673
			nonDupliquee = false;
667
			nonDupliquee = false;
674
 
668
			return false;// Pas besoin de poursuivre la boucle
675
			return false;// Pas besoin de poursuivre la boucle
669
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
676
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
670
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
677
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
671
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' ).toLowerCase();
678
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' ).toLowerCase();
-
 
679
			if ( valOk( thisNomImage, true, nomImage ) ) {
672
			if ( lthis.valOk( thisNomImage, true, nomImage ) ) {
680
				nonDupliquee = false;
673
				nonDupliquee = false;
681
 
674
				return false;
682
				return false;
675
			}
683
			}
-
 
684
		}
676
		}
685
	});
677
	});
686
 
Line 678... Line 687...
678
	return nonDupliquee;
687
	return nonDupliquee;
679
};
688
};
Line 685... Line 694...
685
	miniature.parents( '.miniature' ).remove();
694
	miniature.parents( '.miniature' ).remove();
686
};
695
};
Line 687... Line 696...
687
 
696
 
688
// Geoloc *********************************************************************/
697
// Geoloc *********************************************************************/
689
WidgetsSaisiesCommun.prototype.transfererCarto = function( donnees ) {
698
WidgetsSaisiesCommun.prototype.transfererCarto = function( donnees ) {
690
	var typeLocalisation = donnees.typeLocalisation || 'point',
699
	const typeLocalisation = donnees.typeLocalisation || 'point',
691
		isPoint          = ( typeLocalisation === 'point' ).toString(),
-
 
692
		locationFilter   = ( typeLocalisation === 'rue' ) ? 'linestring' : 'point',
700
		suffixe            = valOk( donnees.suffixe ) ? '-' + donnees.suffixe : '',
693
		suffixe          = ( this.valOk( donnees.suffixe ) ) ? '-' + donnees.suffixe : '',
701
		formSuffixe        = '-arbres' === suffixe ? suffixe : '',
694
		$cartoRemplacee  = donnees.cartoRemplacee || $( '#tb-geolocation' ),
702
		$cartoRemplacee    = donnees.cartoRemplacee || $( '#tb-geolocation' ),
695
		layer            = donnees.layer || 'osm',
703
		latitude           = donnees.latitude || '',
696
		latitude         = donnees.latitude || '46.5',
704
		longitude          = donnees.longitude || '',
-
 
705
		zoomInit           = donnees.zoomInit || '',
-
 
706
		$mapContainer      = $cartoRemplacee.closest('#map-container');
697
		longitude        = donnees.longitude || '2.9',
707
 
698
		// 18 est le zoom max
708
	if ( valOk( formSuffixe ) || 'point' !== typeLocalisation ) {
-
 
709
		$mapContainer.siblings('#tb-places-zone').remove();
699
		zoomInit         = donnees.zoomInit || 18;
710
	}
-
 
711
 
700
 
712
	if ( 'tb-geolocation' + suffixe !== $cartoRemplacee.attr('id') ) {
701
	$cartoRemplacee.remove();
713
		$mapContainer.remove();
702
	$( '#geoloc' + suffixe ).append(
714
		$( '#geoloc' + suffixe ).append(
-
 
715
			'<div id="map-container">'+
703
		'<tb-geolocation-element'+
716
				'<div'+
704
			' id="tb-geolocation' + suffixe +'"'+
717
					' id="tb-geolocation' + suffixe +'"'+
705
			' layer="' + layer + '"'+
718
					' data-layer="' + donnees.layer + '"'+
706
			' zoom_init="' + zoomInit + '"'+
719
					' data-zoom="' + zoomInit + '"'+
707
			' lat_init="' + latitude + '"'+
720
					' data-type-localisation="' + typeLocalisation + '"'+
708
			' lng_init="' + longitude + '"'+
721
					' data-form-suffix="' + formSuffixe + '"'+
709
			' marker="' + isPoint + '"'+
722
					' style="height: 400px;width: 100%"'+
710
			' polyline="' + !isPoint + '"'+
723
				'>'+
711
			' polygon="false"'+
-
 
712
			' show_lat_lng_elevation_inputs="' + isPoint + '"'+
724
				'</div>'+
-
 
725
			'</div>'
-
 
726
		);
713
			' osm_class_filter=""'+
727
 
-
 
728
		$( '#coord' ).toggleClass( 'hidden', 'point' !== typeLocalisation );
714
			' geometry_filter="'+ locationFilter + '"'+
729
 
715
			' elevation_provider="mapquest"'+
730
		if( valOk( this.geoloc.map ) ) {
-
 
731
			this.geoloc.closeMap();
-
 
732
		}
716
			' map_quest_api_key="mG6oU5clZHRHrOSnAV0QboFI7ahnGg34"'+
733
 
717
			' height="400px"'+
734
		this.initEvtsGeoloc( true );
718
		'>'+
735
	} else {
719
		'</tb-geolocation-element>'
736
		this.geoloc.reSetDrawControl();
-
 
737
	}
720
	);
738
 
721
	this.initEvtsGeoloc( true );
739
	this.geoloc.setMapPosition({'lat': latitude, 'lng': longitude});
Line 722... Line 740...
722
};
740
};
723
 
741
 
724
// Ajouter Obs ****************************************************************/
742
// Ajouter Obs ****************************************************************/
Line 743... Line 761...
743
			$( '#arbre-nb' ).text( this.numArbre + 1 );
761
			$( '#arbre-nb' ).text( this.numArbre + 1 );
744
		}
762
		}
745
		$( '.obs-nbre' ).text( this.obsNbre );
763
		$( '.obs-nbre' ).text( this.obsNbre );
746
		$( '.obs-nbre' ).triggerHandler( 'changement' );
764
		$( '.obs-nbre' ).triggerHandler( 'changement' );
747
		//formatage des données
765
		//formatage des données
748
		var obsData = this.formaterFormObsData();
766
		const obsData = this.formaterFormObsData();
-
 
767
 
749
		this.afficherObs( obsData );
768
		this.afficherObs( obsData );
750
		this.stockerObsData( obsData );
769
		this.stockerObsData( obsData );
751
		if ( this.isASL && 'arbres' === this.sujet ) {
770
		if ( this.isASL && 'arbres' === this.sujet ) {
752
			var arbreData = obsData.sujet;
771
			const arbreData = obsData.sujet;
-
 
772
 
753
			// Ajout de donnée utiles puis stockage dans input hidden "releve-data"
773
			// Ajout de donnée utiles puis stockage dans input hidden "releve-data"
754
			arbreData['date_rue_commune']  = obsData.releve.date + obsData.releve.rue + obsData.releve['commune-nom'];
774
			arbreData['date_rue_commune']  = obsData.releve.date + obsData.releve.rue + obsData.releve['commune-nom'];
755
			arbreData['id_observation']    = 0;
775
			arbreData['id_observation']    = 0;
756
			this.releveDatas               = $.parseJSON( $( '#releve-data' ).val() );
776
			this.releveDatas               = $.parseJSON( $( '#releve-data' ).val() );
757
			this.releveDatas[this.obsNbre] = arbreData;
777
			this.releveDatas[this.obsNbre] = arbreData;
Line 769... Line 789...
769
 
789
 
770
/**
790
/**
771
 * Formatage des données du formulaire pour stockage et envoi
791
 * Formatage des données du formulaire pour stockage et envoi
772
 */
792
 */
773
WidgetsSaisiesCommun.prototype.formaterFormObsData = function() {
793
WidgetsSaisiesCommun.prototype.formaterFormObsData = function() {
774
	var obsData      = { obsNum : this.obsNbre, sujet : {}},
794
	const obsData   = { obsNum : this.obsNbre, sujet : {}},
775
		numNomSel    = $( '#taxon' ).data( 'numNomSel' ),
795
		numNomSel   = $( '#taxon' ).data( 'numNomSel' ),
776
		nomSel       = $( '#taxon' ).val(),
796
		nomSel      = $( '#taxon' ).val(),
777
		nomRet       = $( '#taxon' ).data( 'nomRet' ),
797
		nomRet      = $( '#taxon' ).data( 'nomRet' ),
778
		numNomRet    = $( '#taxon' ).data( 'numNomRet' ),
798
		numNomRet   = $( '#taxon' ).data( 'numNomRet' ),
779
		numTaxon     = $( '#taxon' ).data( 'nt' ),
799
		numTaxon    = $( '#taxon' ).data( 'nt' ),
780
		famille      = $( '#taxon' ).data( 'famille' ),
800
		famille     = $( '#taxon' ).data( 'famille' ),
781
		referentiel  = ( this.valOk( numNomSel ) ) ? this.nomSciReferentiel : 'autre',
801
		referentiel = ( valOk( numNomSel ) ) ? this.nomSciReferentiel : 'autre',
782
		certitude    = ( this.valOk( numNomSel ) ) ? $( '#certitude' ).val() : 'à determiner',
802
		certitude   = ( valOk( numNomSel ) ) ? $( '#certitude' ).val() : 'à determiner';
783
		imgB64       = [],
803
	let imgB64       = [],
784
		imgNom       = [],
804
		imgNom       = [],
785
		date         = '',
805
		date         = '',
786
		notes        = '',
806
		notes        = '',
787
		pays         = '',
807
		pays         = '',
Line 792... Line 812...
792
		longitude    = '',
812
		longitude    = '',
793
		altitude     = '',
813
		altitude     = '',
794
		obsEtendue   = [];
814
		obsEtendue   = [];
Line 795... Line 815...
795
 
815
 
796
	if( !this.isASL ) {
816
	if( !this.isASL ) {
797
		notes            = $( '#notes' ).val().trim() || '';
817
		notes        = $( '#notes' ).val().trim() || '';
798
		pays             = $( '#pays' ).val() || '';
818
		pays         = $( '#pays' ).val() || '';
799
		communeNom       = $( '#commune-nom' ).val();
819
		communeNom   = $( '#commune-nom' ).val();
800
		communeInsee     = $( '#commune-insee' ).val() || '';
820
		communeInsee = $( '#commune-insee' ).val() || '';
801
		geometry         = $( '#geometry' ).val();
821
		geometry     = $( '#geometry' ).val();
802
		latitude         = $( '#latitude' ).val();
822
		latitude     = $( '#latitude' ).val();
803
		longitude        = $( '#longitude' ).val();
823
		longitude    = $( '#longitude' ).val();
804
		altitude         = $( '#altitude' ).val();
824
		altitude     = $( '#altitude' ).val();
805
		obsEtendue       = this.getObsChpSpecifiques();
825
		obsEtendue   = this.getObsChpSpecifiques();
806
		date             = this.fournirDate( $('#date_releve').val());
826
		date         = this.fournirDate( $('#date_releve').val());
807
	} else {
827
	} else {
-
 
828
		const miniatureImg = [];
808
		var miniatureImg = [];
829
 
809
		notes = $( '#commentaire' ).val() || '';
830
		notes = $( '#commentaire' ).val() || '';
810
		if ( 'arbres' === this.sujet ) {
831
		if ( 'arbres' === this.sujet ) {
811
		// Dans ce cas cette fonction doit renvoyer des données au même format que l'input hidden "releve-data"
832
		// Dans ce cas cette fonction doit renvoyer des données au même format que l'input hidden "releve-data"
812
		// car les données dans stockerObsData provenir soit de cette fonction soit de l'input
833
		// car les données dans stockerObsData provenir soit de cette fonction soit de l'input
Line 862... Line 883...
862
				obsData.sujet['dejections']            = $( '#dejections input:checked' ).val() || '';
883
				obsData.sujet['dejections']            = $( '#dejections input:checked' ).val() || '';
863
				obsData.releve['zone-pietonne']        = $( '#zone-pietonne input:checked' ).val();
884
				obsData.releve['zone-pietonne']        = $( '#zone-pietonne input:checked' ).val();
864
				obsData.releve['pres-lampadaires']     = $( '#pres-lampadaires input:checked' ).val() || '';
885
				obsData.releve['pres-lampadaires']     = $( '#pres-lampadaires input:checked' ).val() || '';
865
			}
886
			}
866
			if ( 'tb_streets' !== this.projet ) {
887
			if ( 'tb_streets' !== this.projet ) {
867
				var faceOmbre = [];
888
				const faceOmbre = [];
-
 
889
 
868
				$( '#face-ombre input' ).each( function() {
890
				$( '#face-ombre input' ).each( function() {
869
					if( $( this ).is( ':checked' ) ) {
891
					if( $( this ).is( ':checked' ) ) {
870
						faceOmbre.push( $( this ).val() );
892
						faceOmbre.push( $( this ).val() );
871
					}
893
					}
872
				});
894
				});
Line 926... Line 948...
926
/**
948
/**
927
 * Affiche une observation dans la liste des observations à transmettre
949
 * Affiche une observation dans la liste des observations à transmettre
928
 */
950
 */
929
WidgetsSaisiesCommun.prototype.afficherObs = function( datasObs ) {
951
WidgetsSaisiesCommun.prototype.afficherObs = function( datasObs ) {
930
	// différences html liéees au responsive
952
	// différences html liéees au responsive
931
	var responsivDiff1 = '',
953
	let responsivDiff1 = '',
932
		responsivDiff2 = '',
954
		responsivDiff2 = '',
933
		responsivDiff3 = '',
955
		responsivDiff3 = '',
934
		responsivDiff4 = '',
956
		responsivDiff4 = '',
935
		responsivDiff5 = '',
957
		responsivDiff5 = '',
936
		responsivDiff6 = '';
958
		responsivDiff6 = '';
Line 942... Line 964...
942
		responsivDiff4 = ( !this.isASL ) ? ' col-md-2 col-sm-4' : ' col-md-4 col-sm-5';
964
		responsivDiff4 = ( !this.isASL ) ? ' col-md-2 col-sm-4' : ' col-md-4 col-sm-5';
943
		responsivDiff5 = ( !this.isASL ) ? ' class="col-md-9 col-sm-7"' : ' class="col-md-7 col-sm-6"';
965
		responsivDiff5 = ( !this.isASL ) ? ' class="col-md-9 col-sm-7"' : ' class="col-md-7 col-sm-6"';
944
		responsivDiff6 = '</div>';
966
		responsivDiff6 = '</div>';
945
	}
967
	}
Line 946... Line 968...
946
 
968
 
947
	var obsNum           = datasObs.obsNum,
969
	const obsNum = datasObs.obsNum;
948
		numNomSel        = datasObs.sujet['num_nom_sel'] || '',
970
	let numNomSel        = datasObs.sujet['num_nom_sel'] || '',
949
		taxon            = '',
971
		taxon            = '',
950
		miniatures       = '',
972
		miniatures       = '',
951
		notes            = '',
973
		notes            = '',
952
		commentaires     = '',
974
		commentaires     = '',
Line 971... Line 993...
971
		geometry     = datasObs.sujet['geometry'] || '';
993
		geometry     = datasObs.sujet['geometry'] || '';
972
		latitude     = datasObs.sujet['latitude'] || '';
994
		latitude     = datasObs.sujet['latitude'] || '';
973
		longitude    = datasObs.sujet['longitude'] || '';
995
		longitude    = datasObs.sujet['longitude'] || '';
974
		inseeCommune = datasObs.sujet['commune_code_insee'] || '';
996
		inseeCommune = datasObs.sujet['commune_code_insee'] || '';
975
		commune      = datasObs.sujet['commune_nom'] || '';
997
		commune      = datasObs.sujet['commune_nom'] || '';
976
		if ( this.valOk( inseeCommune ) ) {
998
		if ( valOk( inseeCommune ) ) {
977
			inseeCommuneText = '(INSEE Commune:' + inseeCommune + ') ';
999
			inseeCommuneText = '(INSEE Commune:' + inseeCommune + ') ';
978
		}
1000
		}
979
		if ( this.valOk( numNomSel ) ) {
1001
		if ( valOk( numNomSel ) ) {
980
			referentiel = '<span class="referentiel-obs">' + '[' + datasObs.sujet['referentiel'] + ']' + '</span>';
1002
			referentiel = '<span class="referentiel-obs">' + '[' + datasObs.sujet['referentiel'] + ']' + '</span>';
981
		}
1003
		}
982
		if ( this.valOk( datasObs.sujet['lieudit'] ) ) {
1004
		if ( valOk( datasObs.sujet['lieudit'] ) ) {
983
			lieudit = '<span>' + this.msgTraduction( 'lieu-dit' ) + ' :</span> ' + datasObs.sujet['lieudit'] + ' ';
1005
			lieudit = '<span>' + this.msgTraduction( 'lieu-dit' ) + ' :</span> ' + datasObs.sujet['lieudit'] + ' ';
984
		}
1006
		}
985
		if ( this.valOk( datasObs.sujet['station'] ) ) {
1007
		if ( valOk( datasObs.sujet['station'] ) ) {
986
			station = '<span>' + this.msgTraduction( 'station' ) + ' :</span> ' + datasObs.sujet['station'] + ' ';
1008
			station = '<span>' + this.msgTraduction( 'station' ) + ' :</span> ' + datasObs.sujet['station'] + ' ';
987
		}
1009
		}
988
		if ( this.valOk( datasObs.sujet['milieu'] ) ) {
1010
		if ( valOk( datasObs.sujet['milieu'] ) ) {
989
			milieu = '<span>' + this.msgTraduction( 'milieu' ) + ' :</span> ' + datasObs.sujet['milieu'] + ' ';
1011
			milieu = '<span>' + this.msgTraduction( 'milieu' ) + ' :</span> ' + datasObs.sujet['milieu'] + ' ';
990
		}
1012
		}
991
		nn = this.ajouterNumNomSel( numNomSel );
1013
		nn = this.ajouterNumNomSel( numNomSel );
992
	} else {
1014
	} else {
993
		certitude = ' [certitude : ' + datasObs.sujet.certitude + ']';
1015
		certitude = ' [certitude : ' + datasObs.sujet.certitude + ']';
Line 1014... Line 1036...
1014
		miniatures = this.ajouterImgMiniatureAuTransfert();
1036
		miniatures = this.ajouterImgMiniatureAuTransfert();
1015
		notes      = datasObs.sujet['notes'] || '';
1037
		notes      = datasObs.sujet['notes'] || '';
1016
		date       = this.fournirDate( datasObs.sujet.date );
1038
		date       = this.fournirDate( datasObs.sujet.date );
1017
	}
1039
	}
1018
	if( !this.isASL || 'arbres' === this.sujet ) {
1040
	if( !this.isASL || 'arbres' === this.sujet ) {
1019
		if ( this.valOk( commune ) ) {
1041
		if ( valOk( commune ) ) {
1020
			lieuObs = ' '  + this.msgTraduction( 'lieu-obs' ) + ' ' + '<span class="commune">' + commune + '</span> ';
1042
			lieuObs = ' '  + this.msgTraduction( 'lieu-obs' ) + ' ' + '<span class="commune">' + commune + '</span> ';
1021
		}
1043
		}
1022
		if ( this.valOk( latitude ) && this.valOk( longitude ) ) {
1044
		if ( valOk( latitude ) && valOk( longitude ) ) {
1023
			coordonnees = '[' + latitude + ' / ' + longitude + ']';
1045
			coordonnees = '[' + latitude + ' / ' + longitude + ']';
1024
		}
1046
		}
1025
	}
1047
	}
1026
	if ( this.valOk( notes ) ) {
1048
	if ( valOk( notes ) ) {
1027
		commentaires =
1049
		commentaires =
1028
			this.msgTraduction( 'commentaires' ) +
1050
			this.msgTraduction( 'commentaires' ) +
1029
			' : <span>'+
1051
			' : <span>'+
1030
				notes +
1052
				notes +
1031
			'</span> ';
1053
			'</span> ';
Line 1073... Line 1095...
1073
							lieudit +
1095
							lieudit +
1074
							station +
1096
							station +
1075
							milieu +
1097
							milieu +
1076
						'</li>'+
1098
						'</li>'+
1077
						'<li>'+
1099
						'<li>'+
1078
							// this.valOk( notes )
1100
							// valOk( notes )
1079
							commentaires +
1101
							commentaires +
1080
						'</li>'+
1102
						'</li>'+
1081
					'</ul>'+
1103
					'</ul>'+
1082
				'</div>'+
1104
				'</div>'+
1083
			responsivDiff6+
1105
			responsivDiff6+
Line 1091... Line 1113...
1091
 * Ajoute une boîte de miniatures avec défilement des images,
1113
 * Ajoute une boîte de miniatures avec défilement des images,
1092
 * pour une obs de la liste des obs à transmettre
1114
 * pour une obs de la liste des obs à transmettre
1093
 */
1115
 */
1094
WidgetsSaisiesCommun.prototype.ajouterImgMiniatureAuTransfert = function( chargerImages = undefined ) {
1116
WidgetsSaisiesCommun.prototype.ajouterImgMiniatureAuTransfert = function( chargerImages = undefined ) {
1095
	const lthis = this;
1117
	const lthis = this;
1096
	var html         =
1118
	let html         =
1097
			'<div class="defilement-miniatures">'+
1119
			'<div class="defilement-miniatures">'+
1098
				'<figure class="centre">'+
1120
				'<figure class="centre">'+
1099
					'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
1121
					'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
1100
				'</figure>'+
1122
				'</figure>'+
1101
			'</div>',
1123
			'</div>',
1102
		miniatures   = '',
1124
		miniatures   = '',
1103
		centre       = '',
1125
		centre       = '',
1104
		defilVisible = '',
1126
		defilVisible = '',
1105
		length       = 0;
1127
		length       = 0;
Line 1106... Line 1128...
1106
 
1128
 
1107
	if ( this.valOk( chargerImages ) || this.valOk( $( '#miniatures img' ) ) ) {
1129
	if ( valOk( chargerImages ) || valOk( $( '#miniatures img' ) ) ) {
1108
		if ( this.valOk( chargerImages ) ) {
1130
		if ( valOk( chargerImages ) ) {
1109
			$.each(  chargerImages, function( i, value ) {
1131
			$.each(  chargerImages, function( i, value ) {
1110
				var imgVisible = ( 0 < i ) ? 'miniature-cachee' : 'miniature-selectionnee';
-
 
1111
 
1132
				let imgVisible = ( 0 < i ) ? 'miniature-cachee' : 'miniature-selectionnee',
1112
				var css        = ( lthis.valOk( value['b64'] ) ) ? 'miniature b64' : 'miniature',
1133
					css        = ( valOk( value['b64'] ) ) ? 'miniature b64' : 'miniature',
1113
					src        = value.src,
1134
					src        = value.src,
1114
					alt        = value.nom,
1135
					alt        = value.nom,
Line 1115... Line 1136...
1115
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
1136
					miniature  = '<img class="' + css + ' ' + imgVisible + ' align-middle"  alt="' + alt + '"src="' + src + '" width="80%" />';
1116
 
1137
 
1117
				miniatures += miniature;
1138
				miniatures += miniature;
1118
			});
1139
			});
1119
			length = chargerImages.length;
1140
			length = chargerImages.length;
1120
		} else {
1141
		} else {
1121
			var premiere     = true;
1142
			let premiere = true;
-
 
1143
			$( '#miniatures img' ).each( function() {
1122
			$( '#miniatures img' ).each( function() {
1144
				let imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
Line 1123... Line 1145...
1123
				var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
1145
 
1124
				premiere = false;
1146
				premiere = false;
1125
 
1147
 
1126
				var css        = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
1148
				let css        = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
Line 1127... Line 1149...
1127
					src        = $( this ).attr( 'src' ),
1149
					src        = $( this ).attr( 'src' ),
Line 1134... Line 1156...
1134
		}
1156
		}
1135
		if ( 1 === length ) {
1157
		if ( 1 === length ) {
1136
			centre       = 'centre';
1158
			centre       = 'centre';
1137
			defilVisible = ' defilement-miniatures-cache';
1159
			defilVisible = ' defilement-miniatures-cache';
1138
		}
1160
		}
1139
		html             =
1161
		html =
1140
			'<div class="defilement-miniatures">'+
1162
			'<div class="defilement-miniatures">'+
1141
				'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
1163
				'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
1142
				'<figure class="' + centre + '">'+
1164
				'<figure class="' + centre + '">'+
1143
					miniatures+
1165
					miniatures+
1144
				'</figure>'+
1166
				'</figure>'+
Line 1151... Line 1173...
1151
 
1173
 
1152
/**
1174
/**
1153
 * Construit le html à afficher pour le numNom
1175
 * Construit le html à afficher pour le numNom
1154
 */
1176
 */
1155
WidgetsSaisiesCommun.prototype.ajouterNumNomSel = function( numNomSel ) {
1177
WidgetsSaisiesCommun.prototype.ajouterNumNomSel = function( numNomSel ) {
Line 1156... Line 1178...
1156
	var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
1178
	let nn = '<span class="nn">[nn' + numNomSel + ']</span>';
1157
 
1179
 
1158
	if ( !this.valOk( numNomSel ) ) {
1180
	if ( !valOk( numNomSel ) ) {
Line 1159... Line 1181...
1159
		nn = '<span class="alert-error">[' + this.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
1181
		nn = '<span class="alert-error">[' + this.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
1160
	}
1182
	}
Line 1169... Line 1191...
1169
	if ( this.isASL && 'arbres' === this.sujet ) {
1191
	if ( this.isASL && 'arbres' === this.sujet ) {
1170
		// Dans ce cas la fonction formaterFormObsData renvoie des données au même format que l'input hidden "releve-data"
1192
		// Dans ce cas la fonction formaterFormObsData renvoie des données au même format que l'input hidden "releve-data"
1171
		// car les données peuvent provenir soit de la formaterFormObsData soit de cet input
1193
		// car les données peuvent provenir soit de la formaterFormObsData soit de cet input
1172
		const lthis = this;
1194
		const lthis = this;
1173
		// si releve dupliqué on ne stocke pas l'image :
1195
		// si releve dupliqué on ne stocke pas l'image :
1174
		var stockerImg  = this.valOk( obsDatas.sujet['miniature-img'] ),
1196
		let stockerImg  = valOk( obsDatas.sujet['miniature-img'] ),
1175
			imgNom      = [],
1197
			imgNom      = [],
1176
			imgB64      = [];
1198
			imgB64      = [];
Line 1177... Line 1199...
1177
 
1199
 
1178
		// Si on a bien un 'miniature-img' dans les données
1200
		// Si on a bien un 'miniature-img' dans les données
Line 1185... Line 1207...
1185
			});
1207
			});
1186
		}
1208
		}
1187
		// Si les miniatures ne sont pas déjà stockées (résultat de la loop précédente)
1209
		// Si les miniatures ne sont pas déjà stockées (résultat de la loop précédente)
1188
		if( stockerImg ) {
1210
		if( stockerImg ) {
1189
			$.each( obsDatas.sujet['miniature-img'] , function( i, obj ) {
1211
			$.each( obsDatas.sujet['miniature-img'] , function( i, obj ) {
1190
				if( lthis.valOk( obj.nom ) ) {
1212
				if( valOk( obj.nom ) ) {
1191
					imgNom.push( obj.nom );
1213
					imgNom.push( obj.nom );
1192
				}
1214
				}
1193
				if( lthis.valOk( obj['b64'] ) ) {
1215
				if( valOk( obj['b64'] ) ) {
1194
					imgB64.push( obj['b64'] );
1216
					imgB64.push( obj['b64'] );
1195
				}
1217
				}
1196
			});
1218
			});
1197
		} else {
1219
		} else {
1198
			imgNom = lthis.getNomsImgsOriginales();
1220
			imgNom = lthis.getNomsImgsOriginales();
Line 1228... Line 1250...
1228
		$( '#liste-obs' ).data( 'obsId' + obsDatas.obsNum, obsDatas.sujet );
1250
		$( '#liste-obs' ).data( 'obsId' + obsDatas.obsNum, obsDatas.sujet );
1229
	}
1251
	}
1230
};
1252
};
Line 1231... Line 1253...
1231
 
1253
 
1232
WidgetsSaisiesCommun.prototype.getNomsImgsOriginales = function() {
1254
WidgetsSaisiesCommun.prototype.getNomsImgsOriginales = function() {
Line 1233... Line 1255...
1233
	var noms = new Array();
1255
	const noms = [];
1234
 
1256
 
1235
	$( '.miniature-img' ).each( function() {
1257
	$( '.miniature-img' ).each( function() {
Line 1236... Line 1258...
1236
		noms.push( $( this ).attr( 'alt' ) );
1258
		noms.push( $( this ).attr( 'alt' ) );
1237
	});
1259
	});
Line 1238... Line 1260...
1238
 
1260
 
1239
	return noms;
1261
	return noms;
Line 1240... Line 1262...
1240
};
1262
};
1241
 
1263
 
1242
WidgetsSaisiesCommun.prototype.getB64ImgsOriginales = function() {
1264
WidgetsSaisiesCommun.prototype.getB64ImgsOriginales = function() {
1243
	var b64 = new Array();
1265
	const b64 = [];
Line 1287... Line 1309...
1287
		}
1309
		}
1288
	}
1310
	}
1289
};
1311
};
Line 1290... Line 1312...
1290
 
1312
 
1291
WidgetsSaisiesCommun.prototype.defilerMiniatures = function( element ) {
1313
WidgetsSaisiesCommun.prototype.defilerMiniatures = function( element ) {
Line 1292... Line 1314...
1292
	var miniatureSelectionne  = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
1314
	const miniatureSelectionne  = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
1293
 
1315
 
Line 1294... Line 1316...
1294
	miniatureSelectionne.removeClass( 'miniature-selectionnee' );
1316
	miniatureSelectionne.removeClass( 'miniature-selectionnee' );
Line 1295... Line 1317...
1295
	miniatureSelectionne.addClass( 'miniature-cachee' );
1317
	miniatureSelectionne.addClass( 'miniature-cachee' );
1296
 
1318
 
1297
	var miniatureAffichee     = miniatureSelectionne;
1319
	let miniatureAffichee     = miniatureSelectionne;
1298
 
1320
 
Line 1312... Line 1334...
1312
	miniatureAffichee.addClass( 'miniature-selectionnee' );
1334
	miniatureAffichee.addClass( 'miniature-selectionnee' );
1313
	miniatureAffichee.removeClass( 'miniature-cachee' );
1335
	miniatureAffichee.removeClass( 'miniature-cachee' );
1314
};
1336
};
Line 1315... Line 1337...
1315
 
1337
 
1316
WidgetsSaisiesCommun.prototype.supprimerObs = function( selector ) {
1338
WidgetsSaisiesCommun.prototype.supprimerObs = function( selector ) {
Line 1317... Line 1339...
1317
	var obsId = $( selector ).val();
1339
	let obsId = $( selector ).val();
1318
 
1340
 
1319
	// Problème avec IE 6 et 7
1341
	// Problème avec IE 6 et 7
1320
	if ( 'Supprimer' === obsId ) {
1342
	if ( 'Supprimer' === obsId ) {
Line 1326... Line 1348...
1326
/**
1348
/**
1327
 * Supprime l'obs et les data de l'obs
1349
 * Supprime l'obs et les data de l'obs
1328
 * et remonte les suivantes d'un cran
1350
 * et remonte les suivantes d'un cran
1329
 */
1351
 */
1330
WidgetsSaisiesCommun.prototype.supprimerObsParId = function( obsId, transmission = false ) {
1352
WidgetsSaisiesCommun.prototype.supprimerObsParId = function( obsId, transmission = false ) {
-
 
1353
	let arbreExId = 0,
-
 
1354
		arbreId   = 0;
-
 
1355
 
1331
	if ( this.isASL && 'arbres' === this.sujet ) {
1356
	if ( this.isASL && 'arbres' === this.sujet ) {
1332
		if ( !transmission ) {
1357
		if ( !transmission ) {
1333
			this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1358
			this.releveData  = $.parseJSON( $( '#releve-data' ).val() );
1334
			this.releveData.splice( obsId , 1 );
1359
			this.releveData.splice( obsId , 1 );
1335
			$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
1360
			$( '#releve-data' ).val( JSON.stringify( this.releveData ) );
Line 1338... Line 1363...
1338
		$( '#arbre-nb' ).text( this.numArbre );
1363
		$( '#arbre-nb' ).text( this.numArbre );
1339
		this.numArbre -= 1;
1364
		this.numArbre -= 1;
1340
		if ( 1 > this.numArbre ) {
1365
		if ( 1 > this.numArbre ) {
1341
			$( '#bloc-info-arbres-title' ).addClass( 'hidden' );
1366
			$( '#bloc-info-arbres-title' ).addClass( 'hidden' );
1342
		}
1367
		}
1343
 
-
 
1344
		var arbreExId   = 0,
-
 
1345
			arbreId     = 0;
-
 
1346
	}
1368
	}
1347
	this.obsNbre  -= 1;
1369
	this.obsNbre  -= 1;
1348
	$( '.obs-nbre' ).text( this.obsNbre );
1370
	$( '.obs-nbre' ).text( this.obsNbre );
1349
	$( '.obs-nbre' ).triggerHandler( 'changement' );
1371
	$( '.obs-nbre' ).triggerHandler( 'changement' );
1350
	$( '.obs' + obsId ).remove();
1372
	$( '.obs' + obsId ).remove();
1351
	obsId = parseInt(obsId);
1373
	obsId = parseInt(obsId);
Line 1352... Line 1374...
1352
 
1374
 
1353
	if ( !transmission ) {
1375
	if ( !transmission ) {
1354
		var listObsData = $( '#liste-obs' ).data(),
1376
		const listObsData = $( '#liste-obs' ).data();
1355
			exId        = 0,
1377
		let exId      = 0,
1356
			indexObs    = '',
1378
			indexObs  = '',
Line 1357... Line 1379...
1357
			exIndexObs  = '';
1379
			exIndexOb = '';
1358
 
1380
 
1359
		for ( var id = obsId; id <= ( this.obsNbre + 1 ); id++ ) {
1381
		for ( let id = obsId; id <= ( this.obsNbre + 1 ); id++ ) {
1360
			exId       = parseInt(id) + 1;
1382
			exId       = parseInt(id) + 1;
1361
			indexObs   = 'obsId' + id;
1383
			indexObs   = 'obsId' + id;
1362
			exIndexObs = 'obsId' + exId;
1384
			exIndexObs = 'obsId' + exId;
Line 1376... Line 1398...
1376
					.attr( 'id', 'obs-arbre-' + arbreId )
1398
					.attr( 'id', 'obs-arbre-' + arbreId )
1377
					.attr( 'data-arbre', arbreId )
1399
					.attr( 'data-arbre', arbreId )
1378
					.data( 'arbre', arbreId )
1400
					.data( 'arbre', arbreId )
1379
					.text( 'Arbre ' + arbreId );
1401
					.text( 'Arbre ' + arbreId );
1380
				// modification du numero d'arbre dans les obs étendues
1402
				// modification du numero d'arbre dans les obs étendues
1381
				if ( this.valOk( listObsData[exIndexObs] ) ) {
1403
				if ( valOk( listObsData[exIndexObs] ) ) {
1382
					$.each( listObsData[exIndexObs].obs_etendue, function( i, obsE ) {
1404
					$.each( listObsData[exIndexObs].obs_etendue, function( i, obsE ) {
1383
						if ('num_arbre' === obsE.cle ) {
1405
						if ('num_arbre' === obsE.cle ) {
1384
							listObsData[exIndexObs].obs_etendue[i].valeur = arbreId;
1406
							listObsData[exIndexObs].obs_etendue[i].valeur = arbreId;
1385
							return false;
1407
							return false;
1386
						}
1408
						}
1387
					});
1409
					});
1388
				}
1410
				}
1389
			}
1411
			}
Line 1390... Line 1412...
1390
 
1412
 
1391
			// Mise à jour des données à transmettre
1413
			// Mise à jour des données à transmettre
1392
			if ( this.valOk( listObsData[exIndexObs] ) ) {
1414
			if ( valOk( listObsData[exIndexObs] ) ) {
1393
				$( '#liste-obs' ).data( indexObs, listObsData[exIndexObs] );
1415
				$( '#liste-obs' ).data( indexObs, listObsData[exIndexObs] );
1394
			}
1416
			}
1395
			if ( parseInt( id ) !== this.obsNbre ) {
1417
			if ( parseInt( id ) !== this.obsNbre ) {
1396
				id = parseInt(id);
1418
				id = parseInt(id);
Line 1400... Line 1422...
1400
		$( '#liste-obs' ).removeData( 'obsId' + obsId );
1422
		$( '#liste-obs' ).removeData( 'obsId' + obsId );
1401
	}
1423
	}
1402
};
1424
};
Line 1403... Line 1425...
1403
 
1425
 
1404
WidgetsSaisiesCommun.prototype.transmettreObs = function() {
1426
WidgetsSaisiesCommun.prototype.transmettreObs = function() {
1405
	const lthis = this;
1427
	const lthis = this,
Line 1406... Line 1428...
1406
	var observations = $( '#liste-obs' ).data();
1428
		observations = $( '#liste-obs' ).data();
1407
 
1429
 
1408
	if ( this.debug ) {
1430
	if ( this.debug ) {
1409
		console.dir( observations );
1431
		console.dir( observations );
1410
	}
1432
	}
1411
	if ( !this.valOk( typeof observations, true, 'object' ) ) {
1433
	if ( !valOk( typeof observations, true, 'object' ) ) {
1412
		this.afficherPanneau( '#dialogue-zero-obs' );
1434
		this.afficherPanneau( '#dialogue-zero-obs' );
1413
	} else {
1435
	} else {
1414
		this.nbObsEnCours         = 1;
1436
		this.nbObsEnCours         = 1;
Line 1421... Line 1443...
1421
 
1443
 
1422
	return false;
1444
	return false;
Line 1423... Line 1445...
1423
};
1445
};
1424
 
1446
 
1425
WidgetsSaisiesCommun.prototype.depilerObsPourEnvoi = function() {
1447
WidgetsSaisiesCommun.prototype.depilerObsPourEnvoi = function() {
1426
	var observations = $( '#liste-obs' ).data();
1448
	const observations = $( '#liste-obs' ).data();
1427
	// la boucle est factice car on utilise un tableau
1449
	// la boucle est factice car on utilise un tableau
1428
	// dont on a besoin de n'extraire que le premier élément
1450
	// dont on a besoin de n'extraire que le premier élément
1429
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
1451
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
1430
	// TODO: utiliser var.keys quand ça sera plus répandu
1452
	// TODO: utiliser var.keys quand ça sera plus répandu
1431
	// ou bien utiliser un vrai tableau et pas un objet
1453
	// ou bien utiliser un vrai tableau et pas un objet
1432
	for ( var obsNum in observations ) {
1454
	for ( let obsNum in observations ) {
1433
		var obsATransmettre = {
1455
		const obsATransmettre = {
1434
			'id_projet' : this.idProjet,
1456
				'id_projet' : this.idProjet,
1435
			'projet'    : this.projet,
1457
				'projet'    : this.projet,
1436
			'tag-obs'   : this.tagObs,
1458
				'tag-obs'   : this.tagObs,
1437
			'tag-img'   : this.tagImg
1459
				'tag-img'   : this.tagImg
1438
		};
1460
			},
1439
		var utilisateur = {
1461
			utilisateur        = {
1440
			id_utilisateur : $( '#id_utilisateur' ).val(),
1462
				id_utilisateur : $( '#id_utilisateur' ).val(),
1441
			prenom         : $( '#prenom' ).val(),
1463
				prenom         : $( '#prenom' ).val(),
1442
			nom            : $( '#nom' ).val(),
1464
				nom            : $( '#nom' ).val(),
Line 1443... Line 1465...
1443
			courriel       : $( '#courriel' ).val()
1465
				courriel       : $( '#courriel' ).val()
1444
		};
1466
			};
Line 1445... Line 1467...
1445
 
1467
 
Line 1446... Line 1468...
1446
		obsATransmettre['utilisateur'] = utilisateur;
1468
		obsATransmettre['utilisateur'] = utilisateur;
1447
		obsATransmettre[obsNum]        = observations[obsNum];
1469
		obsATransmettre[obsNum]        = observations[obsNum];
1448
 
1470
 
1449
		var idObsNumerique = obsNum.replace( 'obsId', '' );
1471
		const idObsNumerique = obsNum.replace( 'obsId', '' );
1450
 
1472
 
1451
		if( '' !== idObsNumerique ) {
1473
		if( '' !== idObsNumerique ) {
Line 1452... Line 1474...
1452
			this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
1474
			this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
1453
		}
1475
		}
1454
		break;
-
 
1455
	}
1476
		break;
Line 1456... Line 1477...
1456
};
1477
	}
1457
 
1478
};
1458
WidgetsSaisiesCommun.prototype.envoyerObsAuCel = function( idObs, observation ) {
1479
 
1459
	const lthis = this;
1480
WidgetsSaisiesCommun.prototype.envoyerObsAuCel = function( idObs, observation ) {
Line 1504... Line 1525...
1504
			} catch( e ) {
1525
			} catch( e ) {
1505
				erreurMsg += lthis.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
1526
				erreurMsg += lthis.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
1506
			}
1527
			}
1507
		},
1528
		},
1508
		complete      : function( jqXHR, textStatus ) {
1529
		complete      : function( jqXHR, textStatus ) {
1509
			var debugMsg = lthis.extraireEnteteDebug( jqXHR );
1530
			const debugMsg = lthis.extraireEnteteDebug( jqXHR );
Line 1510... Line 1531...
1510
 
1531
 
1511
			if ( '' !== erreurMsg ) {
1532
			if ( '' !== erreurMsg ) {
1512
				if ( lthis.debug ) {
1533
				if ( lthis.debug ) {
1513
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
1534
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
1514
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1535
					$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
1515
				}
1536
				}
1516
				var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
1537
				const hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
1517
					'subject=Dysfonctionnement du widget de saisie ' + lthis.tagsMotsCles+
1538
					'subject=Dysfonctionnement du widget de saisie ' + lthis.tagsMotsCles+
Line 1518... Line 1539...
1518
					'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
1539
					'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
1519
 
1540
 
Line 1558... Line 1579...
1558
};
1579
};
Line 1559... Line 1580...
1559
 
1580
 
1560
WidgetsSaisiesCommun.prototype.mettreAJourProgression = function() {
1581
WidgetsSaisiesCommun.prototype.mettreAJourProgression = function() {
Line 1561... Line 1582...
1561
	this.nbObsTransmises++;
1582
	this.nbObsTransmises++;
Line 1562... Line 1583...
1562
 
1583
 
1563
	var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
1584
	const pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
1564
 
1585
 
1565
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
1586
	$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
Line 1584... Line 1605...
1584
	const lthis = this;
1605
	const lthis = this;
Line 1585... Line 1606...
1585
 
1606
 
1586
	$.validator.addMethod(
1607
	$.validator.addMethod(
1587
		'dateCel',
1608
		'dateCel',
1588
		function ( value, element ) {
1609
		function ( value, element ) {
1589
			return ( lthis.valOk( value ) && ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) ) );
1610
			return ( valOk( value ) && ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) ) );
1590
		},
1611
		},
1591
		lthis.msgTraduction( 'date-incomplete' )
1612
		lthis.msgTraduction( 'date-incomplete' )
1592
	);
1613
	);
1593
	$.validator.addMethod(
1614
	$.validator.addMethod(
1594
		'userEmailOk',
1615
		'userEmailOk',
1595
		function ( value, element ) {
1616
		function ( value, element ) {
1596
			return ( lthis.valOk( value ) );
1617
			return ( valOk( value ) );
1597
		},
1618
		},
1598
		''
1619
		''
1599
	);
1620
	);
1600
	$.validator.addMethod(
1621
	$.validator.addMethod(
Line 1606... Line 1627...
1606
		$.validator.messages.minMaxOk
1627
		$.validator.messages.minMaxOk
1607
	);
1628
	);
1608
	$.validator.addMethod(
1629
	$.validator.addMethod(
1609
		'listFields',
1630
		'listFields',
1610
		function ( value, element ) {
1631
		function ( value, element ) {
1611
			return ( lthis.valOk( value ) );
1632
			return ( valOk( value ) );
1612
		},
1633
		},
1613
		''
1634
		''
1614
	);
1635
	);
1615
	$.extend( $.validator.defaults, {
1636
	$.extend( $.validator.defaults, {
1616
		errorElement: 'span',
1637
		errorElement: 'span',
Line 1620... Line 1641...
1620
			} else {
1641
			} else {
1621
				element.after( error );
1642
				element.after( error );
1622
			}
1643
			}
1623
		},
1644
		},
1624
		onfocusout: function( element ) {
1645
		onfocusout: function( element ) {
1625
			if( lthis.valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1646
			if( valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1626
				if ( $( element ).valid() ) {
1647
				if ( $( element ).valid() ) {
1627
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1648
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1628
				} else {
1649
				} else {
1629
					$( element ).closest( '.control-group' ).addClass( 'error' );
1650
					$( element ).closest( '.control-group' ).addClass( 'error' );
1630
				}
1651
				}
1631
			}
1652
			}
1632
		},
1653
		},
1633
		onkeyup : function( element ) {
1654
		onkeyup : function( element ) {
1634
			if( lthis.valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1655
			if( valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1635
				if ( $( element ).valid() ) {
1656
				if ( $( element ).valid() ) {
1636
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1657
					$( element ).closest( '.control-group' ).removeClass( 'error' );
1637
				} else {
1658
				} else {
1638
					$( element ).closest( '.control-group' ).addClass( 'error' );
1659
					$( element ).closest( '.control-group' ).addClass( 'error' );
1639
				}
1660
				}
1640
			}
1661
			}
1641
		},
1662
		},
1642
		unhighlight: function( element ) {
1663
		unhighlight: function( element ) {
1643
			if( lthis.valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1664
			if( valOk( element.id, false, 'taxon' ) || ( lthis.isASL && 'arbres' === lthis.sujet ) ) {
1644
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1665
				$( element ).closest( '.control-group' ).removeClass( 'error' );
1645
			}
1666
			}
1646
		},
1667
		},
1647
		highlight: function( element ) {
1668
		highlight: function( element ) {
1648
			$( element ).closest( '.control-group' ).addClass( 'error' );
1669
			$( element ).closest( '.control-group' ).addClass( 'error' );
Line 1651... Line 1672...
1651
};
1672
};
Line 1652... Line 1673...
1652
 
1673
 
1653
// Formatage date *************************************************************/
1674
// Formatage date *************************************************************/
1654
WidgetsSaisiesCommun.prototype.fournirDate = function( dateObs ) {
1675
WidgetsSaisiesCommun.prototype.fournirDate = function( dateObs ) {
-
 
1676
	if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
1655
	if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
1677
 
1656
		return dateObs;
1678
		return dateObs;
1657
	} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
1679
	} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
-
 
1680
		const dateArray = dateObs.split( '-' );
1658
		var dateArray = dateObs.split( '-' );
1681
 
1659
		return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
1682
		return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
1660
	} else {
1683
	} else {
1661
		console.dir( 'erreur date : ' + dateObs )
1684
		console.dir( 'erreur date : ' + dateObs )
1662
	}
1685
	}
Line 1663... Line 1686...
1663
};
1686
};
1664
 
1687
 
1665
// scroll vers le formulaire
-
 
1666
WidgetsSaisiesCommun.prototype.scrollFormTop = function( scrollSelecteur, focus = '' ) {
-
 
1667
	const lthis = this;
1688
// scroll vers le formulaire
1668
 
1689
WidgetsSaisiesCommun.prototype.scrollFormTop = function( scrollSelecteur, focus = '' ) {
1669
	$( 'html, body' ).stop().animate({
1690
	$( 'html, body' ).stop().animate({
1670
		scrollTop: $( scrollSelecteur ).offset().top
1691
		scrollTop: $( scrollSelecteur ).offset().top
1671
	}, 300, function() {
1692
	}, 300, function() {
1672
		if ( lthis.valOk( focus ) ) {
1693
		if ( valOk( focus ) ) {
1673
			$( focus ).focus();
1694
			$( focus ).focus();
1674
		} else {
1695
		} else {
1675
			return;
1696
			return;
Line 1702... Line 1723...
1702
 * dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
1723
 * dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
1703
 * langue en cours. S'il n'est pas trouvé, retourne la version française (par
1724
 * langue en cours. S'il n'est pas trouvé, retourne la version française (par
1704
 * défaut); si celle-ci n'exite pas, retourne "N/A".
1725
 * défaut); si celle-ci n'exite pas, retourne "N/A".
1705
 */
1726
 */
1706
WidgetsSaisiesCommun.prototype.msgTraduction = function( cle ) {
1727
WidgetsSaisiesCommun.prototype.msgTraduction = function( cle ) {
1707
	var msg = 'N/A';
1728
	let msg = 'N/A';
Line 1708... Line 1729...
1708
 
1729
 
1709
	if ( this.msgs ) {
1730
	if ( utils.msgs ) {
1710
		if ( this.langue in this.msgs && cle in this.msgs[this.langue] ) {
1731
		if ( this.langue in utils.msgs && cle in utils.msgs[this.langue] ) {
1711
			msg = this.msgs[this.langue][cle];
1732
			msg = utils.msgs[this.langue][cle];
1712
		} else if ( cle in this.msgs['fr'] ) {
1733
		} else if ( cle in utils.msgs['fr'] ) {
1713
			msg = this.msgs['fr'][cle];
1734
			msg = utils.msgs['fr'][cle];
1714
		}
1735
		}
1715
	}
1736
	}
1716
	return msg;
1737
	return msg;
Line 1735... Line 1756...
1735
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
1756
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
1736
 * @param jqXHR
1757
 * @param jqXHR
1737
 * @returns {String}
1758
 * @returns {String}
1738
 */
1759
 */
1739
WidgetsSaisiesCommun.prototype.extraireEnteteDebug = function( jqXHR ) {
1760
WidgetsSaisiesCommun.prototype.extraireEnteteDebug = function( jqXHR ) {
1740
	var msgDebug = '';
1761
	let msgDebug = '';
Line 1741... Line 1762...
1741
 
1762
 
1742
	if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
1763
	if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
-
 
1764
		const debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
1743
		var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
1765
 
1744
		if ( null !== debugInfos ) {
1766
		if ( null !== debugInfos ) {
1745
			$.each( debugInfos, function( cle, valeur ) {
1767
			$.each( debugInfos, function( cle, valeur ) {
1746
				msgDebug += valeur + '\n';
1768
				msgDebug += valeur + '\n';
1747
			});
1769
			});
Line 1759... Line 1781...
1759
		}
1781
		}
1760
		return false;
1782
		return false;
1761
	});
1783
	});
1762
};
1784
};
Line 1763... Line -...
1763
 
-
 
1764
WidgetsSaisiesCommun.prototype.valOk = function ( valeur, sensComparaison = true, comparer = undefined ) {
-
 
1765
	return utils.valOk( valeur, sensComparaison, comparer );
-
 
1766
};
-
 
1767
 
-
 
1768
WidgetsSaisiesCommun.prototype.activerModale = function ( label, content = '', buttons = [] ) {
-
 
1769
	return utils.activerModale( label, content, buttons );
-
 
1770
};
-
 
1771
 
1785
 
Line 1772... Line 1786...
1772
// Lib hors objet
1786
// Lib hors objet
1773
 
1787
 
1774
/*
1788
/*
Line 1780... Line 1794...
1780
 * http://github.com/scottgonzalez/jquery-ui-extensions
1794
 * http://github.com/scottgonzalez/jquery-ui-extensions
1781
 *
1795
 *
1782
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
1796
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
1783
 */
1797
 */
1784
( function( $ ) {
1798
( function( $ ) {
1785
	var proto      = $.ui.autocomplete.prototype,
1799
	const proto    = $.ui.autocomplete.prototype,
1786
		initSource = proto._initSource;
1800
		initSource = proto._initSource;
Line 1787... Line 1801...
1787
 
1801
 
1788
	WidgetsSaisiesCommun.prototype.filter = function( array, term ) {
1802
	WidgetsSaisiesCommun.prototype.filter = function( array, term ) {
Line 1789... Line 1803...
1789
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
1803
		const matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
Line 1790... Line 1804...
1790
 
1804
 
1791
		return $.grep( array, function( value ) {
1805
		return $.grep( array, function( value ) {