Subversion Repositories eFlore/Applications.cel

Rev

Rev 2840 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2688 mathias 1
/**
2
 * Constructeur WidgetSaisie par défaut
3
 */
4
function WidgetSaisie() {
5
	this.obsNbre = 0;
6
	this.nbObsEnCours = 1;
7
	this.totalObsATransmettre = 0;
8
	this.nbObsTransmises = 0;
9
	this.map = null;
10
	this.marker = null;
2736 mathias 11
	this.latLng = null; // position en cours
2688 mathias 12
	this.geocoder = null;
2700 mathias 13
	this.debug = null;
14
	this.html5 = null;
15
	this.tagProjet = null;
16
	this.tagImg = null;
17
	this.tagObs = null;
18
	this.separationTagImg = null;
19
	this.separationTagObs = null;
20
	this.obsId = null;
21
	this.serviceSaisieUrl = null;
22
	this.serviceObsUrl = null;
23
	this.nomSciReferentiel = null;
2707 mathias 24
	this.especeImposee = false;
2700 mathias 25
	this.infosEspeceImposee = null;
26
	this.autocompletionElementsNbre = null;
27
	this.referentielImpose = null;
28
	this.serviceAutocompletionNomSciUrl = null;
29
	this.serviceAutocompletionNomSciUrlTpl = null;
30
	this.obsMaxNbre = null;
31
	this.dureeMessage = null;
32
	this.serviceAnnuaireIdUrl = null;
33
	this.serviceNomCommuneUrl = null;
34
	this.serviceNomCommuneUrlAlt = null;
35
	this.googleMapMarqueurUrl = null;
36
	this.chargementIconeUrl = null;
37
	this.chargementImageIconeUrl = null;
38
	this.calendrierIconeUrl = null;
39
	this.pasDePhotoIconeUrl = null;
2688 mathias 40
}
41
 
42
/**
43
 * Initialisation du widget
44
 */
45
WidgetSaisie.prototype.init = function() {
46
	this.initCarto();
47
	this.initForm();
48
	this.initEvts();
2707 mathias 49
	this.requeterIdentite();
2688 mathias 50
};
51
 
52
/**
53
 * Initialise la cartographie
54
 */
55
WidgetSaisie.prototype.initCarto = function() {
56
	this.initialiserGoogleMap();
57
	this.initialiserAutocompleteCommune();
58
}
59
 
60
/**
61
 * Initialise le formulaire, les validateurs, les listes de complétion...
62
 */
63
WidgetSaisie.prototype.initForm = function() {
2700 mathias 64
	if (this.obsId != '') {
2697 mathias 65
		this.chargerInfoObs();
2688 mathias 66
	}
67
 
2707 mathias 68
	this.configurerDatePicker('#date');
2688 mathias 69
	this.ajouterAutocompletionNoms();
70
	this.configurerFormValidator();
71
	this.definirReglesFormValidator();
72
 
2700 mathias 73
	if(this.especeImposee) {
2688 mathias 74
		$("#taxon").attr("disabled", "disabled");
75
		$("#taxon-input-groupe").attr("title","");
2840 mathias 76
		// Bricolage cracra pour avoir le nom retenu avec auteur (nom_retenu.libelle ne le mentionne pas)
77
		var nomRetenuComplet = this.infosEspeceImposee["nom_retenu_complet"],
78
			debutAnneRefBiblio = nomRetenuComplet.indexOf(" [");
79
		if (debutAnneRefBiblio != -1) {
80
			nomRetenuComplet = nomRetenuComplet.substr(0, debutAnneRefBiblio);
81
		}
82
		// fin bricolage cracra
2688 mathias 83
		var infosAssociee = {
2700 mathias 84
			label : this.infosEspeceImposee.nom_sci_complet,
85
			value : this.infosEspeceImposee.nom_sci_complet,
86
			nt : this.infosEspeceImposee.num_taxonomique,
87
			nomSel : this.infosEspeceImposee.nom_sci,
88
			nomSelComplet : this.infosEspeceImposee.nom_sci_complet,
89
			numNomSel : this.infosEspeceImposee.id,
2840 mathias 90
			nomRet : nomRetenuComplet,
2700 mathias 91
			numNomRet : this.infosEspeceImposee["nom_retenu.id"],
92
			famille : this.infosEspeceImposee.famille,
93
			retenu : (this.infosEspeceImposee.retenu == 'false') ? false : true
2688 mathias 94
		};
95
		$("#taxon").data(infosAssociee);
96
	}
97
}
98
 
99
/**
100
 * Initialise les écouteurs d'événements
101
 */
102
WidgetSaisie.prototype.initEvts = function() {
103
	var lthis = this;
104
	$('body').on('click', '.effacer-miniature', function() {
105
		$(this).parent().remove();
1210 jpm 106
	});
1524 aurelien 107
	$("#fichier").bind('change', function (e) {
108
		arreter(e);
2328 jpm 109
		var options = {
2688 mathias 110
			success: lthis.afficherMiniature.bind(lthis), // post-submit callback
2328 jpm 111
			dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
112
			resetForm: true // reset the form after successful submit
1524 aurelien 113
		};
2700 mathias 114
		$("#miniature").append('<img id="miniature-chargement" class="miniature" alt="chargement" src="'+this.chargementImageIconeUrl+'"/>');
1524 aurelien 115
		$("#ajouter-obs").attr('disabled', 'disabled');
2688 mathias 116
		if(lthis.verifierFormat($("#fichier").val())) {
1524 aurelien 117
			$("#form-upload").ajaxSubmit(options);
118
		} else {
2005 aurelien 119
			$('#form-upload')[0].reset();
1524 aurelien 120
			window.alert("Le format de fichier n'est pas supporté, les formats acceptés sont "+	$("#fichier").attr("accept"));
1210 jpm 121
		}
1524 aurelien 122
		return false;
123
	});
2697 mathias 124
	// identité
2688 mathias 125
	$("#courriel").on('blur', this.requeterIdentite.bind(this));
126
	$("#courriel").on('keypress', this.testerLancementRequeteIdentite.bind(this));
127
	$(".alert .close").on('click', this.fermerPanneauAlert);
2707 mathias 128
	$(".has-tooltip").tooltip('enable');
2688 mathias 129
	$("#btn-aide").on('click', this.basculerAffichageAide);
130
	$("#prenom").on("change", this.formaterPrenom.bind(this));
131
	$("#nom").on("change", this.formaterNom.bind(this));
2328 jpm 132
 
2688 mathias 133
	$("#courriel_confirmation").on('paste', this.bloquerCopierCollerCourriel.bind(this));
2711 mathias 134
	$(".afficher-coord").on('click', this.basculerAffichageCoord.bind(this));
2688 mathias 135
	$("#ajouter-obs").on('click', this.ajouterObs.bind(this));
136
	$(".obs-nbre").on('changement', this.surChangementNbreObs.bind(this));
137
	$("body").on('click', ".supprimer-obs", function() {
138
		var that = this,
139
			suppObs = lthis.supprimerObs.bind(lthis);
140
		// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
141
		suppObs(that);
142
	});
143
	$("#transmettre-obs").on('click', this.transmettreObs.bind(this));
144
	$("#referentiel").on('change', this.surChangementReferentiel.bind(this));
2328 jpm 145
 
2688 mathias 146
	$("body").on('click', ".defilement-miniatures-gauche", function(event) {
147
		event.preventDefault();
148
		lthis.defilerMiniatures($(this));
1524 aurelien 149
	});
2688 mathias 150
	$("body").on('click', ".defilement-miniatures-droite", function(event) {
151
		event.preventDefault();
152
		lthis.defilerMiniatures($(this));
153
	});
2700 mathias 154
 
155
	// fermeture fenêtre
156
	if (this.debug == false) {
157
		$(window).on('beforeunload', function(event) {
158
			return 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.';
159
		});
160
	}
2707 mathias 161
 
162
	// Autocompletion du champ adresse
163
	$("#carte-recherche").on('focus', function() {
164
		$(this).select();
165
	});
166
	$("#carte-recherche").on('mouseup', function(event) {// Pour Safari...
167
		event.preventDefault();
168
	});
169
	$("#carte-recherche").keypress(function(e) {
170
		if (e.which == 13) {
171
			e.preventDefault();
172
		}
173
	});
2688 mathias 174
}
1249 jpm 175
 
2688 mathias 176
/**
177
 * Retourne true si l'extension de l'image "nom" est .jpg ou .jpeg
178
 */
