Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
3844 idir 1
import {WidgetsSaisiesCommun,utils} from './WidgetsSaisiesCommun.js';
2
import {valOk} from './Utils.js';
3
 
3638 delphine 4
/**
5
 * Constructeur WidgetSaisie par défaut
6
 */
3844 idir 7
function WidgetSaisie(  ) {
8
	if  ( valOk(widgetProp) ) {
9
		this.urlWidgets                        = widgetProp.urlWidgets;
10
		this.projet                            = widgetProp.projet;
11
		this.idProjet                          = widgetProp.idProjet;
12
		this.tagsMotsCles                      = widgetProp.tagsMotsCles;
13
		this.mode                              = widgetProp.mode;
14
		this.langue                            = widgetProp.langue;
15
		this.serviceAnnuaireIdUrl              = widgetProp.serviceAnnuaireIdUrl;
16
		this.serviceNomCommuneUrl              = widgetProp.serviceNomCommuneUrl;
17
		this.serviceNomCommuneUrlAlt           = widgetProp.serviceNomCommuneUrlAlt;
18
		this.debug                             = widgetProp.debug;
19
		this.html5                             = widgetProp.html5;
20
		this.serviceSaisieUrl                  = widgetProp.serviceSaisieUrl;
21
		this.serviceObsUrl                     = widgetProp.serviceObsUrl;
22
		this.chargementImageIconeUrl           = widgetProp.chargementImageIconeUrl;
23
		this.pasDePhotoIconeUrl                = widgetProp.pasDePhotoIconeUrl;
24
		this.autocompletionElementsNbre        = widgetProp.autocompletionElementsNbre;
25
		this.serviceAutocompletionNomSciUrl    = widgetProp.serviceAutocompletionNomSciUrl;
26
		this.serviceAutocompletionNomSciUrlTpl = widgetProp.serviceAutocompletionNomSciUrlTpl;
27
		this.dureeMessage                      = widgetProp.dureeMessage;
28
		this.obsMaxNbre                        = widgetProp.obsMaxNbre;
29
		this.tagImg                            = widgetProp.tagImg;
30
		this.tagObs                            = widgetProp.tagObs;
31
		this.obsId                             = widgetProp.obsId;
32
		this.nomSciReferentiel                 = widgetProp.nomSciReferentiel;
33
		this.especeImposee                     = widgetProp.especeImposee;
34
		this.infosEspeceImposee                = widgetProp.infosEspeceImposee;
35
		this.referentielImpose                 = widgetProp.referentielImpose;
36
		this.isTaxonListe                      = widgetProp.isTaxonListe;
3638 delphine 37
	}
38
	this.urlRacine            = window.location.origin;
39
	this.obsNbre              = 0;
40
	this.nbObsEnCours         = 1;
41
	this.totalObsATransmettre = 0;
42
	this.nbObsTransmises      = 0;
43
	this.observer             = null;
44
	this.isASL                = false;
3844 idir 45
	this.geoloc               = {};
3638 delphine 46
}
47
WidgetSaisie.prototype = new WidgetsSaisiesCommun();
48
 
49
/**
50
 * Initialise le formulaire, les validateurs, les listes de complétion...
51
 */
