Subversion Repositories eFlore/Applications.cel

Rev

Rev 2988 | 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","");
2839 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,
2839 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;
2988 mathias 345
	} else if(this.nomSciReferentiel == 'florical') {
346
		latLng = new google.maps.LatLng(-21.40722, 165.4541);// Nouvelle-Calédonie
347
		zoomDefaut = 7;
348
	} else if(this.nomSciReferentiel == 'aublet') {
349
		latLng = new google.maps.LatLng(3.80287, -53.09692);// Guyane
350
		zoomDefaut = 7;
1476 aurelien 351
	} else {
2736 mathias 352
		latLng = new google.maps.LatLng(46.30871, 2.54395);// Centre de la France - @WARNING Prémilhat !! :)
2688 mathias 353
		zoomDefaut = 5;
1476 aurelien 354
	}
2328 jpm 355
 
1210 jpm 356
	var options = {
1476 aurelien 357
		zoom: zoomDefaut,
1210 jpm 358
		center: latLng,
359
		mapTypeId: google.maps.MapTypeId.HYBRID,
360
		mapTypeControlOptions: {
361
			mapTypeIds: ['OSM', google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.HYBRID, google.maps.MapTypeId.SATELLITE, google.maps.MapTypeId.TERRAIN]}
362
	};
363
 
364
	// Ajout de la couche OSM à la carte
365
	osmMapType = new google.maps.ImageMapType({
366
		getTileUrl: function(coord, zoom) {
367
			return "http://tile.openstreetmap.org/" +
368
			zoom + "/" + coord.x + "/" + coord.y + ".png";
369
		},
370
		tileSize: new google.maps.Size(256, 256),
371
		isPng: true,
372
		alt: 'OpenStreetMap',
373
		name: 'OSM',
374
		maxZoom: 19
375
	});
2328 jpm 376
 
1210 jpm 377
	// Création de la carte Google
2688 mathias 378
	this.map = new google.maps.Map(document.getElementById('map-canvas'), options); //affiche la google map dans la div map_canvas
379
	this.map.mapTypes.set('OSM', osmMapType);
2328 jpm 380
 
1216 jpm 381
	// Création du Geocoder
2688 mathias 382
	this.geocoder = new google.maps.Geocoder();
2328 jpm 383
 
1210 jpm 384
	// Marqueur google draggable
2688 mathias 385
	this.marker = new google.maps.Marker({
386
		map: this.map,
1210 jpm 387
		draggable: true,
388
		title: 'Ma station',
2700 mathias 389
		icon: this.googleMapMarqueurUrl,
1210 jpm 390
		position: latLng
391
	});
2328 jpm 392
 
2688 mathias 393
	this.initialiserMarker(latLng);
2328 jpm 394
 
2715 mathias 395
	// Tentative de geocalisation depuis le navigateur
396
	if (localisationNavigateur && navigator.geolocation) {
1210 jpm 397
		navigator.geolocation.getCurrentPosition(function(position) {
398
			var latitude = position.coords.latitude;
399
			var longitude = position.coords.longitude;
2713 mathias 400
			lthis.latLng = new google.maps.LatLng(latitude, longitude);
2714 mathias 401
			lthis.deplacerMarker(lthis.latLng);
1210 jpm 402
		});
403
	}
2127 mathias 404
 
405
	// intéraction carte
2688 mathias 406
	$("#geolocaliser").on('click', this.geolocaliser.bind(this));
407
	google.maps.event.addListener(this.marker, 'dragend', this.surDeplacementMarker.bind(this));
408
	google.maps.event.addListener(this.map, 'click', this.surClickDansCarte.bind(this));
409
};
1210 jpm 410
 
2688 mathias 411
WidgetSaisie.prototype.initialiserMarker = function(latLng) {
412
	if (this.marker != undefined) {
413
		this.marker.setPosition(latLng);
414
		this.map.setCenter(latLng);
2859 mathias 415
		// au chargement de la carte, la position est nulle
416
		this.viderMarkerPosition();
1485 aurelien 417
	}
2688 mathias 418
};
1485 aurelien 419
 
2688 mathias 420
WidgetSaisie.prototype.deplacerMarker = function(latLng) {
421
	if (this.marker != undefined) {
422
		this.marker.setPosition(latLng);
423
		this.map.setCenter(latLng);
424
		this.mettreAJourMarkerPosition(latLng);
425
		this.trouverCommune(latLng);
1210 jpm 426
	}
2688 mathias 427
};
1210 jpm 428
 
2859 mathias 429
WidgetSaisie.prototype.viderMarkerPosition = function() {
430
	this.remplirChampLatitude(null);
431
	this.remplirChampLongitude(null);
432
};
433
 
2688 mathias 434
WidgetSaisie.prototype.mettreAJourMarkerPosition = function(latLng) {
1210 jpm 435
	var lat = latLng.lat().toFixed(5);
2328 jpm 436
	var lng = latLng.lng().toFixed(5);
2688 mathias 437
	this.remplirChampLatitude(lat);
438
	this.remplirChampLongitude(lng);
439
};
1210 jpm 440
 
2859 mathias 441
/**
442
 * Définit la valeur de latitude, à travers la "value" du champ "#latitude";
443
 * pour définir une valeur vraiment vide (et non 0), passer null en argument
444
 */
2688 mathias 445
WidgetSaisie.prototype.remplirChampLatitude = function(latDecimale) {
2859 mathias 446
	var lat = '';
447
	if (latDecimale !== null) {
448
		lat = Math.round(latDecimale * 100000) / 100000;
449
	}
1210 jpm 450
	$('#latitude').val(lat);
2688 mathias 451
};
1210 jpm 452
 
2859 mathias 453
/**
454
 * Définit la valeur de longitude, à travers la "value" du champ "#longitude";
455
 * pour définir une valeur vraiment vide (et non 0), passer null en argument
456
 */
2688 mathias 457
WidgetSaisie.prototype.remplirChampLongitude = function(lngDecimale) {
2859 mathias 458
	var lng = '';
459
	if (lngDecimale !== null) {
460
		lng = Math.round(lngDecimale * 100000) / 100000;
461
	}
1210 jpm 462
	$('#longitude').val(lng);
2688 mathias 463
};
1210 jpm 464
 