179
WidgetSaisie.prototype.verifierFormat = function(nom) {
1524 aurelien 180
	var parts = nom.split('.');
181
	extension = parts[parts.length - 1];
182
	return (extension.toLowerCase() == 'jpeg' || extension.toLowerCase() == 'jpg');
2688 mathias 183
};
1210 jpm 184
 
2688 mathias 185
/**
186
 * Affiche la miniature d'une image temporaire (formulaire) qu'on a ajoutée à l'obs
187
 */
188
WidgetSaisie.prototype.afficherMiniature = function(reponse) {
2700 mathias 189
	if (this.debug) {
1210 jpm 190
		var debogage = $("debogage", reponse).text();
1822 aurelien 191
		//console.log("Débogage upload : "+debogage);
1210 jpm 192
	}
193
	var message = $("message", reponse).text();
194
	if (message != '') {
195
		$("#miniature-msg").append(message);
196
	} else {
2688 mathias 197
		$("#miniatures").append(this.creerWidgetMiniature(reponse));
1210 jpm 198
	}
2328 jpm 199
	$('#ajouter-obs').removeAttr('disabled');
2688 mathias 200
};
1210 jpm 201
 
2688 mathias 202
/**
203
 * Crée la miniature d'une image temporaire (formulaire), avec le bouton pour l'effacer
204
 */
205
WidgetSaisie.prototype.creerWidgetMiniature = function(reponse) {
1524 aurelien 206
	var miniatureUrl = $("miniature-url", reponse).text();
207
	var imgNom = $("image-nom", reponse).text();
2328 jpm 208
	var html =
1524 aurelien 209
		'<div class="miniature">'+
210
			'<img class="miniature-img" class="miniature" alt="'+imgNom+'" src="'+miniatureUrl+'"/>'+
211
			'<button class="effacer-miniature" type="button">Effacer</button>'+
212
		'</div>'
213
	return html;
2688 mathias 214
};
1524 aurelien 215
 
2688 mathias 216
/**
2707 mathias 217
 * Efface une miniature (formulaire)
218
 */
219
WidgetSaisie.prototype.supprimerMiniature = function(miniature) {
220
	miniature.parents('.miniature').remove();
221
}
222
 
223
/**
2688 mathias 224
 * Efface toutes les miniatures (formulaire)
225
 */
226
WidgetSaisie.prototype.supprimerMiniatures = function() {
1524 aurelien 227
	$("#miniatures").empty();
1210 jpm 228
	$("#miniature-msg").empty();
2688 mathias 229
};
1210 jpm 230
 
2688 mathias 231
/**
232
 * Initialise l'autocomplétion de la commune, en fonction du référentiel
233
 */
234
WidgetSaisie.prototype.initialiserAutocompleteCommune = function() {
2136 mathias 235
	var geocoderOptions = {
2688 mathias 236
	},
237
	addressSuffix = '',
238
	lthis = this;
1210 jpm 239
 
2700 mathias 240
	switch(this.nomSciReferentiel) {
2125 mathias 241
		case 'isfan':
2136 mathias 242
			// Si des résultats se trouvent dans ce rectangle, ils apparaîtront en premier.
243
			// Ça marche moyen...
244
			geocoderOptions.bounds = new google.maps.LatLngBounds(
245
				new google.maps.LatLng(20.756114, -22.023927),
246
				new google.maps.LatLng(38.065392, 33.78662)
247
			);
248
			break;
2155 mathias 249
		case 'apd':
2136 mathias 250
			geocoderOptions.bounds = new google.maps.LatLngBounds(
251
					new google.maps.LatLng(-6.708254, -26.154786),
252
					new google.maps.LatLng(27.488781, 30.490722)
253
				);
254
			break;
255
		case 'bdtfx':
256
		case 'bdtxa':
257
			geocoderOptions.region = 'fr';
258
			addressSuffix = ', France';
2125 mathias 259
	}
2709 mathias 260
 
261
	$("#carte-recherche").autocomplete({
262
		//Cette partie utilise geocoder pour extraire des valeurs d'adresse
263
		source: function(request, response) {
264
			geocoderOptions.address = request.term + addressSuffix;
265
			lthis.geocoder.geocode( geocoderOptions, function(results, status) {
266
				if (status == google.maps.GeocoderStatus.OK) {
267
					response($.map(results, function(item) {
268
						var retour = {
269
							label: item.formatted_address,
270
							value: item.formatted_address,
271
							latitude: item.geometry.location.lat(),
272
							longitude: item.geometry.location.lng()
273
						};
274
						return retour;
275
					}));
276
				} else {
277
					lthis.afficherErreurGoogleMap(status);
278
				}
279
			});
280
		},
281
		// Cette partie est executee a la selection d'une adresse
282
		select: function(event, ui) {
2736 mathias 283
			lthis.latLng = new google.maps.LatLng(ui.item.latitude, ui.item.longitude);
284
			lthis.deplacerMarker(lthis.latLng);
2709 mathias 285
		}
286
	});
2127 mathias 287
};
2125 mathias 288
 
2688 mathias 289
WidgetSaisie.prototype.afficherErreurGoogleMap = function(status) {
2700 mathias 290
	if (this.debug) {
1576 jpm 291
		$('#dialogue-google-map .contenu').empty().append(
292
			'<pre class="msg-erreur">'+
293
			"Le service de Géocodage de Google Map a échoué à cause de l'erreur : "+status+
294
			'</pre>');
2700 mathias 295
		this.afficherPanneau('#dialogue-google-map');
1576 jpm 296
	}
2688 mathias 297
};
1576 jpm 298
 
2688 mathias 299
WidgetSaisie.prototype.surDeplacementMarker = function() {
2736 mathias 300
	this.latLng = this.marker.getPosition();
301
	this.trouverCommune(this.latLng);
2688 mathias 302
	this.mettreAJourMarkerPosition(this.marker.getPosition());
303
};
1249 jpm 304
 
2688 mathias 305
WidgetSaisie.prototype.surClickDansCarte = function(event) {
2736 mathias 306
	this.latLng = event.latLng;
307
	this.deplacerMarker(this.latLng);
2688 mathias 308
};
1249 jpm 309
 
2688 mathias 310
/**
311
 * Place le marqueur aux coordonnées indiquées dans les champs "latitude" et "longitude"
312
 */
313
WidgetSaisie.prototype.geolocaliser = function() {
1249 jpm 314
	var latitude = $('#latitude').val();
315
	var longitude = $('#longitude').val();
2688 mathias 316
	this.latLng = new google.maps.LatLng(latitude, longitude);
317
	this.deplacerMarker(this.latLng);
318
};
1249 jpm 319
 