52
WidgetSaisie.prototype.initForm = function() {
53
	this.initFormConnection();
3844 idir 54
	if ( valOk( this.obsId ) ) {
3638 delphine 55
		this.chargerInfoObs();
56
	}
57
	if( this.isTaxonListe ) {
58
		this.initFormTaxonListe();
59
	} else {
60
		this.ajouterAutocompletionNoms();
61
	}
62
	// au rafraichissement de la page,
63
	// les input date semblent conserver la valeur entrée précedemment
64
	// c'est voulu après la création d'une obs mais pas quand la page est actualisée
65
	// Déjà tenté: onbeforeunload avec un location.reload(true) n'a pas permis de le faire
66
	$( 'input[type=date]' ).each( function () {
3844 idir 67
		( valOk( $( this ).data( 'default' ) ) ) ? $( this ).val( $( this ).data( 'default' ) ) : $( this ).val( '' );
3638 delphine 68
	});
69
	this.configurerFormValidator();
70
	this.definirReglesFormValidator();
71
 
72
	if( this.especeImposee ) {
73
		$( '#taxon' ).attr( 'disabled', 'disabled' );
74
		$( '#taxon-input-groupe' ).attr( 'title', '' );
75
		// Bricolage cracra pour avoir le nom retenu avec auteur (nom_retenu.libelle ne le mentionne pas)
3844 idir 76
		const infosEspeceImposee = $.parseJSON( this.infosEspeceImposee );
77
		let nomRetenuComplet   = infosEspeceImposee.nom_retenu_complet;
78
		const debutAnneRefBiblio = nomRetenuComplet.indexOf( ' [' );
79
 
3638 delphine 80
		if ( -1 !== debutAnneRefBiblio ) {
81
			nomRetenuComplet = nomRetenuComplet.substr( 0, debutAnneRefBiblio );
82
		}
83
		// fin bricolage cracra
3844 idir 84
		const infosAssociee = {
3638 delphine 85
			label : infosEspeceImposee.nom_sci_complet,
86
			value : infosEspeceImposee.nom_sci_complet,
87
			nt : infosEspeceImposee.num_taxonomique,
88
			nomSel : infosEspeceImposee.nom_sci,
89
			nomSelComplet : infosEspeceImposee.nom_sci_complet,
90
			numNomSel : infosEspeceImposee.id,
91
			nomRet : nomRetenuComplet,
92
			numNomRet : infosEspeceImposee['nom_retenu.id'],
93
			famille : infosEspeceImposee.famille,
94
			retenu : ( 'false' === infosEspeceImposee.retenu ) ? false : true
95
		};
96
		$( '#taxon' ).data( infosAssociee );
97
	}
98
};
99
 
100
/**
101
 * Initialise les écouteurs d'événements
102
 */
103
WidgetSaisie.prototype.initEvts = function() {
104
	// identité
105
	this.initEvtsConnection();
106
	// on location, initialisation de la géoloc
107
	this.initEvtsGeoloc();
108
	// Sur téléchargement image
109
	this.initEvtsFichier();
110
 
111
	$( '#referentiel' ).on( 'change', this.surChangementReferentiel.bind( this ) );
112
	// Création / Suppression / Transmission des obs
113
	// Défilement des miniatures dans le résumé obs
114
	this.initEvtsObs();
115
	// Alertes et aides
116
	this.initEvtsAlertes();
117
	// message avant de quitter le formulaire
118
	this.confirmerSortie();
119
};
120
 
121
// Identité Observateur par courriel
122
WidgetSaisie.prototype.requeterIdentiteCourriel = function() {
3844 idir 123
	const lthis = this,
124
		courriel    = $( '#courriel' ).val(),
125
		urlAnnuaire = this.serviceAnnuaireIdUrl + courriel;
3638 delphine 126
 
3844 idir 127
	if ( valOk( courriel ) ) {
3638 delphine 128
		$.ajax({
129
			url : urlAnnuaire,
130
			type : 'GET',
131
			success : function( data, textStatus, jqXHR ) {
132
				if ( lthis.debug ) {
133
					console.log( 'SUCCESS: ' + textStatus );
134
				}
3844 idir 135
				if ( valOk( data ) && valOk( data[courriel] ) ) {
136
					const infos = data[courriel];
3638 delphine 137
					lthis.surSuccesCompletionCourriel( infos, courriel );
138
				} else {
139
					lthis.surErreurCompletionCourriel();
140
				}
141
			},
142
			error : function( jqXHR, textStatus, errorThrown ) {
143
				if ( lthis.debug ) {
144
					console.log( 'ERREUR: '+ textStatus );
145
				}
146
				lthis.surErreurCompletionCourriel();
147
			},
148
			complete : function( jqXHR, textStatus ) {
149
				if ( lthis.debug ) {
150
					console.log( 'COMPLETE: '+ textStatus );
151
				}
152
			}
153
		});
154
	}
155
};
156
 
157
// se déclanche quand on choisit "Observation sans inscription" mais que le mail entré est incrit à Tela
158
WidgetSaisie.prototype.surSuccesCompletionCourriel = function( infos, courriel ) {
159
	if ( $( '#utilisateur-connecte' ).hasClass( 'hidden' ) ) {// si quelque chose a foiré après actualisation
3844 idir 160
		if ( !valOk( $( '#warning-identite' ) ) ) {
3638 delphine 161
			$( '#zone-courriel' ).before( '<p id="warning-identite" class="warning"><i class="fas fa-exclamation-triangle"></i> ' + this.msgTraduction( 'courriel-connu' ) + '</p>' );
162
		}
163
		$( '#inscription, #zone-prenom-nom, #zone-courriel-confirmation' ).addClass( 'hidden' );
164
		$( '#prenom, #nom, #courriel_confirmation' ).attr( 'disabled', 'disabled' );
165
		$( '.nav.control-group' ).addClass( 'error' );
166
	}
167
};
168
 