2688 mathias 465
WidgetSaisie.prototype.trouverCommune = function(pos) {
2736 mathias 466
	if (this.latLng == null) { // tentative de protection contre le démon de Prémilhat
467
		return;
468
	}
2700 mathias 469
	var lthis = this;
1210 jpm 470
	$(function() {
2328 jpm 471
 
2700 mathias 472
		var url_service = lthis.serviceNomCommuneUrl;
2328 jpm 473
 
1476 aurelien 474
		var urlNomCommuneFormatee = url_service.replace('{lat}', pos.lat()).replace('{lon}', pos.lng());
1210 jpm 475
		$.ajax({
476
			url : urlNomCommuneFormatee,
477
			type : "GET",
478
			dataType : "jsonp",
479
			beforeSend : function() {
2328 jpm 480
				$(".commune-info").empty();
1220 jpm 481
				$("#dialogue-erreur .alert-txt").empty();
1210 jpm 482
			},
483
			success : function(data, textStatus, jqXHR) {
484
				$(".commune-info").empty();
485
				$("#commune-nom").append(data.nom);
486
				$("#commune-code-insee").append(data.codeINSEE);
487
				$("#marqueur-commune").data('commune', {'nom' : data.nom, 'codeInsee' : data.codeINSEE});
488
			},
489
			statusCode : {
490
			    500 : function(jqXHR, textStatus, errorThrown) {
2700 mathias 491
					if (this.debug) {
1220 jpm 492
						$("#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 493
						reponse = jQuery.parseJSON(jqXHR.responseText);
494
						var erreurMsg = "";
495
						if (reponse != null) {
496
							$.each(reponse, function (cle, valeur) {
497
								erreurMsg += valeur + "<br />";
498
							});
499
						}
2328 jpm 500
 
1220 jpm 501
						$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur 500 : '+errorThrown+"<br />"+erreurMsg+'</p>');
1210 jpm 502
					}
503
			    }
504
			},
505
			error : function(jqXHR, textStatus, errorThrown) {
2700 mathias 506
				if (this.debug) {
2707 mathias 507
					$("#dialogue-erreur .alert-txt").append('<p class="msg">Une erreur Ajax est survenue lors de la recherche de la commune.</p>');
1210 jpm 508
					reponse = jQuery.parseJSON(jqXHR.responseText);
509
					var erreurMsg = "";
510
					if (reponse != null) {
511
						$.each(reponse, function (cle, valeur) {
512
							erreurMsg += valeur + "<br />";
513
						});
514
					}
2328 jpm 515
 
1220 jpm 516
					$("#dialogue-erreur .alert-txt").append('<p class="msg-erreur">Erreur Ajax : '+errorThrown+' (type : '+textStatus+') <br />'+erreurMsg+'</p>');
1210 jpm 517
				}
518
			},
519
			complete : function(jqXHR, textStatus) {
1249 jpm 520
				var debugMsg = extraireEnteteDebug(jqXHR);
521
				if (debugMsg != '') {
2700 mathias 522
					if (this.debug) {
1220 jpm 523
						$("#dialogue-erreur .alert-txt").append('<pre class="msg-debug msg">Débogage : '+debugMsg+'</pre>');
1210 jpm 524
					}
525
				}
526
				if ($("#dialogue-erreur .msg").length > 0) {
1220 jpm 527
					$("#dialogue-erreur").show();
1210 jpm 528
				}
529
			}
530
		});
531
	});
2688 mathias 532
};
1249 jpm 533
 
2688 mathias 534
WidgetSaisie.prototype.testerLancementRequeteIdentite = function(event) {
1249 jpm 535
	if (event.which == 13) {
2688 mathias 536
		this.requeterIdentite();
537
		this.event.preventDefault();
538
		this.event.stopPropagation();
1249 jpm 539
	}
2688 mathias 540
};
1249 jpm 541
 
2688 mathias 542
WidgetSaisie.prototype.requeterIdentite = function() {
543
	var lthis = this;
1249 jpm 544
	var courriel = $("#courriel").val();
2701 mathias 545
	var urlAnnuaire = this.serviceAnnuaireIdUrl + courriel;
2709 mathias 546
	if (courriel != '') {
547
		$.ajax({
548
			url : urlAnnuaire,
549
			type : "GET",
550
			success : function(data, textStatus, jqXHR) {
2710 mathias 551
				if (lthis.debug) {
552
					console.log('SUCCESS: '+textStatus);
553
				}
2709 mathias 554
				if (data != undefined && data[courriel] != undefined) {
555
					var infos = data[courriel];
2710 mathias 556
					lthis.surSuccesCompletionCourriel(infos, courriel);
2709 mathias 557
				} else {
558
					lthis.surErreurCompletionCourriel();
559
				}
560
			},
561
			error : function(jqXHR, textStatus, errorThrown) {
2710 mathias 562
				if (lthis.debug) {
563
					console.log('ERREUR: '+textStatus);
564
				}
2688 mathias 565
				lthis.surErreurCompletionCourriel();
2709 mathias 566
			},
567
			complete : function(jqXHR, textStatus) {
2710 mathias 568
				if (lthis.debug) {
569
					console.log('COMPLETE: '+textStatus);
570
				}
2709 mathias 571
				// @TODO harmoniser class="hidden" VS style="display:none;"
572
				$("#zone-prenom-nom").removeClass("hidden").show();
573
				$("#zone-courriel-confirmation").removeClass("hidden").show();
1241 jpm 574
			}
2709 mathias 575
		});
576
	}
2688 mathias 577
};
1210 jpm 578
 
2710 mathias 579
WidgetSaisie.prototype.surSuccesCompletionCourriel = function(infos, courriel) {
580
	$("#id_utilisateur").val(infos.id);
581
	$("#prenom").val(infos.prenom);
582
	$("#nom").val(infos.nom);
583
	$("#courriel_confirmation").val(courriel);
584
	$("#prenom, #nom, #courriel_confirmation").attr('disabled', 'disabled');
585
	this.focusChampFormulaire();
586
	this.masquerPanneau("#dialogue-courriel-introuvable");
587
};
2707 mathias 588
 
2688 mathias 589
WidgetSaisie.prototype.surErreurCompletionCourriel = function() {
1249 jpm 590
	$("#prenom, #nom, #courriel_confirmation").val('');
591
	$("#prenom, #nom, #courriel_confirmation").removeAttr('disabled');
2700 mathias 592
	this.afficherPanneau("#dialogue-courriel-introuvable");
2688 mathias 593
};
2256 aurelien 594
 
2710 mathias 595
WidgetSaisie.prototype.focusChampFormulaire = function() {
596
	$("#date").focus();
597
};
598
 
2688 mathias 599
WidgetSaisie.prototype.chargerInfoObs = function() {
2700 mathias 600
	var urlObs = this.serviceObsUrl + '/' + this.obsId;
2707 mathias 601
	var lthis = this;
2256 aurelien 602
	$.ajax({
603
		url: urlObs,
604
		type: 'GET',
605
		success: function(data, textStatus, jqXHR) {
606
			if (data != undefined && data != "") {
2758 aurelien 607
				lthis.prechargerForm(data);
2707 mathias 608
			} else {
609
				lthis.surErreurChargementInfosObs();
2328 jpm 610
			}
2256 aurelien 611
		},
612
		error: function(jqXHR, textStatus, errorThrown) {
2707 mathias 613
			lthis.surErreurChargementInfosObs();
2256 aurelien 614
		}
615
	});
2688 mathias 616
};
2256 aurelien 617
 
2707 mathias 618
// @TODO faire mieux que ça !
619
WidgetSaisie.prototype.surErreurChargementInfosObs = function() {
620
	alert("Erreur lors du chargement de l'observation");
621
}
622
 
2688 mathias 623
WidgetSaisie.prototype.prechargerForm = function(data) {
2328 jpm 624
 
2256 aurelien 625
	$("#milieu").val(data.milieu);
2328 jpm 626
 
2256 aurelien 627
	$("#carte-recherche").val(data.zoneGeo);
628
	$("#commune-nom").text(data.zoneGeo);
2328 jpm 629
 
2257 aurelien 630
	if(data.hasOwnProperty("codeZoneGeo")) {
631
		// TODO: trouver un moyen qui fonctionne lorsqu'on aura d'autres référentiels que INSEE
632
		$("#commune-code-insee").text(data.codeZoneGeo.replace('INSEE-C:', ''));
633
	}
2328 jpm 634
 
2256 aurelien 635
	if(data.hasOwnProperty("latitude") && data.hasOwnProperty("longitude")) {
636
		var latLng = new google.maps.LatLng(data.latitude, data.longitude);
2688 mathias 637
		this.mettreAJourMarkerPosition(latLng);
638
		this.marker.setPosition(latLng);
639
		this.map.setCenter(latLng);
640
		this.map.setZoom(16);
2256 aurelien 641
	}
2688 mathias 642
};
2256 aurelien 643
 
2688 mathias 644
WidgetSaisie.prototype.configurerFormValidator = function() {
1210 jpm 645
	$.validator.addMethod(
2328 jpm 646
		"dateCel",
647
		function (value, element) {
648
			return value == "" || (/^[0-9]{2}[-\/][0-9]{2}[-\/][0-9]{4}$/.test(value));
649
		},
1213 jpm 650
		"Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.");
1210 jpm 651
	$.extend($.validator.defaults, {
652
		errorClass: "control-group error",
653
		validClass: "control-group success",
654
		errorElement: "span",
1213 jpm 655
		highlight: function(element, errorClass, validClass) {
1210 jpm 656
			if (element.type === 'radio') {
657
				this.findByName(element.name).parent("div").parent("div").removeClass(validClass).addClass(errorClass);
2328 jpm 658
			} else {
1210 jpm 659
				$(element).parent("div").parent("div").removeClass(validClass).addClass(errorClass);
660
			}
661
		},
1213 jpm 662
		unhighlight: function(element, errorClass, validClass) {
1210 jpm 663
			if (element.type === 'radio') {
664
				this.findByName(element.name).parent("div").parent("div").removeClass(errorClass).addClass(validClass);
665
			} else {
1213 jpm 666
				if ($(element).attr('id') == 'taxon') {
1493 aurelien 667
					if ($("#taxon").val() != '') {
668
						// Si le taxon n'est pas lié au référentiel, on vide le data associé
2688 mathias 669
						if ($("#taxon").data("value") != $("#taxon").val()) {
1493 aurelien 670
							$("#taxon").data("numNomSel","");
671
							$("#taxon").data("nomRet","");
672
							$("#taxon").data("numNomRet","");
673
							$("#taxon").data("nt","");
674
							$("#taxon").data("famille","");
1213 jpm 675
						}
1493 aurelien 676
						$("#taxon-input-groupe").removeClass(errorClass).addClass(validClass);
677
						$(element).next(" span.help-inline").remove();
1213 jpm 678
					}
679
				} else {
680
					$(element).parent("div").parent("div").removeClass(errorClass).addClass(validClass);
681
					$(element).next(" span.help-inline").remove();
682
				}
1210 jpm 683
			}
684
		}
685
	});
2688 mathias 686
};
1249 jpm 687
 
2688 mathias 688
WidgetSaisie.prototype.definirReglesFormValidator = function() {
1210 jpm 689
	$("#form-observateur").validate({
690
		rules: {
691
			courriel : {
692
				required : true,
693
				email : true},
694
			courriel_confirmation : {
695
				required : true,
696
				equalTo: "#courriel"}
697
		}
698
	});
699
	$("#form-station").validate({
700
		rules: {
701
			latitude : {
702
				range: [-90, 90]},
703
			longitude : {
704
				range: [-180, 180]}
705
		}
706
	});
707
	$("#form-obs").validate({
708
		rules: {
2992 killian 709
			date: {
710
				required: true,
711
				'dateCel' : true
712
			},
1210 jpm 713
			taxon : "required"
714
		}
715
	});
2688 mathias 716
};
1249 jpm 717
 
2707 mathias 718
WidgetSaisie.prototype.configurerDatePicker = function(selector) {
1249 jpm 719
	$.datepicker.setDefaults($.datepicker.regional["fr"]);
2707 mathias 720
	$(selector).datepicker({
1990 jpm 721
		dateFormat: "dd/mm/yy",
722
		maxDate: new Date,
1249 jpm 723
		showOn: "button",
1990 jpm 724
		buttonImageOnly: true,
2700 mathias 725
		buttonImage: this.calendrierIconeUrl,
1249 jpm 726
		buttonText: "Afficher le calendrier pour saisir la date.",
2707 mathias 727
		showButtonPanel: true,
728
		onSelect: function(date) {
729
			$(this).valid();
730
		}
1210 jpm 731
	});
2707 mathias 732
	$(selector + ' + img.ui-datepicker-trigger').appendTo(selector + '-icone.add-on');
2688 mathias 733
};
1249 jpm 734
 
2688 mathias 735
WidgetSaisie.prototype.fermerPanneauAlert = function() {
1249 jpm 736
	$(this).parentsUntil(".zone-alerte", ".alert").hide();
2688 mathias 737
};
1249 jpm 738
 
2688 mathias 739
WidgetSaisie.prototype.formaterNom = function() {
1249 jpm 740
	$(this).val($(this).val().toUpperCase());
2688 mathias 741
};
1249 jpm 742
 
2688 mathias 743
WidgetSaisie.prototype.formaterPrenom = function() {
1249 jpm 744
	var prenom = new Array();
745
	var mots = $(this).val().split(' ');
746
	for (var i = 0; i < mots.length; i++) {
747
		var mot = mots[i];
748
		if (mot.indexOf('-') >= 0) {
749
			var prenomCompose = new Array();
750
			var motsComposes = mot.split('-');
751
		    for (var j = 0; j < motsComposes.length; j++) {
752
		    	var motSimple = motsComposes[j];
753
		    	var motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
754
		    	prenomCompose.push(motMajuscule);
755
		    }
756
		    prenom.push(prenomCompose.join('-'));
757
		} else {
758
			var motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
759
			prenom.push(motMajuscule);
760
		}
761
	}
762
	$(this).val(prenom.join(' '));
2688 mathias 763
};
1249 jpm 764
 
2688 mathias 765
WidgetSaisie.prototype.basculerAffichageAide = function()  {
1249 jpm 766
	if ($(this).hasClass('btn-warning')) {
2707 mathias 767
		$(".has-tooltip").tooltip('enable');
1249 jpm 768
		$(this).removeClass('btn-warning').addClass('btn-success');
769
		$('#btn-aide-txt', this).text("Désactiver l'aide");
770
	} else {
2707 mathias 771
		$(".has-tooltip").tooltip('disable');
1249 jpm 772
		$(this).removeClass('btn-success').addClass('btn-warning');
773
		$('#btn-aide-txt', this).text("Activer l'aide");
774
	}
2688 mathias 775
};
1249 jpm 776
 
2688 mathias 777
WidgetSaisie.prototype.bloquerCopierCollerCourriel = function() {
2700 mathias 778
	this.afficherPanneau("#dialogue-bloquer-copier-coller");
1249 jpm 779
	return false;
2688 mathias 780
};
1249 jpm 781
 
2688 mathias 782
WidgetSaisie.prototype.basculerAffichageCoord = function() {
1249 jpm 783
	$("a.afficher-coord").toggle();
784
	$("#coordonnees-geo").toggle('slow');
785
	//valeur false pour que le lien ne soit pas suivi
786
	return false;
2688 mathias 787
};
1249 jpm 788
 
2688 mathias 789
/**
790
 * Ajoute une observation saisie dans le formulaire à la liste des observations à transmettre
791
 */
792
WidgetSaisie.prototype.ajouterObs = function() {
2710 mathias 793
	// Fermeture automatique des dialogue de transmission de données
794
	// @WARNING TEST
795
	$('#dialogue-obs-transaction-ko').hide();
796
	$('#dialogue-obs-transaction-ok').hide();
797
 
2688 mathias 798
	if (this.validerFormulaire() == true) {
2854 mathias 799
		this.masquerPanneau('#dialogue-form-invalide');
2688 mathias 800
		this.obsNbre = this.obsNbre + 1;
801
		$(".obs-nbre").text(this.obsNbre);
1249 jpm 802
		$(".obs-nbre").triggerHandler('changement');
2688 mathias 803
		this.afficherObs();
804
		this.stockerObsData();
805
		this.supprimerMiniatures();
2700 mathias 806
		if(! this.especeImposee) {
1856 aurelien 807
			$("#taxon").val("");
808
			$("#taxon").data("numNomSel",undefined);
809
		}
2688 mathias 810
		$('#barre-progression-upload').attr('aria-valuemax', this.obsNbre);
811
		$('#barre-progression-upload .sr-only').text('0/'+this.obsNbre+" observations transmises");
1249 jpm 812
	} else {
2700 mathias 813
		this.afficherPanneau('#dialogue-form-invalide');
1249 jpm 814
	}
2688 mathias 815
};
1249 jpm 816
 
2688 mathias 817
/**
818
 * Affiche une observation dans la liste des observations à transmettre
819
 */
820
WidgetSaisie.prototype.afficherObs = function() {
2746 aurelien 821
 
822
	var commune = $("#commune-nom").text();
823
	commune = commune.trim() != "" ? commune : $("#carte-recherche").val();
824
 
825
	var code_insee = $('#commune-code-insee').text();
826
	code_insee = code_insee.trim() != "" ? "("+code_insee+")" : "";
2854 mathias 827
 
828
	if (this.debug) {
829
		console.log(commune+'  -  '+code_insee);
830
	}
2746 aurelien 831
 
1249 jpm 832
	$("#liste-obs").prepend(
2688 mathias 833
		'<div id="obs'+this.obsNbre+'" class="row-fluid obs obs'+this.obsNbre+'">'+
1249 jpm 834
			'<div class="span12">'+
1253 jpm 835
				'<div class="well">'+
2707 mathias 836
					'<div class="obs-action pull-right has-tooltip" data-placement="bottom" '+
1253 jpm 837
						'title="Supprimer cette observation de la liste à transmettre">'+
2688 mathias 838
						'<button class="btn btn-danger supprimer-obs" value="'+this.obsNbre+'" title="'+this.obsNbre+'">'+
1249 jpm 839
							'<i class="icon-trash icon-white"></i>'+
840
						'</button>'+
2328 jpm 841
					'</div> '+
842
					'<div class="row-fluid">'+
1249 jpm 843
						'<div class="thumbnail span2">'+
2688 mathias 844
						this.ajouterImgMiniatureAuTransfert()+
1240 jpm 845
						'</div>'+
1249 jpm 846
						'<div class="span9">'+
847
							'<ul class="unstyled">'+
848
								'<li>'+
849
									'<span class="nom-sci">'+$("#taxon").val()+'</span> '+
2688 mathias 850
									this.ajouterNumNomSel()+'<span class="referentiel-obs">'+
2700 mathias 851
									($("#taxon").data("numNomSel") == undefined ? '' : '['+ this.nomSciReferentiel +']')+'</span>'+
1249 jpm 852
									' observé à '+
2746 aurelien 853
									'<span class="commune">'+commune+'</span> '+
854
									code_insee+' ['+$("#latitude").val()+' / '+$("#longitude").val()+']'+
1249 jpm 855
									' le '+
856
									'<span class="date">'+$("#date").val()+'</span>'+
857
								'</li>'+
858
								'<li>'+
859
									'<span>Lieu-dit :</span> '+$('#lieudit').val()+' '+
860
									'<span>Station :</span> '+$('#station').val()+' '+
861
									'<span>Milieu :</span> '+$('#milieu').val()+' '+
862
								'</li>'+
863
								'<li>'+
864
									'Commentaires : <span class="discretion">'+$("#notes").val()+'</span>'+
865
								'</li>'+
866
							'</ul>'+
867
						'</div>'+
1237 jpm 868
					'</div>'+
1249 jpm 869
				'</div>'+
870
			'</div>'+
871
		'</div>');
2707 mathias 872
	$('#zone-liste-obs').removeClass("hidden").show();
2688 mathias 873
};
1249 jpm 874
 
2688 mathias 875
WidgetSaisie.prototype.stockerObsData = function() {
876
	var lthis = this;
2746 aurelien 877
 
878
	var commune = $("#commune-nom").text();
879
	commune = commune.trim() == "" ? commune : $("#carte-recherche").val();
880
 
2688 mathias 881
	$("#liste-obs").data('obsId'+this.obsNbre, {
2328 jpm 882
		'date' : $("#date").val(),
2710 mathias 883
		'notes' : $("#notes").val().trim(),
2328 jpm 884
 
1249 jpm 885
		'nom_sel' : $("#taxon").val(),
886
		'num_nom_sel' : $("#taxon").data("numNomSel"),
887
		'nom_ret' : $("#taxon").data("nomRet"),
888
		'num_nom_ret' : $("#taxon").data("numNomRet"),
889
		'num_taxon' : $("#taxon").data("nt"),
890
		'famille' : $("#taxon").data("famille"),
2700 mathias 891
		'referentiel' : ($("#taxon").data("numNomSel") == undefined ? '' : lthis.nomSciReferentiel),
2328 jpm 892
 
1249 jpm 893
		'latitude' : $("#latitude").val(),
894
		'longitude' : $("#longitude").val(),
2746 aurelien 895
		'commune_nom' : commune,
1249 jpm 896
		'commune_code_insee' : $("#commune-code-insee").text(),
1251 jpm 897
		'lieudit' : $("#lieudit").val(),
1249 jpm 898
		'station' : $("#station").val(),
899
		'milieu' : $("#milieu").val(),
2328 jpm 900
 
1249 jpm 901
		//Ajout des champs images
2688 mathias 902
		'image_nom' : lthis.getNomsImgsOriginales(),
2709 mathias 903
		'image_b64' : lthis.getB64ImgsOriginales(),
904
 
905
		// Ajout des champs étendus de l'obs
906
		'obs_etendue': lthis.getObsChpEtendus()
1210 jpm 907
	});
2688 mathias 908
};
1249 jpm 909
 
2709 mathias 910
/**
911
 * Retourne un Array contenant les valeurs des champs étendus
912
 */
913
WidgetSaisie.prototype.getObsChpEtendus = function() {
914
	var champs = [];
915
 
916
	$('.obs-chp-etendu').each(function() {
917
		var valeur = $(this).val(),
918
			cle = $(this).attr('name'),
919
			label = $(this).data('label');
920
		if (valeur != '') {
921
			var chpEtendu = {cle: cle, label: label, valeur: valeur};
922
			champs.push(chpEtendu);
923
		}
924
	});
925
	return champs;
926
}
927
 
2688 mathias 928
WidgetSaisie.prototype.surChangementReferentiel = function() {
2700 mathias 929
	this.nomSciReferentiel = $('#referentiel').val();
1476 aurelien 930
	$('#taxon').val('');
2688 mathias 931
	this.initialiserAutocompleteCommune();
2715 mathias 932
	this.initialiserGoogleMap(false);
2688 mathias 933
};
1476 aurelien 934
 
2688 mathias 935
WidgetSaisie.prototype.surChangementNbreObs = function() {
936
	if (this.obsNbre == 0) {
1249 jpm 937
		$("#transmettre-obs").attr('disabled', 'disabled');
938
		$("#ajouter-obs").removeAttr('disabled');
2700 mathias 939
	} else if (this.obsNbre > 0 && this.obsNbre < this.obsMaxNbre) {
1249 jpm 940
		$("#transmettre-obs").removeAttr('disabled');
941
		$("#ajouter-obs").removeAttr('disabled');
2700 mathias 942
	} else if (this.obsNbre >= this.obsMaxNbre) {
1249 jpm 943
		$("#ajouter-obs").attr('disabled', 'disabled');
2700 mathias 944
		this.afficherPanneau("#dialogue-bloquer-creer-obs");
1249 jpm 945
	}
2688 mathias 946
};
1249 jpm 947
 
2688 mathias 948
WidgetSaisie.prototype.transmettreObs = function() {
1249 jpm 949
	var observations = $("#liste-obs").data();
2710 mathias 950
	if (this.debug) {
951
		console.log(observations);
952
	}
1249 jpm 953
	if (observations == undefined || jQuery.isEmptyObject(observations)) {
2700 mathias 954
		this.afficherPanneau("#dialogue-zero-obs");
1249 jpm 955
	} else {
2688 mathias 956
		this.nbObsEnCours = 1;
957
		this.nbObsTransmises = 0;
958
		this.totalObsATransmettre = $.map(observations, function(n, i) { return i; }).length;
959
		this.depilerObsPourEnvoi();
2110 aurelien 960
	}
961
	return false;
2688 mathias 962
};
2110 aurelien 963
 
2688 mathias 964
WidgetSaisie.prototype.depilerObsPourEnvoi = function() {
2110 aurelien 965
	var observations = $("#liste-obs").data();
966
	// la boucle est factice car on utilise un tableau
967
	// dont on a besoin de n'extraire que le premier élément
968
	// or javascript n'a pas de méthode cross browsers pour extraire les clés
969
	// TODO: utiliser var.keys quand ça sera plus répandu
970
	// ou bien utiliser un vrai tableau et pas un objet
2328 jpm 971
	for (var obsNum in observations) {
2697 mathias 972
		var obsATransmettre = {
2700 mathias 973
			'projet' : this.tagProjet,
974
			'tag-obs' : this.tagObs,
975
			'tag-img' : this.tagImg
2688 mathias 976
		};
2697 mathias 977
		var utilisateur = {
978
			id_utilisateur : $("#id_utilisateur").val(),
979
			prenom : $("#prenom").val(),
980
			nom : $("#nom").val(),
981
			courriel : $("#courriel").val()
982
		};
2110 aurelien 983
		obsATransmettre['utilisateur'] = utilisateur;
984
		obsATransmettre[obsNum] = observations[obsNum];
985
		var idObsNumerique = obsNum.replace('obsId', '');
986
		if(idObsNumerique != "") {
2688 mathias 987
			this.envoyerObsAuCel(idObsNumerique, obsATransmettre);
2110 aurelien 988
		}
2328 jpm 989
 
2110 aurelien 990
		break;
1249 jpm 991
	}
2688 mathias 992
};
1249 jpm 993
 
2688 mathias 994
WidgetSaisie.prototype.mettreAJourProgression = function() {
995
	this.nbObsTransmises++;
996
	var pct = (this.nbObsTransmises/this.totalObsATransmettre)*100;
997
	$('#barre-progression-upload').attr('aria-valuenow', this.nbObsTransmises);
2110 aurelien 998
	$('#barre-progression-upload').attr('style', "width: "+pct+"%");
2688 mathias 999
	$('#barre-progression-upload .sr-only').text(this.nbObsTransmises+"/"+this.totalObsATransmettre+" observations transmises");
2110 aurelien 1000
 
2688 mathias 1001
	if(this.obsNbre == 0) {
2110 aurelien 1002
		$('.progress').removeClass('active');
1003
		$('.progress').removeClass('progress-striped');
1004
	}
2688 mathias 1005
};
2110 aurelien 1006
 
2688 mathias 1007
WidgetSaisie.prototype.envoyerObsAuCel = function(idObs, observation) {
1008
	var lthis = this;
1249 jpm 1009
	var erreurMsg = "";
1010
	$.ajax({
2700 mathias 1011
		url : lthis.serviceSaisieUrl,
1249 jpm 1012
		type : "POST",
2110 aurelien 1013
		data : observation,
1249 jpm 1014
		dataType : "json",
1015
		beforeSend : function() {
1251 jpm 1016
			$("#dialogue-obs-transaction-ko").hide();
1017
			$("#dialogue-obs-transaction-ok").hide();
2697 mathias 1018
			$('.alert-txt').empty();
2709 mathias 1019
			$(".alert-txt .msg-erreur").remove();
1020
			$(".alert-txt .msg-debug").remove();
1249 jpm 1021
			$("#chargement").show();
1022
		},
1023
		success : function(data, textStatus, jqXHR) {
2110 aurelien 1024
			// mise à jour du nombre d'obs à transmettre
1025
			// et suppression de l'obs
2688 mathias 1026
			lthis.supprimerObsParId(idObs);
2700 mathias 1027
			lthis.nbObsEnCours++;
2110 aurelien 1028
			// mise à jour du statut
2688 mathias 1029
			lthis.mettreAJourProgression();
2700 mathias 1030
			if(lthis.obsNbre > 0) {
2110 aurelien 1031
				// dépilement de la suivante
2688 mathias 1032
				lthis.depilerObsPourEnvoi();
2110 aurelien 1033
			}
1249 jpm 1034
		},
1035
		statusCode : {
1036
			500 : function(jqXHR, textStatus, errorThrown) {
1037
				erreurMsg += "Erreur 500 :\ntype : "+textStatus+' '+errorThrown+"\n";
1038
		    }
1039
		},
1040
		error : function(jqXHR, textStatus, errorThrown) {
1041
			erreurMsg += "Erreur Ajax :\ntype : "+textStatus+' '+errorThrown+"\n";
1042
			try {
1043
				reponse = jQuery.parseJSON(jqXHR.responseText);
1044
				if (reponse != null) {
1045
					$.each(reponse, function (cle, valeur) {
1046
						erreurMsg += valeur + "\n";
1047
					});
1048
				}
1049
			} catch(e) {
2700 mathias 1050
				erreurMsg += "Erreur inconnue: " + jqXHR.responseText;
1249 jpm 1051
			}
1052
		},
1053
		complete : function(jqXHR, textStatus) {
1054
			var debugMsg = extraireEnteteDebug(jqXHR);
2328 jpm 1055
 
1249 jpm 1056
			if (erreurMsg != '') {
2700 mathias 1057
				if (this.debug) {
1249 jpm 1058
					$("#dialogue-obs-transaction-ko .alert-txt").append('<pre class="msg-erreur">'+erreurMsg+'</pre>');
1059
					$("#dialogue-obs-transaction-ko .alert-txt").append('<pre class="msg-debug">Débogage : '+debugMsg+'</pre>');
1210 jpm 1060
				}
1901 mathias 1061
				var hrefCourriel = "mailto:cel_remarques@tela-botanica.org?"+
2700 mathias 1062
					"subject=Dysfonctionnement du widget de saisie "+ this.tagProjet +
1902 mathias 1063
					"&body="+erreurMsg+"%0D%0ADébogage :%0D%0A"+debugMsg;
2328 jpm 1064
 
2110 aurelien 1065
				// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
1066
				$('#obs'+idObs+' div div').addClass('obs-erreur');
1067
				window.location.hash = "obs"+idObs;
2328 jpm 1068
 
1249 jpm 1069
				$('#dialogue-obs-transaction-ko .alert-txt').append($("#tpl-transmission-ko").clone()
1070
					.find('.courriel-erreur')
1071
					.attr('href', hrefCourriel)
1072
					.end()
1073
					.html());
1074
				$("#dialogue-obs-transaction-ko").show();
2110 aurelien 1075
				$("#chargement").hide();
2688 mathias 1076
				lthis.initialiserBarreProgression();
1249 jpm 1077
			} else {
2700 mathias 1078
				if (lthis.debug) {
1249 jpm 1079
					$("#dialogue-obs-transaction-ok .alert-txt").append('<pre class="msg-debug">Débogage : '+debugMsg+'</pre>');
1080
				}
2700 mathias 1081
				if(lthis.obsNbre == 0) {
2110 aurelien 1082
					setTimeout(function() {
1083
						$("#chargement").hide();
1084
						$('#dialogue-obs-transaction-ok .alert-txt').append($('#tpl-transmission-ok').clone().html());
1085
						$("#dialogue-obs-transaction-ok").show();
2117 aurelien 1086
						window.location.hash = "dialogue-obs-transaction-ok";
2688 mathias 1087
						lthis.initialiserObs();
2110 aurelien 1088
					}, 1500);
2328 jpm 1089
 
1090
				}
1251 jpm 1091
			}
1210 jpm 1092
		}
1093
	});
2688 mathias 1094
};
1210 jpm 1095
 
2688 mathias 1096
WidgetSaisie.prototype.validerFormulaire = function() {
1210 jpm 1097
	$observateur = $("#form-observateur").valid();
1098
	$station = $("#form-station").valid();
1099
	$obs = $("#form-obs").valid();
1100
	return ($observateur == true && $station == true && $obs == true) ? true : false;
2688 mathias 1101
};
1210 jpm 1102
 
2688 mathias 1103
WidgetSaisie.prototype.getNomsImgsOriginales = function() {
1524 aurelien 1104
	var noms = new Array();
1105
	$(".miniature-img").each(function() {
1106
		noms.push($(this).attr('alt'));
1107
	});
1108
	return noms;
2688 mathias 1109
};
1524 aurelien 1110
 
2688 mathias 1111
WidgetSaisie.prototype.getB64ImgsOriginales = function() {
1524 aurelien 1112
	var b64 = new Array();
1113
	$(".miniature-img").each(function() {
1114
		if ($(this).hasClass('b64')) {
1115
			b64.push($(this).attr('src'));
1116
		} else if ($(this).hasClass('b64-canvas')) {
1117
			b64.push($(this).data('b64'));
1118
		}
1119
	});
1120
 
1210 jpm 1121
	return b64;
2688 mathias 1122
};
1210 jpm 1123
 
2688 mathias 1124
WidgetSaisie.prototype.supprimerObs = function(selector) {
1125
	var obsId = $(selector).val();
1210 jpm 1126
	// Problème avec IE 6 et 7
1127
	if (obsId == "Supprimer") {
2688 mathias 1128
		obsId = $(selector).attr("title");
1210 jpm 1129
	}
2688 mathias 1130
	this.supprimerObsParId(obsId);
1131
};
2110 aurelien 1132
 
2688 mathias 1133
WidgetSaisie.prototype.supprimerObsParId = function(obsId) {
1134
	this.obsNbre = this.obsNbre - 1;
1135
	$(".obs-nbre").text(this.obsNbre);
1237 jpm 1136
	$(".obs-nbre").triggerHandler('changement');
1215 jpm 1137
	$('.obs'+obsId).remove();
1210 jpm 1138
	$("#liste-obs").removeData('obsId'+obsId);
2688 mathias 1139
};
1210 jpm 1140
 
2688 mathias 1141
WidgetSaisie.prototype.initialiserBarreProgression = function() {
2110 aurelien 1142
	$('#barre-progression-upload').attr('aria-valuenow', 0);
1143
	$('#barre-progression-upload').attr('style', "width: 0%");
1144
	$('#barre-progression-upload .sr-only').text("0/0 observations transmises");
1145
	$('.progress').addClass('active');
1146
	$('.progress').addClass('progress-striped');
2688 mathias 1147
};
2110 aurelien 1148
 
2688 mathias 1149
WidgetSaisie.prototype.initialiserObs = function() {
1150
	this.obsNbre = 0;
1151
	this.nbObsTransmises = 0;
1152
	this.nbObsEnCours = 0;
1153
	this.totalObsATransmettre = 0;
1154
	this.initialiserBarreProgression();
1155
	$(".obs-nbre").text(this.obsNbre);
1249 jpm 1156
	$(".obs-nbre").triggerHandler('changement');
1157
	$("#liste-obs").removeData();
1158
	$('.obs').remove();
1159
	$("#dialogue-bloquer-creer-obs").hide();
2688 mathias 1160
};
1231 jpm 1161
 
2688 mathias 1162
/**
1163
 * Ajoute une boîte de miniatures avec défilement des images,
1164
 * pour une obs de la liste des obs à transmettre
1165
 */
1166
WidgetSaisie.prototype.ajouterImgMiniatureAuTransfert = function() {
1167
	var html = '',
1168
		miniatures = '',
1169
		premiere = true;
1524 aurelien 1170
	if ($("#miniatures img").length >= 1) {
1171
		$("#miniatures img").each(function() {
1172
			var visible = premiere ? 'miniature-selectionnee' : 'miniature-cachee';
1173
			premiere = false;
2688 mathias 1174
			var css = $(this).hasClass('b64') ? 'miniature b64' : 'miniature',
1175
				src = $(this).attr("src"),
1176
				alt = $(this).attr("alt"),
1177
				//miniature = '<img class="'+css+' '+visible+'"  alt="'+alt+'"src="'+src+'" />';
1178
				miniature = '<div class="'+css+' '+visible+'"  alt="'+alt+'" style="background-image: url('+src+')" ></div>';
1524 aurelien 1179
			miniatures += miniature;
1180
		});
1181
		visible = ($("#miniatures img").length > 1) ? '' : 'defilement-miniatures-cache';
2328 jpm 1182
		var html =
1524 aurelien 1183
			'<div class="defilement-miniatures">'+
1184
				'<a href="#" class="defilement-miniatures-gauche '+visible+'">&#60;</a>'+
1185
				miniatures+
1186
				'<a href="#" class="defilement-miniatures-droite '+visible+'">&#62;</a>'+
1187
			'</div>';
1237 jpm 1188
	} else {
2700 mathias 1189
		html = '<img class="miniature" alt="Aucune photo"src="'+ this.pasDePhotoIconeUrl +'" />';
1210 jpm 1190
	}
1524 aurelien 1191
	return html;
2688 mathias 1192
};
1210 jpm 1193
 
2688 mathias 1194
WidgetSaisie.prototype.defilerMiniatures = function(element) {
2328 jpm 1195
 
2688 mathias 1196
	var miniatureSelectionne = element.siblings("div.miniature-selectionnee");
1524 aurelien 1197
	miniatureSelectionne.removeClass('miniature-selectionnee');
1198
	miniatureSelectionne.addClass('miniature-cachee');
1199
	var miniatureAffichee = miniatureSelectionne;
2328 jpm 1200
 
1524 aurelien 1201
	if(element.hasClass('defilement-miniatures-gauche')) {
1202
		if(miniatureSelectionne.prev('.miniature').length != 0) {
1203
			miniatureAffichee = miniatureSelectionne.prev('.miniature');
1204
		} else {
1205
			miniatureAffichee = miniatureSelectionne.siblings(".miniature").last();
1206
		}
1207
	} else {
1208
		if(miniatureSelectionne.next('.miniature').length != 0) {
1209
			miniatureAffichee = miniatureSelectionne.next('.miniature');
1210
		} else {
1211
			miniatureAffichee = miniatureSelectionne.siblings(".miniature").first();
1212
		}
1213
	}
1822 aurelien 1214
	//console.log(miniatureAffichee);
1524 aurelien 1215
	miniatureAffichee.addClass('miniature-selectionnee');
1216
	miniatureAffichee.removeClass('miniature-cachee');
2688 mathias 1217
};
1524 aurelien 1218
 
2688 mathias 1219
WidgetSaisie.prototype.ajouterNumNomSel = function() {
1240 jpm 1220
	var nn = '';
1221
	if ($("#taxon").data("numNomSel") == undefined) {
1222
		nn = '<span class="alert-error">[non lié au référentiel]</span>';
1223
	} else {
1224
		nn = '<span class="nn">[nn'+$("#taxon").data("numNomSel")+']</span>';
1225
	}
1226
	return nn;
2688 mathias 1227
};
1240 jpm 1228
 
2688 mathias 1229
WidgetSaisie.prototype.ajouterAutocompletionNoms = function() {
1230
	var lthis = this;
1210 jpm 1231
	$('#taxon').autocomplete({
2328 jpm 1232
		source: function(requete, add){
1210 jpm 1233
			// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
1234
			requete = "";
2343 aurelien 1235
			if($("#referentiel").val() != "autre") {
2688 mathias 1236
				var url = lthis.getUrlAutocompletionNomsSci();
2343 aurelien 1237
				$.getJSON(url, requete, function(data) {
2688 mathias 1238
					var suggestions = lthis.traiterRetourNomsSci(data);
2343 aurelien 1239
					add(suggestions);
1240
	            });
1241
			}
1210 jpm 1242
        },
1243
        html: true
1244
	});
2328 jpm 1245
 
2863 mathias 1246
	$("#taxon").bind("autocompleteselect", this.surAutocompletionTaxon);
2688 mathias 1247
};
1210 jpm 1248
 
2863 mathias 1249
WidgetSaisie.prototype.surAutocompletionTaxon = function(event, ui) {
1250
	$("#taxon").data(ui.item);
1251
	if (ui.item.retenu == true) {
1252
		$("#taxon").addClass('ns-retenu');
1253
	} else {
1254
		$("#taxon").removeClass('ns-retenu');
1255
	}
1256
};
1257
 
2688 mathias 1258
WidgetSaisie.prototype.getUrlAutocompletionNomsSci = function() {
1215 jpm 1259
	var mots = $('#taxon').val();
2700 mathias 1260
	var url = this.serviceAutocompletionNomSciUrlTpl.replace('{referentiel}', this.nomSciReferentiel);
1476 aurelien 1261
	url = url.replace('{masque}', mots);
1210 jpm 1262
	return url;
2688 mathias 1263
};
1210 jpm 1264
 
2688 mathias 1265
WidgetSaisie.prototype.traiterRetourNomsSci = function(data) {
2328 jpm 1266
	var suggestions = [];
1210 jpm 1267
	if (data.resultat != undefined) {
1268
		$.each(data.resultat, function(i, val) {
1269
			val.nn = i;
2328 jpm 1270
			var nom = {label : '', value : '', nt : '', nomSel : '', nomSelComplet : '', numNomSel : '',
1215 jpm 1271
				nomRet : '', numNomRet : '', famille : '', retenu : false
1272
			};
2700 mathias 1273
			if (suggestions.length >= this.autocompletionElementsNbre) {
1213 jpm 1274
				nom.label = "...";
1275
				nom.value = $('#taxon').val();
1276
				suggestions.push(nom);
1277
				return false;
1278
			} else {
1231 jpm 1279
				nom.label = val.nom_sci_complet;
1280
				nom.value = val.nom_sci_complet;
1215 jpm 1281
				nom.nt = val.num_taxonomique;
1282
				nom.nomSel = val.nom_sci;
1283
				nom.nomSelComplet = val.nom_sci_complet;
1284
				nom.numNomSel = val.nn;
1237 jpm 1285
				nom.nomRet = val.nom_retenu_complet;
1220 jpm 1286
				nom.numNomRet = val["nom_retenu.id"];
1231 jpm 1287
				nom.famille = val.famille;
2243 mathias 1288
				// Tester dans ce sens, permet de considérer "absent" comme "false" => est-ce opportun ?
1289
				// en tout cas c'est harmonisé avec le CeL
1290
				nom.retenu = (val.retenu == 'true') ? true : false;
2328 jpm 1291
 
1213 jpm 1292
				suggestions.push(nom);
2328 jpm 1293
			}
1210 jpm 1294
		});
1295
	}
2328 jpm 1296
 
1210 jpm 1297
	return suggestions;
2688 mathias 1298
};
1210 jpm 1299
 
2700 mathias 1300
WidgetSaisie.prototype.afficherPanneau = function(selecteur) {
1301
	$(selecteur).fadeIn("slow").delay(this.dureeMessage).fadeOut("slow");
2701 mathias 1302
};
2700 mathias 1303
 
2701 mathias 1304
WidgetSaisie.prototype.masquerPanneau = function(selecteur) {
1305
	$(selecteur).hide();
1306
};
1307
 
2697 mathias 1308
// lib hors objet --
1309
 
1310
/**
1311
* Stope l'évènement courant quand on clique sur un lien.
1312
* Utile pour Chrome, Safari...
1313
*/
1314
function arreter(evenement) {
1315
	if (evenement.stopPropagation) {
1316
		evenement.stopPropagation();
1317
	}
1318
	if (evenement.preventDefault) {
1319
		evenement.preventDefault();
1320
	}
1321
	return false;
1322
}
1323
 
1324
/**
1325
 * Extrait les données de désinsectisation d'une requête AJAX de jQuery
1326
 * @param jqXHR
1327
 * @returns {String}
1328
 */
1329
function extraireEnteteDebug(jqXHR) {
1330
	var msgDebug = '';
1331
	if (jqXHR.getResponseHeader("X-DebugJrest-Data") != '') {
1332
		var debugInfos = jQuery.parseJSON(jqXHR.getResponseHeader("X-DebugJrest-Data"));
1333
		if (debugInfos != null) {
1334
			$.each(debugInfos, function (cle, valeur) {
1335
				msgDebug += valeur + "\n";
1336
			});
1337
		}
1338
	}
1339
	return msgDebug;
1340
}
1341
 
1210 jpm 1342
/*
1343
 * jQuery UI Autocomplete HTML Extension
1344
 *
1345
 * Copyright 2010, Scott González (http://scottgonzalez.com)
1346
 * Dual licensed under the MIT or GPL Version 2 licenses.
1347
 *
1348
 * http://github.com/scottgonzalez/jquery-ui-extensions
2328 jpm 1349
 *
1210 jpm 1350
 * Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
1351
 */
1352
(function( $ ) {
1215 jpm 1353
	var proto = $.ui.autocomplete.prototype,
1354
		initSource = proto._initSource;
2328 jpm 1355
 
2688 mathias 1356
	WidgetSaisie.prototype.filter = function( array, term ) {
1215 jpm 1357
		var matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), "i" );
1358
		return $.grep( array, function(value) {
1359
			return matcher.test( $( "<div>" ).html( value.label || value.value || value ).text() );
1360
		});
1361
	}
2328 jpm 1362
 
1215 jpm 1363
	$.extend( proto, {
1364
		_initSource: function() {
1365
			if ( this.options.html && $.isArray(this.options.source) ) {
1366
				this.source = function( request, response ) {
1367
					response( filter( this.options.source, request.term ) );
1368
				};
1369
			} else {
1370
				initSource.call( this );
1371
			}
1372
		},
1373
		_renderItem: function( ul, item) {
1374
			if (item.retenu == true) {
1375
				item.label = "<strong>"+item.label+"</strong>";
1376
			}
2328 jpm 1377
 
1215 jpm 1378
			return $( "<li></li>" )
1379
				.data( "item.autocomplete", item )
1380
				.append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) )
1381
				.appendTo( ul );
1382
		}
1210 jpm 1383
	});
2849 aurel 1384
})( jQuery );