2715 mathias 320
WidgetSaisie.prototype.initialiserGoogleMap = function(localisationNavigateur) {
321
	// par défaut on tente de localiser le navigateur (avec son sextant)
322
	if (localisationNavigateur === undefined) {
323
		localisationNavigateur = true;
324
	}
325
 
2713 mathias 326
	var lthis = this;
2688 mathias 327
	var latLng,
328
		zoomDefaut;
2553 mathias 329
	// Carte @TODO mettre ça dans la config
2700 mathias 330
	if(this.nomSciReferentiel == 'bdtre') {
2688 mathias 331
		latLng = new google.maps.LatLng(-21.10, 55.30);// Réunion
332
		zoomDefaut = 7;
2700 mathias 333
	} else if(this.nomSciReferentiel == 'lbf') {
2688 mathias 334
		latLng = new google.maps.LatLng(33.72211, 35.8603);// Liban
335
		zoomDefaut = 7;
2700 mathias 336
	} else if(this.nomSciReferentiel == 'bdtxa') {
2688 mathias 337
		latLng = new google.maps.LatLng(14.6, -61.08334);// Fort-De-France
338
		zoomDefaut = 8;
2700 mathias 339
	} else if(this.nomSciReferentiel == 'isfan') {
2688 mathias 340
		latLng = new google.maps.LatLng(29.28358, 10.21884);// Afrique du Nord
341
		zoomDefaut = 4;
2700 mathias 342
	} else if(this.nomSciReferentiel == 'apd') {
2688 mathias 343
		latLng = new google.maps.LatLng(8.75624, 1.80176);// Afrique de l'Ouest et du Centre
344
		zoomDefaut = 4;
1476 aurelien 345
	} else {
2736 mathias 346
		latLng = new google.maps.LatLng(46.30871, 2.54395);// Centre de la France - @WARNING Prémilhat !! :)
2688 mathias 347
		zoomDefaut = 5;
1476 aurelien 348
	}
2328 jpm 349
 
1210 jpm 350
	var options = {
1476 aurelien 351
		zoom: zoomDefaut,
1210 jpm 352
		center: latLng,
353
		mapTypeId: google.maps.MapTypeId.HYBRID,
354
		mapTypeControlOptions: {
355
			mapTypeIds: ['OSM', google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.HYBRID, google.maps.MapTypeId.SATELLITE, google.maps.MapTypeId.TERRAIN]}
356
	};
357
 
358
	// Ajout de la couche OSM à la carte
359
	osmMapType = new google.maps.ImageMapType({
360
		getTileUrl: function(coord, zoom) {
361
			return "http://tile.openstreetmap.org/" +
362
			zoom + "/" + coord.x + "/" + coord.y + ".png";
363
		},
364
		tileSize: new google.maps.Size(256, 256),
365
		isPng: true,
366
		alt: 'OpenStreetMap',
367
		name: 'OSM',
368
		maxZoom: 19
369
	});
2328 jpm 370
 
1210 jpm 371
	// Création de la carte Google
2688 mathias 372
	this.map = new google.maps.Map(document.getElementById('map-canvas'), options); //affiche la google map dans la div map_canvas
373
	this.map.mapTypes.set('OSM', osmMapType);
2328 jpm 374
 
1216 jpm 375
	// Création du Geocoder
2688 mathias 376
	this.geocoder = new google.maps.Geocoder();
2328 jpm 377
 
1210 jpm 378
	// Marqueur google draggable
2688 mathias 379
	this.marker = new google.maps.Marker({
380
		map: this.map,
1210 jpm 381
		draggable: true,
382
		title: 'Ma station',
2700 mathias 383
		icon: this.googleMapMarqueurUrl,
1210 jpm 384
		position: latLng
385
	});
2328 jpm 386
 
2688 mathias 387
	this.initialiserMarker(latLng);
2328 jpm 388
 
2715 mathias 389
	// Tentative de geocalisation depuis le navigateur
390
	if (localisationNavigateur && navigator.geolocation) {
1210 jpm 391
		navigator.geolocation.getCurrentPosition(function(position) {
392
			var latitude = position.coords.latitude;
393
			var longitude = position.coords.longitude;
2713 mathias 394
			lthis.latLng = new google.maps.LatLng(latitude, longitude);
2714 mathias 395
			lthis.deplacerMarker(lthis.latLng);
1210 jpm 396
		});
397
	}
2127 mathias 398
 
399
	// intéraction carte
2688 mathias 400
	$("#geolocaliser").on('click', this.geolocaliser.bind(this));
401
	google.maps.event.addListener(this.marker, 'dragend', this.surDeplacementMarker.bind(this));
402
	google.maps.event.addListener(this.map, 'click', this.surClickDansCarte.bind(this));
403
};
1210 jpm 404
 
2688 mathias 405
WidgetSaisie.prototype.initialiserMarker = function(latLng) {
406
	if (this.marker != undefined) {
407
		this.marker.setPosition(latLng);
408
		this.map.setCenter(latLng);
2904 aurel 409
		// au chargement de la carte, la position est nulle
410
		this.viderMarkerPosition();
1485 aurelien 411
	}
2688 mathias 412
};
1485 aurelien 413
 
2688 mathias 414
WidgetSaisie.prototype.deplacerMarker = function(latLng) {
415
	if (this.marker != undefined) {
416
		this.marker.setPosition(latLng);
417
		this.map.setCenter(latLng);
418
		this.mettreAJourMarkerPosition(latLng);
419
		this.trouverCommune(latLng);
1210 jpm 420
	}
2688 mathias 421
};
1210 jpm 422
 
2904 aurel 423
WidgetSaisie.prototype.viderMarkerPosition = function() {
424
	this.remplirChampLatitude(null);
425
	this.remplirChampLongitude(null);
426
};
427
 
2688 mathias 428
WidgetSaisie.prototype.mettreAJourMarkerPosition = function(latLng) {
1210 jpm 429
	var lat = latLng.lat().toFixed(5);
2328 jpm 430
	var lng = latLng.lng().toFixed(5);
2688 mathias 431
	this.remplirChampLatitude(lat);
432
	this.remplirChampLongitude(lng);
433
};
1210 jpm 434
 
2904 aurel 435
/**
436
 * Définit la valeur de latitude, à travers la "value" du champ "#latitude";
437
 * pour définir une valeur vraiment vide (et non 0), passer null en argument
438
 */
2688 mathias 439
WidgetSaisie.prototype.remplirChampLatitude = function(latDecimale) {
2904 aurel 440
	var lat = '';
441
	if (latDecimale !== null) {
442
		lat = Math.round(latDecimale * 100000) / 100000;
443
	}
1210 jpm 444
	$('#latitude').val(lat);
2688 mathias 445
};
1210 jpm 446
 
2904 aurel 447
/**
448
 * Définit la valeur de longitude, à travers la "value" du champ "#longitude";
449
 * pour définir une valeur vraiment vide (et non 0), passer null en argument
450
 */
2688 mathias 451
WidgetSaisie.prototype.remplirChampLongitude = function(lngDecimale) {
2904 aurel 452
	var lng = '';
453
	if (lngDecimale !== null) {
454
		lng = Math.round(lngDecimale * 100000) / 100000;
455
	}
1210 jpm 456
	$('#longitude').val(lng);
2688 mathias 457
};
1210 jpm 458
 
2688 mathias 459
WidgetSaisie.prototype.trouverCommune = function(pos) {
2736 mathias 460
	if (this.latLng == null) { // tentative de protection contre le démon de Prémilhat
461
		return;
462
	}
2700 mathias 463
	var lthis = this;
1210 jpm 464
	$(function() {
2328 jpm 465
 
2700 mathias 466
		var url_service = lthis.serviceNomCommuneUrl;
2328 jpm 467
 
1476 aurelien 468
		var urlNomCommuneFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng());
1210 jpm 469
		$.ajax({
470
			url : urlNomCommuneFormatee,
471
			type : "GET",
472
			dataType : "jsonp",
473
			beforeSend : function() {
2328 jpm 474
				$(".commune-info").empty();
1220 jpm 475
				$("#dialogue-erreur .alert-txt").empty();
1210 jpm 476
			},
477
			success : function(data, textStatus, jqXHR) {
478
				$(".commune-info").empty();
479
				$("#commune-nom").append(data.nom);
480
				$("#commune-code-insee").append(data.codeINSEE);
481
				$("#marqueur-commune").data('commune', {'nom' : data.nom, 'codeInsee' : data.codeINSEE});
482
			},
483
			statusCode : {
484
			    500 : function(jqXHR, textStatus, errorThrown) {
2700 mathias 485
					if (this.debug) {
1220 jpm 486
						$("#dialogue-erreur .alert-txt").append('<p id="msg">Un problème est survenu lors de l\'appel au service fournissante le nom des communes.</p>');
1210 jpm 487
						reponse = jQuery.parseJSON(jqXHR.responseText);
488
						var erreurMsg = "";
489
						if (reponse != null) {
490
							$.each(reponse, function (cle, valeur) {
491
								erreurMsg += valeur + "<br />";
492
							});
493
						}
2328 jpm 494
 
1220 jpm 495
						$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur 500 : '+errorThrown+"<br />"+erreurMsg+'</p>');
1210 jpm 496
					}
497
			    }
498
			},
499
			error : function(jqXHR, textStatus, errorThrown) {
2700 mathias 500
				if (this.debug) {
2707 mathias 501
					$("#dialogue-erreur .alert-txt").append('<p class="msg">Une erreur Ajax est survenue lors de la recherche de la commune.</p>');
1210 jpm 502
					reponse = jQuery.parseJSON(jqXHR.responseText);
503
					var erreurMsg = "";
504
					if (reponse != null) {
505
						$.each(reponse, function (cle, valeur) {
506
							erreurMsg += valeur + "<br />";
507
						});
508
					}
2328 jpm 509
 
1220 jpm 510
					$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>');
1210 jpm 511
				}
512
			},
513
			complete : function(jqXHR, textStatus) {
1249 jpm 514
				var debugMsg = extraireEnteteDebug(jqXHR);
515
				if (debugMsg != '') {
2700 mathias 516
					if (this.debug) {
1220 jpm 517
						$("#dialogue-erreur .alert-txt").append('<pre class="msg-debug msg">Débogage : '+debugMsg+'</pre>');
1210 jpm 518
					}
519
				}
520
				if ($("#dialogue-erreur .msg").length > 0) {
1220 jpm 521
					$("#dialogue-erreur").show();
1210 jpm 522
				}
523
			}
524
		});
525
	});
2688 mathias 526
};
1249 jpm 527
 