169
// se déclanche quand on choisit "Observation sans inscription" et qu'effectivement le mail n'est pas connu de Tela
170
WidgetSaisie.prototype.surErreurCompletionCourriel = function() {
171
	$( '#creation-compte, #zone-prenom-nom, #zone-courriel-confirmation' ).removeClass( 'hidden' );
172
	$( '#warning-identite' ).remove();
173
	$( '.nav.control-group' ).removeClass( 'error' );
174
	$( '#prenom, #nom, #courriel_confirmation' ).val( '' ).removeAttr( 'disabled' );
175
};
176
 
177
WidgetSaisie.prototype.testerLancementRequeteIdentite = function( event ) {
3844 idir 178
	if ( valOk( event.which, true, 13 ) ) {
3638 delphine 179
		this.requeterIdentiteCourriel();
180
		event.preventDefault();
181
		event.stopPropagation();
182
	}
183
};
184
 
185
WidgetSaisie.prototype.reduireVoletIdentite = function() {
186
	if ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() && $( '#courriel_confirmation' ).valid() ) {
187
		$( '#bouton-connexion, #creation-compte' ).addClass( 'hidden' );
188
		$( '#bienvenue').removeClass( 'hidden' );
189
		$( '#inscription, #zone-courriel' ).addClass( 'hidden' );
3844 idir 190
		if ( valOk( $( '#nom' ).val() ) && valOk( $( '#prenom' ).val() ) ) {
3638 delphine 191
			$( '#zone-prenom-nom' ).addClass( 'hidden' );
192
			$( '#bienvenue-prenom' ).text( ' ' + $( '#prenom' ).val() );
193
			$( '#bienvenue-nom' ).text( ' ' + $( '#nom' ).val() );
194
		} else {
195
			$( '#zone-prenom-nom' ).removeClass( 'hidden' );
196
			$( '#bienvenue-prenom,#bienvenue-nom' ).text( '' );
197
		}
198
	} else {
199
		$( '#bouton-connexion, #creation-compte' ).removeClass( 'hidden' );
200
		$( '#bienvenue').addClass( 'hidden' );
201
	}
202
};
203
 
204
 
205
WidgetSaisie.prototype.formaterNom = function() {
206
	$( '#nom' ).val( $( '#nom' ).val().toUpperCase() );
207
};
208
 
209
WidgetSaisie.prototype.formaterPrenom = function() {
3844 idir 210
	const prenom   = [],
3638 delphine 211
		mots       = $( '#prenom' ).val().split( ' ' ),
212
		motsLength = mots.length;
213
 
3844 idir 214
	for ( let i = 0; i < motsLength; i++ ) {
215
		let mot          = mots[i],
216
			motMajuscule = '';
217
 
3638 delphine 218
		if ( 0 <= mot.indexOf( '-' ) ) {
3844 idir 219
			const prenomCompose    = new Array(),
220
				motsComposes       = mot.split( '-' ),
3638 delphine 221
				motsComposesLength = motsComposes.length;
222
 
3844 idir 223
			for ( let j = 0; j < motsComposesLength; j++ ) {
224
				const motSimple    = motsComposes[j];
225
 
226
				motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
3638 delphine 227
				prenomCompose.push( motMajuscule );
228
			}
229
			prenom.push( prenomCompose.join( '-' ) );
230
		} else {
3844 idir 231
			motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
3638 delphine 232
			prenom.push( motMajuscule );
233
		}
234
	}
235
	$( '#prenom' ).val( prenom.join( ' ' ) );
236
};
237
 
238
WidgetSaisie.prototype.bloquerCopierCollerCourriel = function() {
239
	this.afficherPanneau( '#dialogue-bloquer-copier-coller' );
3844 idir 240
 
3638 delphine 241
	return false;
242
};
243
 
