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