2688 mathias 528
WidgetSaisie.prototype.testerLancementRequeteIdentite = function(event) {
1249 jpm 529
	if (event.which == 13) {
2688 mathias 530
		this.requeterIdentite();
531
		this.event.preventDefault();
532
		this.event.stopPropagation();
1249 jpm 533
	}
2688 mathias 534
};
1249 jpm 535
 
2688 mathias 536
WidgetSaisie.prototype.requeterIdentite = function() {
537
	var lthis = this;
1249 jpm 538
	var courriel = $("#courriel").val();
2701 mathias 539
	var urlAnnuaire = this.serviceAnnuaireIdUrl + courriel;
2709 mathias 540
	if (courriel != '') {
541
		$.ajax({
542
			url : urlAnnuaire,
543
			type : "GET",
544
			success : function(data, textStatus, jqXHR) {
2710 mathias 545
				if (lthis.debug) {
546
					console.log('SUCCESS: '+textStatus);
547
				}
2709 mathias 548
				if (data != undefined && data[courriel] != undefined) {
549
					var infos = data[courriel];
2710 mathias 550
					lthis.surSuccesCompletionCourriel(infos, courriel);
2709 mathias 551
				} else {
552
					lthis.surErreurCompletionCourriel();
553
				}
554
			},
555
			error : function(jqXHR, textStatus, errorThrown) {
2710 mathias 556
				if (lthis.debug) {
557
					console.log('ERREUR: '+textStatus);
558
				}
2688 mathias 559
				lthis.surErreurCompletionCourriel();
2709 mathias 560
			},
561
			complete : function(jqXHR, textStatus) {
2710 mathias 562
				if (lthis.debug) {
563
					console.log('COMPLETE: '+textStatus);
564
				}
2709 mathias 565
				// @TODO harmoniser class="hidden" VS style="display:none;"
566
				$("#zone-prenom-nom").removeClass("hidden").show();
567
				$("#zone-courriel-confirmation").removeClass("hidden").show();
1241 jpm 568
			}
2709 mathias 569
		});
570
	}
2688 mathias 571
};
1210 jpm 572
 
2710 mathias 573
WidgetSaisie.prototype.surSuccesCompletionCourriel = function(infos, courriel) {
574
	$("#id_utilisateur").val(infos.id);
575
	$("#prenom").val(infos.prenom);
576
	$("#nom").val(infos.nom);
577
	$("#courriel_confirmation").val(courriel);
578
	$("#prenom, #nom, #courriel_confirmation").attr('disabled', 'disabled');
579
	this.focusChampFormulaire();
580
	this.masquerPanneau("#dialogue-courriel-introuvable");
581
};
2707 mathias 582
 
2688 mathias 583
WidgetSaisie.prototype.surErreurCompletionCourriel = function() {
1249 jpm 584
	$("#prenom, #nom, #courriel_confirmation").val('');
585
	$("#prenom, #nom, #courriel_confirmation").removeAttr('disabled');
2700 mathias 586
	this.afficherPanneau("#dialogue-courriel-introuvable");
2688 mathias 587
};
2256 aurelien 588
 
2710 mathias 589
WidgetSaisie.prototype.focusChampFormulaire = function() {
590
	$("#date").focus();
591
};
592
 
2688 mathias 593
WidgetSaisie.prototype.chargerInfoObs = function() {
2700 mathias 594
	var urlObs = this.serviceObsUrl + '/' + this.obsId;
2707 mathias 595
	var lthis = this;
2256 aurelien 596
	$.ajax({
597
		url: urlObs,
598
		type: 'GET',
599
		success: function(data, textStatus, jqXHR) {
600
			if (data != undefined && data != "") {
2758 aurelien 601
				lthis.prechargerForm(data);
2707 mathias 602
			} else {
603
				lthis.surErreurChargementInfosObs();
2328 jpm 604
			}
2256 aurelien 605
		},
606
		error: function(jqXHR, textStatus, errorThrown) {
2707 mathias 607
			lthis.surErreurChargementInfosObs();
2256 aurelien 608
		}
609
	});
2688 mathias 610
};
2256 aurelien 611
 
2707 mathias 612
// @TODO faire mieux que ça !
613
WidgetSaisie.prototype.surErreurChargementInfosObs = function() {
614
	alert("Erreur lors du chargement de l'observation");
615
}
616
 
2688 mathias 617
WidgetSaisie.prototype.prechargerForm = function(data) {
2328 jpm 618
 
2256 aurelien 619
	$("#milieu").val(data.milieu);
2328 jpm 620
 
2256 aurelien 621
	$("#carte-recherche").val(data.zoneGeo);
622
	$("#commune-nom").text(data.zoneGeo);
2328 jpm 623
 
2257 aurelien 624
	if(data.hasOwnProperty("codeZoneGeo")) {
625
		// TODO: trouver un moyen qui fonctionne lorsqu'on aura d'autres référentiels que INSEE
626
		$("#commune-code-insee").text(data.codeZoneGeo.replace('INSEE-C:', ''));
627
	}
2328 jpm 628
 
2256 aurelien 629
	if(data.hasOwnProperty("latitude") && data.hasOwnProperty("longitude")) {
630
		var latLng = new google.maps.LatLng(data.latitude, data.longitude);
2688 mathias 631
		this.mettreAJourMarkerPosition(latLng);
632
		this.marker.setPosition(latLng);
633
		this.map.setCenter(latLng);
634
		this.map.setZoom(16);
2256 aurelien 635
	}
2688 mathias 636
};
2256 aurelien 637
 
2688 mathias 638
WidgetSaisie.prototype.configurerFormValidator = function() {
1210 jpm 639
	$.validator.addMethod(
2328 jpm 640
		"dateCel",
641
		function (value, element) {
642
			return value == "" || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
643
		},
1213 jpm 644
		"Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.");
1210 jpm 645
	$.extend($.validator.defaults, {
646
		errorClass: "control-group error",
647
		validClass: "control-group success",
648
		errorElement: "span",
1213 jpm 649
		highlight: function(element, errorClass, validClass) {
1210 jpm 650
			if (element.type === 'radio') {
651
				this.findByName(element.name).parent("div").parent("div").removeClass(validClass).addClass(errorClass);
2328 jpm 652
			} else {
1210 jpm 653
				$(element).parent("div").parent("div").removeClass(validClass).addClass(errorClass);
654
			}
655
		},
1213 jpm 656
		unhighlight: function(element, errorClass, validClass) {
1210 jpm 657
			if (element.type === 'radio') {
658
				this.findByName(element.name).parent("div").parent("div").removeClass(errorClass).addClass(validClass);
659
			} else {
1213 jpm 660
				if ($(element).attr('id') == 'taxon') {
1493 aurelien 661
					if ($("#taxon").val() != '') {
662
						// Si le taxon n'est pas lié au référentiel, on vide le data associé
2688 mathias 663
						if ($("#taxon").data("value") != $("#taxon").val()) {
1493 aurelien 664
							$("#taxon").data("numNomSel","");
665
							$("#taxon").data("nomRet","");
666
							$("#taxon").data("numNomRet","");
667
							$("#taxon").data("nt","");
668
							$("#taxon").data("famille","");
1213 jpm 669
						}
1493 aurelien 670
						$("#taxon-input-groupe").removeClass(errorClass).addClass(validClass);
671
						$(element).next(" span.help-inline").remove();
1213 jpm 672
					}
673
				} else {
674
					$(element).parent("div").parent("div").removeClass(errorClass).addClass(validClass);
675
					$(element).next(" span.help-inline").remove();
676
				}
1210 jpm 677
			}
678
		}
679
	});
2688 mathias 680
};
1249 jpm 681
 
2688 mathias 682
WidgetSaisie.prototype.definirReglesFormValidator = function() {
1210 jpm 683
	$("#form-observateur").validate({
684
		rules: {
685
			courriel : {
686
				required : true,
687
				email : true},
688
			courriel_confirmation : {
689
				required : true,
690
				equalTo: "#courriel"}
691
		}
692
	});
693
	$("#form-station").validate({
694
		rules: {
695
			latitude : {
696
				range: [-90, 90]},
697
			longitude : {
698
				range: [-180, 180]}
699
		}
700
	});
701
	$("#form-obs").validate({
702
		rules: {
2904 aurel 703
			date : "date",
1210 jpm 704
			taxon : "required"
705
		}
706
	});
2688 mathias 707
};
1249 jpm 708
 