244
// Préchargement des infos-obs ************************************************/
245
WidgetSaisie.prototype.chargerInfoObs = function() {
3844 idir 246
	const lthis = this,
247
		urlObs  = this.serviceObsUrl + '/' + this.obsId;
3638 delphine 248
 
249
	$.ajax({
250
		url: urlObs,
251
		type: 'GET',
252
		success: function( data, textStatus, jqXHR ) {
3844 idir 253
			if ( valOk( data ) ) {
3638 delphine 254
				lthis.prechargerForm( data );
255
			} else {
256
				lthis.surErreurChargementInfosObs.bind( lthis );
257
			}
258
		},
259
		error: function( jqXHR, textStatus, errorThrown ) {
260
			lthis.surErreurChargementInfosObs();
261
		}
262
	});
263
};
264
 
265
// @TODO faire mieux que ça !
266
WidgetSaisie.prototype.surErreurChargementInfosObs = function() {
3844 idir 267
	utils.activerModale( this.msgTraduction( 'erreur-chargement' ) );
3638 delphine 268
};
269
 
270
WidgetSaisie.prototype.prechargerForm = function( data ) {
271
	$( '#milieu' ).val( data.milieu );
272
	$( '#commune-nom' ).text( data.zoneGeo );
273
	if( data.hasOwnProperty( 'codeZoneGeo' ) ) {
274
	  // TODO: trouver un moyen qui fonctionne lorsqu'on aura d'autres référentiels que INSEE
275
	  $( '#commune-insee' ).text( data.codeZoneGeo.replace( 'INSEE-C:', '' ) );
276
	}
277
 
278
	if( data.hasOwnProperty( 'latitude' ) && data.hasOwnProperty( 'longitude' ) ) {
279
		// $cartoRemplacee = $( '#tb-geolocation' ),
280
		// suffixe = '',
281
		// layer = 'osm',
282
		// zoomInit = 18
3844 idir 283
		const typeLocalisation = $( '#top' ).data( 'type-loc' ),
284
			donnesResetCarto   = {
3638 delphine 285
			latitude         : data.latitude,
286
			longitude        : data.longitude,
3844 idir 287
			typeLocalisation : typeLocalisation,
288
			zoom             : 18
3638 delphine 289
		};
290
		this.transfererCarto( donnesResetCarto );
291
	}
292
};
293
 
294
// Ajouter Obs ****************************************************************/
295
/**
296
 * Retourne un Array contenant les valeurs des champs étendus
297
 */
298
WidgetSaisie.prototype.getObsChpSpecifiques = function() {
3844 idir 299
	const lthis = this,
300
		champs    = [],
3638 delphine 301
		$thisForm = $( '#form-supp' ),
302
		elements  =
303
			'input[type=text]:not(.collect-other),'+
304
			'input[type=checkbox]:checked,'+
305
			'input[type=radio]:checked,'+
306
			'input[type=email],'+
307
			'input[type=number],'+
308
			'input[type=range],'+
309
			'input[type=date],'+
310
			'textarea,'+
311
			'.select',
3844 idir 312
		retour    = [];
3638 delphine 313
 
314
	$( elements, $thisForm ).each( function() {
3844 idir 315
		if ( valOk( $( this ).val() ) && ( valOk( $( this ).attr( 'name' ) ) || valOk( $( this ).data( 'name' ) ) ) ) {
316
			const valeur = $( this ).val(),
317
				cle    = ( valOk( $( this ).attr( 'name' ) ) ) ? $( this ).attr( 'name' ) : $( this ).data( 'name' );
3638 delphine 318
			if ( cle in champs ) {
319
				champs[cle] += ';' + valeur;
320
			} else {
321
				champs[cle] = valeur;
322
			}
323
		}
324
	});
3844 idir 325
	for ( let key in champs ) {
3638 delphine 326
		retour.push({ 'cle' : key , 'valeur' : champs[key] });
327
	}
3844 idir 328
	if ( valOk( $( '#coord-lineaire' ).val() ) ) {
3638 delphine 329
		retour.push({ 'cle' : 'coordonnees-rue-ou-lineaire' , 'valeur' : $( '#coord-lineaire' ).val() });
330
	}
331
	return retour;
332
};
333
 
