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