2707 mathias 709
WidgetSaisie.prototype.configurerDatePicker = function(selector) {
1249 jpm 710
	$.datepicker.setDefaults($.datepicker.regional["fr"]);
2707 mathias 711
	$(selector).datepicker({
1990 jpm 712
		dateFormat: "dd/mm/yy",
713
		maxDate: new Date,
1249 jpm 714
		showOn: "button",
1990 jpm 715
		buttonImageOnly: true,
2700 mathias 716
		buttonImage: this.calendrierIconeUrl,
1249 jpm 717
		buttonText: "Afficher le calendrier pour saisir la date.",
2707 mathias 718
		showButtonPanel: true,
719
		onSelect: function(date) {
720
			$(this).valid();
721
		}
1210 jpm 722
	});
2707 mathias 723
	$(selector + ' + img.ui-datepicker-trigger').appendTo(selector + '-icone.add-on');
2688 mathias 724
};
1249 jpm 725
 
2688 mathias 726
WidgetSaisie.prototype.fermerPanneauAlert = function() {
1249 jpm 727
	$(this).parentsUntil(".zone-alerte", ".alert").hide();
2688 mathias 728
};
1249 jpm 729
 
2688 mathias 730
WidgetSaisie.prototype.formaterNom = function() {
1249 jpm 731
	$(this).val($(this).val().toUpperCase());
2688 mathias 732
};
1249 jpm 733
 
2688 mathias 734
WidgetSaisie.prototype.formaterPrenom = function() {
1249 jpm 735
	var prenom = new Array();
736
	var mots = $(this).val().split(' ');
737
	for (var i = 0; i < mots.length; i++) {
738
		var mot = mots[i];
739
		if (mot.indexOf('-') >= 0) {
740
			var prenomCompose = new Array();
741
			var motsComposes = mot.split('-');
742
		    for (var j = 0; j < motsComposes.length; j++) {
743
		    	var motSimple = motsComposes[j];
744
		    	var motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
745
		    	prenomCompose.push(motMajuscule);
746
		    }
747
		    prenom.push(prenomCompose.join('-'));
748
		} else {
749
			var motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
750
			prenom.push(motMajuscule);
751
		}
752
	}
753
	$(this).val(prenom.join(' '));
2688 mathias 754
};
1249 jpm 755
 
2688 mathias 756
WidgetSaisie.prototype.basculerAffichageAide = function()  {
1249 jpm 757
	if ($(this).hasClass('btn-warning')) {
2707 mathias 758
		$(".has-tooltip").tooltip('enable');
1249 jpm 759
		$(this).removeClass('btn-warning').addClass('btn-success');
760
		$('#btn-aide-txt', this).text("Désactiver l'aide");
761
	} else {
2707 mathias 762
		$(".has-tooltip").tooltip('disable');
1249 jpm 763
		$(this).removeClass('btn-success').addClass('btn-warning');
764
		$('#btn-aide-txt', this).text("Activer l'aide");
765
	}
2688 mathias 766
};
1249 jpm 767
 
2688 mathias 768
WidgetSaisie.prototype.bloquerCopierCollerCourriel = function() {
2700 mathias 769
	this.afficherPanneau("#dialogue-bloquer-copier-coller");
1249 jpm 770
	return false;
2688 mathias 771
};
1249 jpm 772
 
2688 mathias 773
WidgetSaisie.prototype.basculerAffichageCoord = function() {
1249 jpm 774
	$("a.afficher-coord").toggle();
775
	$("#coordonnees-geo").toggle('slow');
776
	//valeur false pour que le lien ne soit pas suivi
777
	return false;
2688 mathias 778
};
1249 jpm 779
 
2688 mathias 780
/**
781
 * Ajoute une observation saisie dans le formulaire à la liste des observations à transmettre
782
 */
783
WidgetSaisie.prototype.ajouterObs = function() {
2710 mathias 784
	// Fermeture automatique des dialogue de transmission de données
785
	// @WARNING TEST
786
	$('#dialogue-obs-transaction-ko').hide();
787
	$('#dialogue-obs-transaction-ok').hide();
788
 
2688 mathias 789
	if (this.validerFormulaire() == true) {
2904 aurel 790
		this.masquerPanneau('#dialogue-form-invalide');
2688 mathias 791
		this.obsNbre = this.obsNbre + 1;
792
		$(".obs-nbre").text(this.obsNbre);
1249 jpm 793
		$(".obs-nbre").triggerHandler('changement');
2688 mathias 794
		this.afficherObs();
795
		this.stockerObsData();
796
		this.supprimerMiniatures();
2700 mathias 797
		if(! this.especeImposee) {
1856 aurelien 798
			$("#taxon").val("");
799
			$("#taxon").data("numNomSel",undefined);
800
		}
2688 mathias 801
		$('#barre-progression-upload').attr('aria-valuemax', this.obsNbre);
802
		$('#barre-progression-upload .sr-only').text('0/'+this.obsNbre+" observations transmises");
1249 jpm 803
	} else {
2700 mathias 804
		this.afficherPanneau('#dialogue-form-invalide');
1249 jpm 805
	}
2688 mathias 806
};
1249 jpm 807
 
2688 mathias 808
/**
809
 * Affiche une observation dans la liste des observations à transmettre
810
 */
811
WidgetSaisie.prototype.afficherObs = function() {
2746 aurelien 812
 
813
	var commune = $("#commune-nom").text();
814
	commune = commune.trim() != "" ? commune : $("#carte-recherche").val();
815
 
816
	var code_insee = $('#commune-code-insee').text();
817
	code_insee = code_insee.trim() != "" ? "("+code_insee+")" : "";
2904 aurel 818
 
819
	if (this.debug) {
820
		console.log(commune+'  -  '+code_insee);
821
	}
2746 aurelien 822
 
1249 jpm 823
	$("#liste-obs").prepend(
2688 mathias 824
		'<div id="obs'+this.obsNbre+'" class="row-fluid obs obs'+this.obsNbre+'">'+
1249 jpm 825
			'<div class="span12">'+
1253 jpm 826
				'<div class="well">'+
2707 mathias 827
					'<div class="obs-action pull-right has-tooltip" data-placement="bottom" '+
1253 jpm 828
						'title="Supprimer cette observation de la liste à transmettre">'+
2688 mathias 829
						'<button class="btn btn-danger supprimer-obs" value="'+this.obsNbre+'" title="'+this.obsNbre+'">'+
1249 jpm 830
							'<i class="icon-trash icon-white"></i>'+
831
						'</button>'+
2328 jpm 832
					'</div> '+
833
					'<div class="row-fluid">'+
1249 jpm 834
						'<div class="thumbnail span2">'+
2688 mathias 835
						this.ajouterImgMiniatureAuTransfert()+
1240 jpm 836
						'</div>'+
1249 jpm 837
						'<div class="span9">'+
838
							'<ul class="unstyled">'+
839
								'<li>'+
840
									'<span class="nom-sci">'+$("#taxon").val()+'</span> '+
2688 mathias 841
									this.ajouterNumNomSel()+'<span class="referentiel-obs">'+
2700 mathias 842
									($("#taxon").data("numNomSel") == undefined ? '' : '['+ this.nomSciReferentiel +']')+'</span>'+
1249 jpm 843
									' observé à '+
2746 aurelien 844
									'<span class="commune">'+commune+'</span> '+
845
									code_insee+' ['+$("#latitude").val()+' / '+$("#longitude").val()+']'+
1249 jpm 846
									' le '+
847
									'<span class="date">'+$("#date").val()+'</span>'+
848
								'</li>'+
849
								'<li>'+
850
									'<span>Lieu-dit :</span> '+$('#lieudit').val()+' '+
851
									'<span>Station :</span> '+$('#station').val()+' '+
852
									'<span>Milieu :</span> '+$('#milieu').val()+' '+
853
								'</li>'+
854
								'<li>'+
855
									'Commentaires : <span class="discretion">'+$("#notes").val()+'</span>'+
856
								'</li>'+
857
							'</ul>'+
858
						'</div>'+
1237 jpm 859
					'</div>'+
1249 jpm 860
				'</div>'+
861
			'</div>'+
862
		'</div>');
2707 mathias 863
	$('#zone-liste-obs').removeClass("hidden").show();
2688 mathias 864
};
1249 jpm 865
 