334
WidgetSaisie.prototype.reinitialiserForm = function() {
335
	this.supprimerMiniatures();
336
	if( !this.especeImposee ) {
337
		$( '#taxon' ).val( '' );
338
		$( '#taxon' ).data( 'numNomSel', '' )
339
			.data( 'nomRet','' )
340
			.data( 'numNomRet', '' )
341
			.data( 'nt', '' )
342
			.data( 'famille', '' );
343
		if( this.isTaxonListe ) {
344
			$( '#taxon-liste' ).find( 'option' ).each( function() {
345
				if ( $( this ).hasClass( 'choisir' ) ) {
346
					$( this ).attr( 'selected', true );
347
				} else {
348
					$( this ).attr( 'selected', false );
349
				}
350
			});
351
			$( '#taxon-input-groupe' ).addClass( 'hidden' );
352
			$('#taxon-autre').val('');
353
		}
354
	}
3844 idir 355
	if ( valOk( $( '#form-supp' ) ) ) {
3638 delphine 356
		$( '#form-supp' ).validate().resetForm();
357
	}
358
};
359
 
360
// Géolocalisation *************************************************************/
361
/**
362
 * Fonction handler de l'évenement location du module tb-geoloc
363
 */
364
WidgetSaisie.prototype.locationHandler = function( location ) {
3844 idir 365
	const locDatas = location.originalEvent.detail;
3638 delphine 366
 
3844 idir 367
	if ( valOk( locDatas ) ) {
3638 delphine 368
		console.log( locDatas );
369
 
3844 idir 370
		const geometry = JSON.stringify( locDatas.geometry ),
371
			altitude   = ( valOk( locDatas.elevation ) ) ? locDatas.elevation : '',
372
			pays       = ( valOk( locDatas.osmCountryCode ) ) ? locDatas.osmCountryCode.toUpperCase() : 'FR';
373
		let latitude      = '',
374
			longitude     = '',
375
			coordLineaire = '',
376
			nomCommune    = '',
377
			communeInsee  = '';
378
 
379
		if ( valOk( locDatas.geometry.coordinates ) &&
380
			valOk( locDatas.centroid.coordinates ) &&
381
			valOk( locDatas.centroid.coordinates[0] ) &&
382
			valOk( locDatas.centroid.coordinates[1] )
383
		) {
384
			latitude = locDatas.centroid.coordinates[0];
385
			longitude = locDatas.centroid.coordinates[1];
3638 delphine 386
		}
3844 idir 387
		if ( valOk( locDatas.inseeData ) ) {
3638 delphine 388
			nomCommune = locDatas.inseeData.nom;
3844 idir 389
			communeInsee = ( valOk( locDatas.inseeData.code ) ) ? locDatas.inseeData.code : '';
390
		} else if ( valOk( locDatas.locality ) ) {
3638 delphine 391
			nomCommune = locDatas.locality;
3844 idir 392
		} else if ( valOk( locDatas.locality ) ) {
3638 delphine 393
			nomCommune = locDatas.osmCounty;
394
		}
395
		$( '#geometry' ).val( geometry );
396
		$( '#coord-lineaire' ).val( coordLineaire );
397
		$( '#latitude' ).val( latitude );
398
		$( '#longitude' ).val( longitude );
399
		$( '#commune-nom' ).val( nomCommune );
400
		$( '#commune-insee' ).val( communeInsee );
401
		$( '#altitude' ).val( altitude );
402
		$( '#pays' ).val( pays );
3844 idir 403
		if ( valOk( $( '#latitude' ).val() ) && valOk( $( '#longitude' ).val() ) ) {
3638 delphine 404
			$( '#geoloc' ).closest( '.control-group' ).removeClass( 'error' );
405
		} else {
406
			$( '#geoloc' ).closest( '.control-group' ).addClass( 'error' );
407
		}
408
	} else {
3844 idir 409
		console.warn( 'Error location' );
3638 delphine 410
	}
411
}
412
 
413
// Form Validator *************************************************************/
414
WidgetSaisie.prototype.chpEtendusValidation = function() {
3844 idir 415
	const lthis = this,
416
		$thisForm = $( '#form-supp' ),
3638 delphine 417
		elements  =
418
			'.checkbox,'+
419
			'.radio,'+
420
			'.checkboxes,'+
421
			'.select,'+
422
			'textarea,'+
423
			'input[type=text]:not(.collect-other),'+
424
			'input[type=email],'+
425
			'input[type=number],'+
426
			'input[type=range],'+
427
			'input[type=date]',
428
		speFields = ['checkbox','radio','checkboxes','select'],
429
		spefieldsCount = speFields.length,
430
		chpSuppValidation = {
431
			rules : {},
432
			messages : {},
433
			minmax : []
434
		},
435
		errors = {},
3844 idir 436
		namesListFields = [];
437
	let picked = '';
3638 delphine 438
 
439
	$( elements, $thisForm ).each( function() {
3844 idir 440
		for( let fieldsClass = 0; spefieldsCount > fieldsClass; fieldsClass++ ) {
441
				const dataName = $( this ).data( 'name' );
3638 delphine 442
 
3844 idir 443
			if ( valOk( $( this ).attr( 'required' ) ) && $( this ).hasClass( speFields[fieldsClass] ) && !valOk( chpSuppValidation.rules[ dataName ] ) ) {
3638 delphine 444
				namesListFields.push( dataName );
445
				chpSuppValidation.rules[ dataName ] = { required : true };
3844 idir 446
				if ( valOk( $( '.other', $( this ) ) ) ) {
3638 delphine 447
					picked = ( 'select' === speFields[fieldsClass] ) ? ':selected' : ':checked';
448
					chpSuppValidation.rules[ 'collect-other-' + dataName.replace( '[]', '' ) ] = {
449
						required : '#other-' + dataName.replace( '[]', '' ) + picked,
450
						minlength: 1
451
					};
452
					chpSuppValidation.messages[ 'collect-other-' + dataName.replace( '[]', '' ) ] = false;
453
				}
454
				chpSuppValidation.rules[ dataName ]['listFields'] = true;
455
				chpSuppValidation.messages[ dataName ] = 'Ce champ est requis :\nVeuillez choisir une option, ou entrer une valeur autre valide.';
456
				errors[dataName] = '.' + speFields[fieldsClass];
457
			}
458
		}
3844 idir 459
		if ( valOk( $( this ).attr( 'name' ) ) && valOk ( $( this ).attr( 'required' ) ) && 0 > $.inArray( $( this ).attr( 'name' ) , namesListFields ) ) {
3638 delphine 460
			chpSuppValidation.rules[ $( this ).attr( 'name' ) ] = { required : true, minlength: 1 };
461
			if(
3844 idir 462
				( valOk( $( this ).attr( 'type' ), true, 'number' ) || valOk( $( this ).attr( 'type' ), true, 'range' ) ) &&
463
				( valOk( $( this )[0].min ) || valOk( $( this )[0].max ) )
3638 delphine 464
			) {
465
				chpSuppValidation.rules[ $( this ).attr('name') ]['minMaxOk'] = true;
466
				chpSuppValidation.messages[ $( this ).attr('name') ] = lthis.validerMinMax( $( this )[0] ).message;
467
			}
468
		}
469
	});
3844 idir 470
	if ( valOk( chpSuppValidation.rules ) ) {
3638 delphine 471
		$.each( chpSuppValidation.rules, function( key ) {
3844 idir 472
			if ( !valOk( chpSuppValidation.messages[key] ) ) {
3638 delphine 473
				chpSuppValidation.messages[key] = 'Ce champ est requis :\nVeuillez entrer une valeur valide.';
474
			}
475
		});
476
		if ( 0 < Object.keys( errors ).length ) {
477
			chpSuppValidation['errors'] = errors;
478
		}
479
	}
480
	return chpSuppValidation;
481
};
482
 
483
WidgetSaisie.prototype.validerMinMax = function( element ) {
3844 idir 484
	const minCond  = parseFloat( element.value ) >= parseFloat( element.min ),
485
		maxCond    = parseFloat( element.value ) <= parseFloat( element.max ),
486
		returnMnMx = { cond : true , message : '' };
487
	let mnMxCond    = new Boolean(),
488
		messageMnMx = 'La valeur entrée doit être';
3638 delphine 489
 
490
	if(
3844 idir 491
		( valOk( element.type, true, 'number' ) || valOk( element.type, true, 'range' ) ) &&
492
		( valOk( element.min ) || valOk( element.max ) )
3638 delphine 493
	) {
494
		if ( element.min && element.max ) {
495
			messageMnMx += ' comprise entre ' + element.min + ' et ' + element.max;
496
			mnMxCond     = ( minCond && maxCond );
497
		} else if ( element.min ) {
498
			messageMnMx += ' supérieure à ' + element.min;
499
			mnMxCond     = minCond;
500
		} else {
501
			messageMnMx += ' inférieure à ' + element.max;
502
			mnMxCond     = maxCond;
503
		}
504
		returnMnMx.cond    = mnMxCond;
505
		returnMnMx.message = messageMnMx;
506
	}
507
	return returnMnMx;
508
 
509
};
510
 