2688 mathias 866
WidgetSaisie.prototype.stockerObsData = function() {
867
	var lthis = this;
2746 aurelien 868
 
869
	var commune = $("#commune-nom").text();
870
	commune = commune.trim() == "" ? commune : $("#carte-recherche").val();
871
 
2688 mathias 872
	$("#liste-obs").data('obsId'+this.obsNbre, {
2328 jpm 873
		'date' : $("#date").val(),
2710 mathias 874
		'notes' : $("#notes").val().trim(),
2328 jpm 875
 
1249 jpm 876
		'nom_sel' : $("#taxon").val(),
877
		'num_nom_sel' : $("#taxon").data("numNomSel"),
878
		'nom_ret' : $("#taxon").data("nomRet"),
879
		'num_nom_ret' : $("#taxon").data("numNomRet"),
880
		'num_taxon' : $("#taxon").data("nt"),
881
		'famille' : $("#taxon").data("famille"),
2700 mathias 882
		'referentiel' : ($("#taxon").data("numNomSel") == undefined ? '' : lthis.nomSciReferentiel),
2328 jpm 883
 
1249 jpm 884
		'latitude' : $("#latitude").val(),
885
		'longitude' : $("#longitude").val(),
2746 aurelien 886
		'commune_nom' : commune,
1249 jpm 887
		'commune_code_insee' : $("#commune-code-insee").text(),
1251 jpm 888
		'lieudit' : $("#lieudit").val(),
1249 jpm 889
		'station' : $("#station").val(),
890
		'milieu' : $("#milieu").val(),
2328 jpm 891
 
1249 jpm 892
		//Ajout des champs images
2688 mathias 893
		'image_nom' : lthis.getNomsImgsOriginales(),
2709 mathias 894
		'image_b64' : lthis.getB64ImgsOriginales(),
895
 
896
		// Ajout des champs étendus de l'obs
897
		'obs_etendue': lthis.getObsChpEtendus()
1210 jpm 898
	});
2688 mathias 899
};
1249 jpm 900
 
2709 mathias 901
/**
902
 * Retourne un Array contenant les valeurs des champs étendus
903
 */
904
WidgetSaisie.prototype.getObsChpEtendus = function() {
905
	var champs = [];
906
 
907
	$('.obs-chp-etendu').each(function() {
908
		var valeur = $(this).val(),
909
			cle = $(this).attr('name'),
910
			label = $(this).data('label');
911
		if (valeur != '') {
912
			var chpEtendu = {cle: cle, label: label, valeur: valeur};
913
			champs.push(chpEtendu);
914
		}
915
	});
916
	return champs;
917
}
918
 
2688 mathias 919
WidgetSaisie.prototype.surChangementReferentiel = function() {
2700 mathias 920
	this.nomSciReferentiel = $('#referentiel').val();
1476 aurelien 921
	$('#taxon').val('');
2688 mathias 922
	this.initialiserAutocompleteCommune();
2715 mathias 923
	this.initialiserGoogleMap(false);
2688 mathias 924
};
1476 aurelien 925
 
2688 mathias 926
WidgetSaisie.prototype.surChangementNbreObs = function() {
927
	if (this.obsNbre == 0) {
1249 jpm 928
		$("#transmettre-obs").attr('disabled', 'disabled');
929
		$("#ajouter-obs").removeAttr('disabled');
2700 mathias 930
	} else if (this.obsNbre > 0 && this.obsNbre < this.obsMaxNbre) {
1249 jpm 931
		$("#transmettre-obs").removeAttr('disabled');
932
		$("#ajouter-obs").removeAttr('disabled');
2700 mathias 933
	} else if (this.obsNbre >= this.obsMaxNbre) {
1249 jpm 934
		$("#ajouter-obs").attr('disabled', 'disabled');
2700 mathias 935
		this.afficherPanneau("#dialogue-bloquer-creer-obs");
1249 jpm 936
	}
2688 mathias 937
};
1249 jpm 938
 
2688 mathias 939
WidgetSaisie.prototype.transmettreObs = function() {
1249 jpm 940
	var observations = $("#liste-obs").data();
2710 mathias 941
	if (this.debug) {
942
		console.log(observations);
943
	}
1249 jpm 944
	if (observations == undefined || jQuery.isEmptyObject(observations)) {
2700 mathias 945
		this.afficherPanneau("#dialogue-zero-obs");
1249 jpm 946
	} else {
2688 mathias 947
		this.nbObsEnCours = 1;
948
		this.nbObsTransmises = 0;
949
		this.totalObsATransmettre = $.map(observations, function(n, i) { return i; }).length;
950
		this.depilerObsPourEnvoi();
2110 aurelien 951
	}
952
	return false;
2688 mathias 953
};
2110 aurelien 954
 
2688 mathias 955
WidgetSaisie.prototype.depilerObsPourEnvoi = function() {
2110 aurelien 956
	var observations = $("#liste-obs").data();
957
	// la boucle est factice car on utilise un tableau
958
	// dont on a besoin de n'extraire que le premier élément
959
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
960
	// TODO: utiliser var.keys quand ça sera plus répandu
961
	// ou bien utiliser un vrai tableau et pas un objet
2328 jpm 962
	for (var obsNum in observations) {
2697 mathias 963
		var obsATransmettre = {
2700 mathias 964
			'projet' : this.tagProjet,
965
			'tag-obs' : this.tagObs,
966
			'tag-img' : this.tagImg
2688 mathias 967
		};
2697 mathias 968
		var utilisateur = {
969
			id_utilisateur : $("#id_utilisateur").val(),
970
			prenom : $("#prenom").val(),
971
			nom : $("#nom").val(),
972
			courriel : $("#courriel").val()
973
		};
2110 aurelien 974
		obsATransmettre['utilisateur'] = utilisateur;
975
		obsATransmettre[obsNum] = observations[obsNum];
976
		var idObsNumerique = obsNum.replace('obsId', '');
977
		if(idObsNumerique != "") {
2688 mathias 978
			this.envoyerObsAuCel(idObsNumerique, obsATransmettre);
2110 aurelien 979
		}
2328 jpm 980
 
2110 aurelien 981
		break;
1249 jpm 982
	}
2688 mathias 983
};
1249 jpm 984
 
2688 mathias 985
WidgetSaisie.prototype.mettreAJourProgression = function() {
986
	this.nbObsTransmises++;
987
	var pct = (this.nbObsTransmises/this.totalObsATransmettre)*100;
988
	$('#barre-progression-upload').attr('aria-valuenow', this.nbObsTransmises);
2110 aurelien 989
	$('#barre-progression-upload').attr('style', "width: "+pct+"%");
2688 mathias 990
	$('#barre-progression-upload .sr-only').text(this.nbObsTransmises+"/"+this.totalObsATransmettre+" observations transmises");
2110 aurelien 991
 
2688 mathias 992
	if(this.obsNbre == 0) {
2110 aurelien 993
		$('.progress').removeClass('active');
994
		$('.progress').removeClass('progress-striped');
995
	}
2688 mathias 996
};
2110 aurelien 997
 