511
WidgetSaisie.prototype.definirReglesFormValidator = function() {
3844 idir 512
	const lthis = this,
513
		formSuppValidation = this.chpEtendusValidation();
3638 delphine 514
 
515
	$( '#form-supp' ).validate({
516
		onclick : function( element ) {
517
			if (
518
				(
3844 idir 519
					valOk( element.type, true, 'checkbox' ) ||
520
					valOk( element.type, true, 'radio' )
3638 delphine 521
				) &&
522
				(
3844 idir 523
					!valOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':checked' ) ) ||
524
					valOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':not(.other):checked' ) ) ||
525
					!valOk( $( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ) ) ||
3638 delphine 526
					$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) ||
527
					(
528
						$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) &&
529
						$( element ).closest( '.control-group' ).hasClass('error')
530
					)
531
				)
532
			) {
533
				$( element ).valid();
534
				if ( $( element ).valid() ) {
535
					$( element ).closest( '.control-group' ).removeClass( 'error' );
536
					$( element ).next( $( 'span.error' ) ).remove();
537
				} else {
538
					$( element ).closest( '.control-group' ).addClass( 'error' );
539
				}
540
			}
541
			return false;
542
		},
543
		rules : formSuppValidation.rules,
544
		messages : formSuppValidation.messages,
545
		errorPlacement : function( error , element ) {
546
			if ( 0 < Object.keys( formSuppValidation.errors ).length ) {
3844 idir 547
				const errorsKeys = Object.keys( formSuppValidation.errors );
548
				let thisKey    = '',
3638 delphine 549
					errorsFlag = true;
3844 idir 550
 
551
				for ( let i = 0 ; i < errorsKeys.length ; i++ ) {
3638 delphine 552
					thisKey = errorsKeys[i];
553
					if( $( element ).attr( 'name' ) === thisKey ) {
554
						$( formSuppValidation.errors[thisKey] ).append( error );
555
						errorsFlag = false;
556
					}
557
				}
558
				if ( errorsFlag ) {
559
					error.insertAfter( element );
560
				}
561
			} else {
562
				error.insertAfter( element );
563
			}
564
		}
565
	});
566
	$( '#form-supp .select' ).change( function() {
567
		$( this ).valid();
568
	});
569
	$( 'input[type=date]' ).on( 'input', function() {
570
		$( this ).valid();
571
	});
572
	// Validation Taxon si pas de miniature
573
	$( '#taxon' ).on( 'change', function() {
3844 idir 574
		const images = valOk( $( '#miniatures .miniature' ) );
575
 
576
		lthis.validerTaxonImage( valOk( $( this ).val() ), images );
3638 delphine 577
	});
578
	// Validation miniatures avec MutationObserver
579
	this.surPresenceAbsenceMiniature();
580
	$( '#form-observation' ).validate({
581
		rules : {
582
			date_releve : {
583
				required : true,
584
				'dateCel' : true
585
			},
586
			latitude : {
587
				required : true,
588
				minlength : 1,
589
				range : [-90, 90]
590
			},
591
			longitude : {
592
				required : true,
593
				minlength : 1,
594
				range : [-180, 180]
595
			}
596
		}
597
	});
598
	$( '#form-observateur' ).validate({
599
		rules : {
600
			courriel : {
601
				required : true,
602
				email : true,
603
				'userEmailOk' : true
604
			},
605
			courriel_confirmation : {
606
				required : true,
607
				equalTo : '#courriel'
608
			}
609
		}
610
	});
611
	$( '#connexion,#inscription,#bouton-anonyme' ).on( 'click', function( event ) {
612
		$( '.nav.control-group' ).removeClass( 'error' );
613
	});
614
};
615
 
616
WidgetSaisie.prototype.validerTaxonImage = function( taxon = false, images = false ) {
3844 idir 617
	const taxonOuImage = images || taxon;
618
 
619
	if ( taxonOuImage ) {
3638 delphine 620
		this.masquerPanneau( '#dialogue-taxon-or-image' );
621
		$( '#bloc-taxon' ).removeClass( 'error' )
622
			.find( 'span.error' ).hide();
623
		$( '#fichier' ).parent( 'label.label-file' ).removeClass( 'error' );
624
		$( '#photos-conteneur').removeClass( 'error' ).find( 'span.error' ).hide();
625
	} else {
626
		this.afficherPanneau( '#dialogue-taxon-or-image' );
627
		$( '#bloc-taxon' ).addClass( 'error' )
628
			.find( 'span.error' ).show();
629
		$( '#fichier' ).parent( 'label.label-file' ).addClass( 'error' );
630
		$( '#photos-conteneur').addClass( 'error' ).find( 'span.error' ).show();
631
	}
3844 idir 632
	return taxonOuImage;
3638 delphine 633
};
634
 
635
WidgetSaisie.prototype.surPresenceAbsenceMiniature = function() {
636
	const lthis = this;
637
	// voir : https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver/disconnect
638
	// Selectionne le noeud dont les mutations seront observées
3844 idir 639
	const targetNode = document.getElementById( 'miniatures' );
3638 delphine 640
	// Fonction callback à éxécuter quand une mutation est observée
3844 idir 641
	const callback = mutationsList => {
642
		let taxon;
3638 delphine 643
 
3844 idir 644
		for( let mutation of mutationsList ) {
645
			taxon = valOk( $( '#taxon' ).val() );
3638 delphine 646
			images = ( 0 < mutation.target.childElementCount );
647
			lthis.validerTaxonImage( taxon, images );
648
		}
649
	};
650
	// Créé une instance de l'observateur lié à la fonction de callback
651
	this.observer = new MutationObserver( callback );
652
	// Commence à observer le noeud cible pour les mutations précédemment configurées
653
	this.observer.observe( targetNode, { childList: true } );
654
};
655
 
656
WidgetSaisie.prototype.validerForm = function() {
3844 idir 657
	const observateur = ( $( '#form-observateur' ).valid() && $( '#courriel' ).valid() && $( '#courriel_confirmation' ).valid() ),
658
		obs           = $( '#form-observation' ).valid(),
659
		geoloc        = ( valOk( $( '#latitude' ).val() ) && valOk( $( '#longitude' ).val() ) ) ,
660
		images        = valOk( $( '#miniatures .miniature' ) ),
661
		taxon         = valOk( $( '#taxon' ).val() ),
662
		// validation et panneau taxon/images
663
		taxonOuImage  = this.validerTaxonImage( taxon, images );
664
	let chpsSupp = true;
3638 delphine 665
 
3844 idir 666
	if ( valOk( $( '#form-supp' ) ) ) {
3638 delphine 667
		chpsSupp = ( function () {
3844 idir 668
			let otherFlag = $( '#form-supp' ).valid();
669
 
670
			if( valOk( $( '.other', $( '#form-supp' ) ) ) ) {
3638 delphine 671
				$( '.other', $( '#form-supp' ) ).each( function() {
3844 idir 672
					const picked = ( $( this ).data( 'element' ) !== 'select' ) ? ':checked' : ':selected';
673
 
674
						if ( $( this ).is( picked ) && valOk( $( this ).val(), true, 'other' ) ) {
3638 delphine 675
							otherFlag = false;
676
						}
677
				});
678
			}
3844 idir 679
 
3638 delphine 680
			return otherFlag;
681
		})();
682
	}
683
	// panneau geoloc
684
	if ( geoloc ) {
685
		this.masquerPanneau( '#dialogue-geoloc-ko' );
686
		$( '#geoloc-datas' ).closest( '.control-group' ).removeClass( 'error' );
687
	} else{
688
		this.afficherPanneau( '#dialogue-geoloc-ko' );
689
		$( '#geoloc-datas' ).closest( '.control-group' ).addClass( 'error' );
690
	}
691
	// panneau observateur
692
	if ( observateur ) {
693
		this.masquerPanneau( '#dialogue-utilisateur-non-identifie' );
694
		$( '.nav.control-group' ).removeClass( 'error' );
695
	} else {
696
		this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
697
		$( '.nav.control-group' ).addClass( 'error' );
698
	}
699
	return ( observateur && obs && geoloc && taxonOuImage && chpsSupp );
700
};
701
 
702
// Referentiel ****************************************************************/
703
// N'est pas utilisé en cas de taxon-liste
704
WidgetSaisie.prototype.surChangementReferentiel = function() {
705
	this.nomSciReferentiel = $( '#referentiel' ).val();
706
	//réinitialise taxon.val
707
	$( '#taxon' ).val( '' );
708
	$( '#taxon' ).data( 'numNomSel', '' );
709
};
3844 idir 710
 
711
 
712
$( document ).ready( function() {
713
	const widget = new WidgetSaisie();
714
	widget.init();
715
	// Fonctions de Style et Affichage des éléments "spéciaux"
716
	utils.init();
717
});