2688 mathias 998
WidgetSaisie.prototype.envoyerObsAuCel = function(idObs, observation) {
999
	var lthis = this;
1249 jpm 1000
	var erreurMsg = "";
1001
	$.ajax({
2700 mathias 1002
		url : lthis.serviceSaisieUrl,
1249 jpm 1003
		type : "POST",
2110 aurelien 1004
		data : observation,
1249 jpm 1005
		dataType : "json",
1006
		beforeSend : function() {
1251 jpm 1007
			$("#dialogue-obs-transaction-ko").hide();
1008
			$("#dialogue-obs-transaction-ok").hide();
2697 mathias 1009
			$('.alert-txt').empty();
2709 mathias 1010
			$(".alert-txt .msg-erreur").remove();
1011
			$(".alert-txt .msg-debug").remove();
1249 jpm 1012
			$("#chargement").show();
1013
		},
1014
		success : function(data, textStatus, jqXHR) {
2110 aurelien 1015
			// mise à jour du nombre d'obs à transmettre
1016
			// et suppression de l'obs
2688 mathias 1017
			lthis.supprimerObsParId(idObs);
2700 mathias 1018
			lthis.nbObsEnCours++;
2110 aurelien 1019
			// mise à jour du statut
2688 mathias 1020
			lthis.mettreAJourProgression();
2700 mathias 1021
			if(lthis.obsNbre > 0) {
2110 aurelien 1022
				// dépilement de la suivante
2688 mathias 1023
				lthis.depilerObsPourEnvoi();
2110 aurelien 1024
			}
1249 jpm 1025
		},
1026
		statusCode : {
1027
			500 : function(jqXHR, textStatus, errorThrown) {
1028
				erreurMsg += "Erreur 500 :\ntype : "+textStatus+' '+errorThrown+"\n";
1029
		    }
1030
		},
1031
		error : function(jqXHR, textStatus, errorThrown) {
1032
			erreurMsg += "Erreur Ajax :\ntype : "+textStatus+' '+errorThrown+"\n";
1033
			try {
1034
				reponse = jQuery.parseJSON(jqXHR.responseText);
1035
				if (reponse != null) {
1036
					$.each(reponse, function (cle, valeur) {
1037
						erreurMsg += valeur + "\n";
1038
					});
1039
				}
1040
			} catch(e) {
2700 mathias 1041
				erreurMsg += "Erreur inconnue: " + jqXHR.responseText;
1249 jpm 1042
			}
1043
		},
1044
		complete : function(jqXHR, textStatus) {
1045
			var debugMsg = extraireEnteteDebug(jqXHR);
2328 jpm 1046
 
1249 jpm 1047
			if (erreurMsg != '') {
2700 mathias 1048
				if (this.debug) {
1249 jpm 1049
					$("#dialogue-obs-transaction-ko .alert-txt").append('<pre class="msg-erreur">'+erreurMsg+'</pre>');
1050
					$("#dialogue-obs-transaction-ko .alert-txt").append('<pre class="msg-debug">Débogage : '+debugMsg+'</pre>');
1210 jpm 1051
				}
1901 mathias 1052
				var hrefCourriel = "mailto:cel_remarques@tela-botanica.org?"+
2700 mathias 1053
					"subject=Dysfonctionnement du widget de saisie "+ this.tagProjet +
1902 mathias 1054
					"&body="+erreurMsg+"%0D%0ADébogage :%0D%0A"+debugMsg;
2328 jpm 1055
 
2110 aurelien 1056
				// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
1057
				$('#obs'+idObs+' div div').addClass('obs-erreur');
1058
				window.location.hash = "obs"+idObs;
2328 jpm 1059
 
1249 jpm 1060
				$('#dialogue-obs-transaction-ko .alert-txt').append($("#tpl-transmission-ko").clone()
1061
					.find('.courriel-erreur')
1062
					.attr('href', hrefCourriel)
1063
					.end()
1064
					.html());
1065
				$("#dialogue-obs-transaction-ko").show();
2110 aurelien 1066
				$("#chargement").hide();
2688 mathias 1067
				lthis.initialiserBarreProgression();
1249 jpm 1068
			} else {
2700 mathias 1069
				if (lthis.debug) {
1249 jpm 1070
					$("#dialogue-obs-transaction-ok .alert-txt").append('<pre class="msg-debug">Débogage : '+debugMsg+'</pre>');
1071
				}
2700 mathias 1072
				if(lthis.obsNbre == 0) {
2110 aurelien 1073
					setTimeout(function() {
1074
						$("#chargement").hide();
1075
						$('#dialogue-obs-transaction-ok .alert-txt').append($('#tpl-transmission-ok').clone().html());
1076
						$("#dialogue-obs-transaction-ok").show();
2117 aurelien 1077
						window.location.hash = "dialogue-obs-transaction-ok";
2688 mathias 1078
						lthis.initialiserObs();
2110 aurelien 1079
					}, 1500);
2328 jpm 1080
 
1081
				}
1251 jpm 1082
			}
1210 jpm 1083
		}
1084
	});
2688 mathias 1085
};
1210 jpm 1086
 
2688 mathias 1087
WidgetSaisie.prototype.validerFormulaire = function() {
1210 jpm 1088
	$observateur = $("#form-observateur").valid();
1089
	$station = $("#form-station").valid();
1090
	$obs = $("#form-obs").valid();
1091
	return ($observateur == true && $station == true && $obs == true) ? true : false;
2688 mathias 1092
};
1210 jpm 1093
 
2688 mathias 1094
WidgetSaisie.prototype.getNomsImgsOriginales = function() {
1524 aurelien 1095
	var noms = new Array();
1096
	$(".miniature-img").each(function() {
1097
		noms.push($(this).attr('alt'));
1098
	});
1099
	return noms;
2688 mathias 1100
};
1524 aurelien 1101
 
2688 mathias 1102
WidgetSaisie.prototype.getB64ImgsOriginales = function() {
1524 aurelien 1103
	var b64 = new Array();
1104
	$(".miniature-img").each(function() {
1105
		if ($(this).hasClass('b64')) {
1106
			b64.push($(this).attr('src'));
1107
		} else if ($(this).hasClass('b64-canvas')) {
1108
			b64.push($(this).data('b64'));
1109
		}
1110
	});
1111
 
1210 jpm 1112
	return b64;
2688 mathias 1113
};
1210 jpm 1114
 
2688 mathias 1115
WidgetSaisie.prototype.supprimerObs = function(selector) {
1116
	var obsId = $(selector).val();
1210 jpm 1117
	// Problème avec IE 6 et 7
1118
	if (obsId == "Supprimer") {
2688 mathias 1119
		obsId = $(selector).attr("title");
1210 jpm 1120
	}
2688 mathias 1121
	this.supprimerObsParId(obsId);
1122
};
2110 aurelien 1123
 
2688 mathias 1124
WidgetSaisie.prototype.supprimerObsParId = function(obsId) {
1125
	this.obsNbre = this.obsNbre - 1;
1126
	$(".obs-nbre").text(this.obsNbre);
1237 jpm 1127
	$(".obs-nbre").triggerHandler('changement');
1215 jpm 1128
	$('.obs'+obsId).remove();
1210 jpm 1129
	$("#liste-obs").removeData('obsId'+obsId);
2688 mathias 1130
};
1210 jpm 1131
 
2688 mathias 1132
WidgetSaisie.prototype.initialiserBarreProgression = function() {
2110 aurelien 1133
	$('#barre-progression-upload').attr('aria-valuenow', 0);
1134
	$('#barre-progression-upload').attr('style', "width: 0%");
1135
	$('#barre-progression-upload .sr-only').text("0/0 observations transmises");
1136
	$('.progress').addClass('active');
1137
	$('.progress').addClass('progress-striped');
2688 mathias 1138
};
2110 aurelien 1139
 
2688 mathias 1140
WidgetSaisie.prototype.initialiserObs = function() {
1141
	this.obsNbre = 0;
1142
	this.nbObsTransmises = 0;
1143
	this.nbObsEnCours = 0;
1144
	this.totalObsATransmettre = 0;
1145
	this.initialiserBarreProgression();
1146
	$(".obs-nbre").text(this.obsNbre);
1249 jpm 1147
	$(".obs-nbre").triggerHandler('changement');
1148
	$("#liste-obs").removeData();
1149
	$('.obs').remove();
1150
	$("#dialogue-bloquer-creer-obs").hide();
2688 mathias 1151
};
1231 jpm 1152
 
2688 mathias 1153
/**
1154
 * Ajoute une boîte de miniatures avec défilement des images,
1155
 * pour une obs de la liste des obs à transmettre
1156
 */
1157
WidgetSaisie.prototype.ajouterImgMiniatureAuTransfert = function() {
1158
	var html = '',
1159
		miniatures = '',
1160
		premiere = true;
1524 aurelien 1161
	if ($("#miniatures img").length >= 1) {
1162
		$("#miniatures img").each(function() {
1163
			var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee';
1164
			premiere = false;
2688 mathias 1165
			var css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature',
1166
				src = $(this).attr("src"),
1167
				alt = $(this).attr("alt"),
1168
				//miniature = '<img class="'+css+' '+visible+'"  alt="'+alt+'"src="'+src+'" />';
1169
				miniature = '<div class="'+css+' '+visible+'"  alt="'+alt+'" style="background-image: url('+src+')" ></div>';
1524 aurelien 1170
			miniatures += miniature;
1171
		});
1172
		visible = ($("#miniatures img").length > 1) ? '' : 'defilement-miniatures-cache';
2328 jpm 1173
		var html =
1524 aurelien 1174
			'<div class="defilement-miniatures">'+
1175
				'<a href="#" class="defilement-miniatures-gauche '+visible+'">&#60;</a>'+
1176
				miniatures+
1177
				'<a href="#" class="defilement-miniatures-droite '+visible+'">&#62;</a>'+
1178
			'</div>';
1237 jpm 1179
	} else {
2700 mathias 1180
		html = '<img class="miniature" alt="Aucune photo"src="'+ this.pasDePhotoIconeUrl +'" />';
1210 jpm 1181
	}
1524 aurelien 1182
	return html;
2688 mathias 1183
};
1210 jpm 1184
 
2688 mathias 1185
WidgetSaisie.prototype.defilerMiniatures = function(element) {
2328 jpm 1186
 
2688 mathias 1187
	var miniatureSelectionne = element.siblings("div.miniature-selectionnee");
1524 aurelien 1188
	miniatureSelectionne.removeClass('miniature-selectionnee');
1189
	miniatureSelectionne.addClass('miniature-cachee');
1190
	var miniatureAffichee = miniatureSelectionne;
2328 jpm 1191
 
1524 aurelien 1192
	if(element.hasClass('defilement-miniatures-gauche')) {
1193
		if(miniatureSelectionne.prev('.miniature').length != 0) {
1194
			miniatureAffichee = miniatureSelectionne.prev('.miniature');
1195
		} else {
1196
			miniatureAffichee = miniatureSelectionne.siblings(".miniature").last();
1197
		}
1198
	} else {
1199
		if(miniatureSelectionne.next('.miniature').length != 0) {
1200
			miniatureAffichee = miniatureSelectionne.next('.miniature');
1201
		} else {
1202
			miniatureAffichee = miniatureSelectionne.siblings(".miniature").first();
1203
		}
1204
	}
1822 aurelien 1205
	//console.log(miniatureAffichee);
1524 aurelien 1206
	miniatureAffichee.addClass('miniature-selectionnee');
1207
	miniatureAffichee.removeClass('miniature-cachee');
2688 mathias 1208
};
1524 aurelien 1209
 
2688 mathias 1210
WidgetSaisie.prototype.ajouterNumNomSel = function() {
1240 jpm 1211
	var nn = '';
1212
	if ($("#taxon").data("numNomSel") == undefined) {
1213
		nn = '<span class="alert-error">[non lié au référentiel]</span>';
1214
	} else {
1215
		nn = '<span class="nn">[nn'+$("#taxon").data("numNomSel")+']</span>';
1216
	}
1217
	return nn;
2688 mathias 1218
};
1240 jpm 1219
 
2688 mathias 1220
WidgetSaisie.prototype.ajouterAutocompletionNoms = function() {
1221
	var lthis = this;
1210 jpm 1222
	$('#taxon').autocomplete({
2328 jpm 1223
		source: function(requete, add){
1210 jpm 1224
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
1225
			requete = "";
2343 aurelien 1226
			if($("#referentiel").val() != "autre") {
2688 mathias 1227
				var url = lthis.getUrlAutocompletionNomsSci();
2343 aurelien 1228
				$.getJSON(url, requete, function(data) {
2688 mathias 1229
					var suggestions = lthis.traiterRetourNomsSci(data);
2343 aurelien 1230
					add(suggestions);
1231
	            });
1232
			}
1210 jpm 1233
        },
1234
        html: true
1235
	});
2328 jpm 1236
 
2904 aurel 1237
	$("#taxon").bind("autocompleteselect", this.surAutocompletionTaxon);
2688 mathias 1238
};
1210 jpm 1239
 
2904 aurel 1240
WidgetSaisie.prototype.surAutocompletionTaxon = function(event, ui) {
1241
	$("#taxon").data(ui.item);
1242
	if (ui.item.retenu == true) {
1243
		$("#taxon").addClass('ns-retenu');
1244
	} else {
1245
		$("#taxon").removeClass('ns-retenu');
1246
	}
1247
};
1248
 
2688 mathias 1249
WidgetSaisie.prototype.getUrlAutocompletionNomsSci = function() {
1215 jpm 1250
	var mots = $('#taxon').val();
2700 mathias 1251
	var url = this.serviceAutocompletionNomSciUrlTpl.replace('{referentiel}', this.nomSciReferentiel);
1476 aurelien 1252
	url = url.replace('{masque}', mots);
1210 jpm 1253
	return url;
2688 mathias 1254
};
1210 jpm 1255
 
2688 mathias 1256
WidgetSaisie.prototype.traiterRetourNomsSci = function(data) {
2328 jpm 1257
	var suggestions = [];
1210 jpm 1258
	if (data.resultat != undefined) {
1259
		$.each(data.resultat, function(i, val) {
1260
			val.nn = i;
2328 jpm 1261
			var nom = {label : '', value : '', nt : '', nomSel : '', nomSelComplet : '', numNomSel : '',
1215 jpm 1262
				nomRet : '', numNomRet : '', famille : '', retenu : false
1263
			};
2700 mathias 1264
			if (suggestions.length >= this.autocompletionElementsNbre) {
1213 jpm 1265
				nom.label = "...";
1266
				nom.value = $('#taxon').val();
1267
				suggestions.push(nom);
1268
				return false;
1269
			} else {
1231 jpm 1270
				nom.label = val.nom_sci_complet;
1271
				nom.value = val.nom_sci_complet;
1215 jpm 1272
				nom.nt = val.num_taxonomique;
1273
				nom.nomSel = val.nom_sci;
1274
				nom.nomSelComplet = val.nom_sci_complet;
1275
				nom.numNomSel = val.nn;
1237 jpm 1276
				nom.nomRet = val.nom_retenu_complet;
1220 jpm 1277
				nom.numNomRet = val["nom_retenu.id"];
1231 jpm 1278
				nom.famille = val.famille;
2243 mathias 1279
				// Tester dans ce sens, permet de considérer "absent" comme "false" => est-ce opportun ?
1280
				// en tout cas c'est harmonisé avec le CeL
1281
				nom.retenu = (val.retenu == 'true') ? true : false;
2328 jpm 1282
 
1213 jpm 1283
				suggestions.push(nom);
2328 jpm 1284
			}
1210 jpm 1285
		});
1286
	}
2328 jpm 1287
 
1210 jpm 1288
	return suggestions;
2688 mathias 1289
};
1210 jpm 1290
 
2700 mathias 1291
WidgetSaisie.prototype.afficherPanneau = function(selecteur) {
1292
	$(selecteur).fadeIn("slow").delay(this.dureeMessage).fadeOut("slow");
2701 mathias 1293
};
2700 mathias 1294
 
2701 mathias 1295
WidgetSaisie.prototype.masquerPanneau = function(selecteur) {
1296
	$(selecteur).hide();
1297
};
1298
 
2697 mathias 1299
// lib hors objet --
1300
 
1301
/**
1302
* Stope l'évènement courant quand on clique sur un lien.
1303
* Utile pour Chrome, Safari...
1304
*/
1305
function arreter(evenement) {
1306
	if (evenement.stopPropagation) {
1307
		evenement.stopPropagation();
1308
	}
1309
	if (evenement.preventDefault) {
1310
		evenement.preventDefault();
1311
	}
1312
	return false;
1313
}
1314
 
1315
/**
1316
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
1317
 * @param jqXHR
1318
 * @returns {String}
1319
 */
1320
function extraireEnteteDebug(jqXHR) {
1321
	var msgDebug = '';
1322
	if (jqXHR.getResponseHeader("X-DebugJrest-Data") != '') {
1323
		var debugInfos = jQuery.parseJSON(jqXHR.getResponseHeader("X-DebugJrest-Data"));
1324
		if (debugInfos != null) {
1325
			$.each(debugInfos, function (cle, valeur) {
1326
				msgDebug += valeur + "\n";
1327
			});
1328
		}
1329
	}
1330
	return msgDebug;
1331
}
1332
 
1210 jpm 1333
/*
1334
 * jQuery UI Autocomplete HTML Extension
1335
 *
1336
 * Copyright 2010, Scott González (http://scottgonzalez.com)
1337
 * Dual licensed under the MIT or GPL Version 2 licenses.
1338
 *
1339
 * http://github.com/scottgonzalez/jquery-ui-extensions
2328 jpm 1340
 *
1210 jpm 1341
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
1342
 */
1343
(function( $ ) {
1215 jpm 1344
	var proto = $.ui.autocomplete.prototype,
1345
		initSource = proto._initSource;
2328 jpm 1346
 
2688 mathias 1347
	WidgetSaisie.prototype.filter = function( array, term ) {
1215 jpm 1348
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
1349
		return $.grep( array, function(value) {
1350
			return matcher.test( $( "<div>" ).html( value.label || value.value || value ).text() );
1351
		});
1352
	}
2328 jpm 1353
 
1215 jpm 1354
	$.extend( proto, {
1355
		_initSource: function() {
1356
			if ( this.options.html && $.isArray(this.options.source) ) {
1357
				this.source = function( request, response ) {
1358
					response( filter( this.options.source, request.term ) );
1359
				};
1360
			} else {
1361
				initSource.call( this );
1362
			}
1363
		},
1364
		_renderItem: function( ul, item) {
1365
			if (item.retenu == true) {
1366
				item.label = "<strong>"+item.label+"</strong>";
1367
			}
2328 jpm 1368
 
1215 jpm 1369
			return $( "<li></li>" )
1370
				.data( "item.autocomplete", item )
1371
				.append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) )
1372
				.appendTo( ul );
1373
		}
1210 jpm 1374
	});
1375
})( jQuery );