3120 |
delphine |
1 |
/**
|
|
|
2 |
* Constructeur WidgetSaisie par défaut
|
|
|
3 |
*/
|
|
|
4 |
function WidgetSaisie() {
|
3260 |
idir |
5 |
this.langue = 'fr';
|
|
|
6 |
this.obsNbre = 0;
|
|
|
7 |
this.nbObsEnCours = 1;
|
|
|
8 |
this.totalObsATransmettre = 0;
|
|
|
9 |
this.nbObsTransmises = 0;
|
|
|
10 |
this.debug = null;
|
|
|
11 |
this.html5 = null;
|
|
|
12 |
this.tagProjet = null;
|
|
|
13 |
this.tagImg = null;
|
|
|
14 |
this.tagObs = null;
|
|
|
15 |
this.separationTagImg = null;
|
|
|
16 |
this.separationTagObs = null;
|
|
|
17 |
this.obsId = null;
|
|
|
18 |
this.serviceSaisieUrl = null;
|
|
|
19 |
this.serviceObsUrl = null;
|
|
|
20 |
this.nomSciReferentiel = null;
|
|
|
21 |
this.especeImposee = false;
|
|
|
22 |
this.infosEspeceImposee = null;
|
|
|
23 |
this.isTaxonListe = false;
|
|
|
24 |
this.autocompletionElementsNbre = null;
|
|
|
25 |
this.referentielImpose = null;
|
|
|
26 |
this.serviceAutocompletionNomSciUrl = null;
|
|
|
27 |
this.serviceAutocompletionNomSciUrlTpl = null;
|
|
|
28 |
this.obsMaxNbre = null;
|
|
|
29 |
this.dureeMessage = null;
|
|
|
30 |
this.serviceAnnuaireIdUrl = null;
|
|
|
31 |
this.serviceNomCommuneUrl = null;
|
|
|
32 |
this.serviceNomCommuneUrlAlt = null;
|
|
|
33 |
this.chargementIconeUrl = null;
|
|
|
34 |
this.chargementImageIconeUrl = null;
|
|
|
35 |
this.calendrierIconeUrl = null;
|
|
|
36 |
this.pasDePhotoIconeUrl = null;
|
3240 |
idir |
37 |
|
3260 |
idir |
38 |
// système de traduction minimaliste
|
|
|
39 |
this.msgs = {
|
|
|
40 |
fr: {
|
|
|
41 |
'format-non-supporte': 'Le format de fichier n\'est pas supporté, les formats acceptés sont',
|
|
|
42 |
'date-incomplete': 'Format : jj/mm/aaaa. Date incomplète, utiliser 0, exemple : 00/12/2011.',
|
|
|
43 |
'observations-transmises': 'observations transmises',
|
|
|
44 |
'taxon-ou-image' : 'Veuillez transmettre au moins, soit une image, soit une espèce',
|
|
|
45 |
'supprimer-observation-liste': 'Supprimer cette observation de la liste à transmettre',
|
|
|
46 |
'milieu': 'Milieu',
|
|
|
47 |
'commentaires': 'Commentaires',
|
|
|
48 |
'erreur-inconnue': 'Erreur inconnue',
|
|
|
49 |
'non-lie-au-ref': 'non lié au référentiel',
|
|
|
50 |
'obs-le': 'le',
|
|
|
51 |
'quitter-page' : 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.',
|
|
|
52 |
'courriel-connu' : 'Un compte existe pour ce courriel, connectez-vous pour saisir votre observation',
|
|
|
53 |
'obs-numero' : 'Observation n°',
|
|
|
54 |
'erreur-ajax' : 'Erreur Ajax',
|
|
|
55 |
'erreur' : 'Erreur',
|
|
|
56 |
'erreur-chargement' : 'Erreur lors du chargement de l\'observation',
|
|
|
57 |
'lieu-obs' : 'observé à',
|
|
|
58 |
'lieu-dit' : 'Lieu-dit',
|
|
|
59 |
'station' : 'Station'
|
|
|
60 |
},
|
|
|
61 |
en: {
|
|
|
62 |
'format-non-supporte': 'The file format is not supported, the accepted formats are',
|
|
|
63 |
'date-incomplete': 'Format: dd / mm / yyyy. Incomplete date, use 0, example: 00/12/2011.',
|
|
|
64 |
'observations-transmises': 'observations transmitted',
|
|
|
65 |
'taxon-ou-image' : 'Please transmit at least one image or one species',
|
|
|
66 |
'supprimer-observation-liste': 'Delete this observation from the list to be transmitted',
|
|
|
67 |
'milieu': 'Environment',
|
|
|
68 |
'commentaires': 'Comments',
|
|
|
69 |
'erreur-inconnue': 'Unknown error',
|
|
|
70 |
'non-lie-au-ref': 'unrelated to the referencial ',
|
|
|
71 |
'obs-le': 'the',
|
|
|
72 |
'quitter-page' : 'Are you sure you want to leave the page?\nThe observations entered but not transmitted will be lost.',
|
|
|
73 |
'courriel-connu' : 'An account exists for this email, log in to enter your observation',
|
|
|
74 |
'obs-numero' : 'Observation number ',
|
|
|
75 |
'erreur-ajax' : 'Ajax Error',
|
|
|
76 |
'erreur' : 'Error',
|
|
|
77 |
'erreur-chargement' : 'Error loading the observation',
|
|
|
78 |
'lieu-obs' : 'observed at',
|
|
|
79 |
'lieu-dit' : 'Locality',
|
|
|
80 |
'station' : 'Place'
|
|
|
81 |
}
|
|
|
82 |
};
|
3120 |
delphine |
83 |
}
|
|
|
84 |
|
|
|
85 |
/**
|
|
|
86 |
* Initialisation du widget
|
|
|
87 |
*/
|
|
|
88 |
WidgetSaisie.prototype.init = function() {
|
3260 |
idir |
89 |
this.initForm();
|
|
|
90 |
this.initEvts();
|
|
|
91 |
// Auth.js s'en occuppe
|
|
|
92 |
if ( '' === $( '#nom-complet').text() && valeurOk ( $( '#courriel' ).val() ) ) {
|
|
|
93 |
this.requeterIdentite();
|
|
|
94 |
}
|
3120 |
delphine |
95 |
};
|
|
|
96 |
|
|
|
97 |
/**
|
|
|
98 |
* Initialise le formulaire, les validateurs, les listes de complétion...
|
|
|
99 |
*/
|
|
|
100 |
WidgetSaisie.prototype.initForm = function() {
|
|
|
101 |
|
3260 |
idir |
102 |
var lthis = this;
|
|
|
103 |
if ( valeurOk( this.obsId ) ) {
|
|
|
104 |
this.chargerInfoObs();
|
|
|
105 |
}
|
3120 |
delphine |
106 |
|
3260 |
idir |
107 |
if( this.isTaxonListe ) {
|
|
|
108 |
this.surChangementTaxonListe();
|
|
|
109 |
$( '#taxon-liste' ).on( 'change', lthis.surChangementTaxonListe );
|
|
|
110 |
$( '#taxon-liste' ).on( 'change', lthis.surChangementValeurTaxon.bind( lthis ) );
|
|
|
111 |
if ( this.debug ) {
|
|
|
112 |
console.log( 'Selected taxon:' + $( '#taxon-liste option:selected' ).val());
|
|
|
113 |
}
|
|
|
114 |
} else {
|
|
|
115 |
this.ajouterAutocompletionNoms();
|
|
|
116 |
}
|
|
|
117 |
// au rafraichissement de la page,
|
|
|
118 |
// les input date semblent conserver la valeur entrée précedemment
|
|
|
119 |
// c'est voulu après la création d'un obs mais pas quand la page est actualisée
|
|
|
120 |
// Déjà tenté: onbeforeunload avec un location.reload(true) n'a pas permis de le faire
|
|
|
121 |
$( 'input[type=date]' ).each( function () {
|
|
|
122 |
( valeurOk( $( this ).data( 'default' ) ) ) ? $( this ).val( $( this ).data( 'default' ) ) : $( this ).val( '' );
|
|
|
123 |
});
|
|
|
124 |
this.configurerFormValidator();
|
|
|
125 |
this.definirReglesFormValidator();
|
|
|
126 |
|
|
|
127 |
if( this.especeImposee ) {
|
|
|
128 |
$( '#taxon' ).attr( 'disabled', 'disabled' );
|
|
|
129 |
$( '#taxon-input-groupe' ).attr( 'title', '' );
|
|
|
130 |
// Bricolage cracra pour avoir le nom retenu avec auteur (nom_retenu.libelle ne le mentionne pas)
|
|
|
131 |
var infosEspeceImposee = $.parseJSON( this.infosEspeceImposee );
|
|
|
132 |
var nomRetenuComplet = infosEspeceImposee.nom_retenu_complet,
|
|
|
133 |
debutAnneRefBiblio = nomRetenuComplet.indexOf( ' [' );
|
|
|
134 |
if ( -1 !== debutAnneRefBiblio ) {
|
|
|
135 |
nomRetenuComplet = nomRetenuComplet.substr( 0, debutAnneRefBiblio );
|
|
|
136 |
}
|
|
|
137 |
// fin bricolage cracra
|
|
|
138 |
var infosAssociee = {
|
|
|
139 |
label : infosEspeceImposee.nom_sci_complet,
|
|
|
140 |
value : infosEspeceImposee.nom_sci_complet,
|
|
|
141 |
nt : infosEspeceImposee.num_taxonomique,
|
|
|
142 |
nomSel : infosEspeceImposee.nom_sci,
|
|
|
143 |
nomSelComplet : infosEspeceImposee.nom_sci_complet,
|
|
|
144 |
numNomSel : infosEspeceImposee.id,
|
|
|
145 |
nomRet : nomRetenuComplet,
|
|
|
146 |
numNomRet : infosEspeceImposee['nom_retenu.id'],
|
|
|
147 |
famille : infosEspeceImposee.famille,
|
|
|
148 |
retenu : ( 'false' === infosEspeceImposee.retenu ) ? false : true
|
|
|
149 |
};
|
|
|
150 |
$( '#taxon' ).data( infosAssociee );
|
|
|
151 |
}
|
3120 |
delphine |
152 |
};
|
|
|
153 |
|
|
|
154 |
/**
|
|
|
155 |
* Initialise les écouteurs d'événements
|
|
|
156 |
*/
|
|
|
157 |
WidgetSaisie.prototype.initEvts = function() {
|
3260 |
idir |
158 |
var lthis = this;
|
3120 |
delphine |
159 |
|
|
|
160 |
|
3208 |
idir |
161 |
|
3260 |
idir |
162 |
// identité
|
|
|
163 |
$( '#bouton-anonyme' ).on( 'click', function() {
|
|
|
164 |
$( this ).css({
|
|
|
165 |
'background-color': 'rgba(0, 159, 184, 0.7)',
|
|
|
166 |
'color': '#fff'
|
|
|
167 |
});
|
|
|
168 |
$( '#anonyme' ).removeClass( 'hidden' );
|
|
|
169 |
$( '#courriel' ).focus();
|
|
|
170 |
});
|
|
|
171 |
if ( '' === $( '#nom-complet').text() ) {
|
|
|
172 |
$( '#courriel' ).on( 'blur', this.requeterIdentite.bind( this ) );
|
|
|
173 |
$( '#courriel' ).on( 'keypress', this.testerLancementRequeteIdentite.bind( this ) );
|
|
|
174 |
}
|
|
|
175 |
$( '#prenom' ).on( 'change', this.formaterPrenom );
|
|
|
176 |
$( '#nom' ).on( 'change', this.formaterNom );
|
|
|
177 |
$( '#courriel_confirmation' ).on( 'paste', this.bloquerCopierCollerCourriel.bind( this ) );
|
3208 |
idir |
178 |
|
3260 |
idir |
179 |
// Sur téléchargement image
|
|
|
180 |
$( '#fichier' ).on( 'change', function ( e ) {
|
|
|
181 |
arreter( e );
|
|
|
182 |
var options = {
|
|
|
183 |
success: lthis.afficherMiniature.bind( lthis ), // post-submit callback
|
|
|
184 |
dataType: 'xml', // 'xml', 'script', or 'json' (expected server response type)
|
|
|
185 |
resetForm: true // reset the form after successful submit
|
|
|
186 |
};
|
|
|
187 |
$( '#miniature' ).append( '<img id="miniature-chargement" class="miniature" alt="chargement" src="' + this.chargementImageIconeUrl + '"/>' );
|
|
|
188 |
$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
|
|
|
189 |
if( lthis.verifierFormat( $( '#fichier' ).val() ) ) {
|
|
|
190 |
$( '#form-upload' ).ajaxSubmit( options );
|
|
|
191 |
} else {
|
|
|
192 |
$( '#form-upload' )[0].reset();
|
|
|
193 |
window.alert( lthis.msgTraduction( 'format-non-supporte' ) + ' ' + $( '#fichier' ).attr( 'accept' ) );
|
|
|
194 |
}
|
|
|
195 |
return false;
|
|
|
196 |
});
|
3208 |
idir |
197 |
|
3260 |
idir |
198 |
$( 'body' ).on( 'click', '.effacer-miniature', function() {
|
|
|
199 |
$( this ).parent().remove();
|
|
|
200 |
});
|
3208 |
idir |
201 |
|
3260 |
idir |
202 |
$( '#referentiel' ).on( 'change', this.surChangementReferentiel.bind( this ) );
|
3208 |
idir |
203 |
|
3260 |
idir |
204 |
$( '#ajouter-obs' ).on( 'click', this.ajouterObs.bind( this ) );
|
|
|
205 |
$( '.obs-nbre' ).on( 'changement', this.surChangementNbreObs.bind( this ) );
|
3208 |
idir |
206 |
|
3260 |
idir |
207 |
$( 'body' ).on( 'click', '.defilement-miniatures-gauche', function( event ) {
|
|
|
208 |
event.preventDefault();
|
|
|
209 |
lthis.defilerMiniatures( $( this ) );
|
|
|
210 |
});
|
|
|
211 |
$( 'body' ).on( 'click', '.defilement-miniatures-droite', function( event ) {
|
|
|
212 |
event.preventDefault();
|
|
|
213 |
lthis.defilerMiniatures( $( this ) );
|
|
|
214 |
});
|
|
|
215 |
$( 'body' ).on( 'click', '.supprimer-obs', function() {
|
|
|
216 |
var that = this,
|
|
|
217 |
suppObs = lthis.supprimerObs.bind( lthis );
|
|
|
218 |
// bricolage pour avoir les deux contextes en même temps (objet et elt. du DOM)
|
|
|
219 |
suppObs( that );
|
|
|
220 |
});
|
3208 |
idir |
221 |
|
3260 |
idir |
222 |
$( '#transmettre-obs' ).on( 'click', this.transmettreObs.bind( this ) );
|
3120 |
delphine |
223 |
|
3260 |
idir |
224 |
// Alertes et tooltips
|
|
|
225 |
$( '.alert .close' ).on( 'click', this.fermerPanneauAlert );
|
|
|
226 |
$( '#btn-aide' ).on( 'click', this.basculerAffichageAide );
|
|
|
227 |
$( '.has-tooltip' ).tooltip( 'enable' );
|
3120 |
delphine |
228 |
};
|
|
|
229 |
|
3260 |
idir |
230 |
// Identité Observateur *******************************************************/
|
|
|
231 |
WidgetSaisie.prototype.requeterIdentite = function() {
|
|
|
232 |
var lthis = this;
|
|
|
233 |
var courriel = $( '#courriel' ).val();
|
|
|
234 |
var urlAnnuaire = this.serviceAnnuaireIdUrl + courriel;
|
|
|
235 |
if ( valeurOk( courriel ) ) {
|
|
|
236 |
$.ajax({
|
|
|
237 |
url : urlAnnuaire,
|
|
|
238 |
type : 'GET',
|
|
|
239 |
success : function( data, textStatus, jqXHR ) {
|
|
|
240 |
if ( lthis.debug ) {
|
|
|
241 |
console.log( 'SUCCESS: ' + textStatus );
|
|
|
242 |
}
|
|
|
243 |
if ( valeurOk( data ) && valeurOk( data[courriel] ) ) {
|
|
|
244 |
var infos = data[courriel];
|
|
|
245 |
lthis.surSuccesCompletionCourriel( infos, courriel );
|
|
|
246 |
} else {
|
|
|
247 |
lthis.surErreurCompletionCourriel();
|
|
|
248 |
}
|
|
|
249 |
},
|
|
|
250 |
error : function( jqXHR, textStatus, errorThrown ) {
|
|
|
251 |
if ( lthis.debug ) {
|
|
|
252 |
console.log( 'ERREUR: '+ textStatus );
|
|
|
253 |
}
|
|
|
254 |
lthis.surErreurCompletionCourriel();
|
|
|
255 |
},
|
|
|
256 |
complete : function( jqXHR, textStatus ) {
|
|
|
257 |
if ( lthis.debug ) {
|
|
|
258 |
console.log( 'COMPLETE: '+ textStatus );
|
|
|
259 |
}
|
|
|
260 |
}
|
|
|
261 |
});
|
|
|
262 |
}
|
3120 |
delphine |
263 |
};
|
|
|
264 |
|
3260 |
idir |
265 |
WidgetSaisie.prototype.surSuccesCompletionCourriel = function( infos, courriel ) {
|
|
|
266 |
$( '#zone-courriel' ).before( '<p class="warning"><i class="fas fa-exclamation-triangle"></i> ' + this.msgTraduction( 'courriel-connu' ) + '</p>' );
|
|
|
267 |
$( '#bouton-inscription, #zone-prenom-nom, #zone-courriel-confirmation' ).addClass( 'hidden' );
|
|
|
268 |
$( '#prenom, #nom, #courriel_confirmation' ).attr( 'disabled', 'disabled' );
|
|
|
269 |
$( '#bouton-connexion a' ).css( 'box-shadow', '0 0 1.5px 1px red' );
|
3120 |
delphine |
270 |
};
|
|
|
271 |
|
3260 |
idir |
272 |
WidgetSaisie.prototype.surErreurCompletionCourriel = function() {
|
|
|
273 |
$( '#creation-compte, #zone-prenom-nom, #zone-courriel-confirmation' ).removeClass( 'hidden' );
|
|
|
274 |
$( '.warning' ).remove();
|
|
|
275 |
$( '#bouton-connexion a' ).css( 'box-shadow', '' );
|
3120 |
delphine |
276 |
|
3260 |
idir |
277 |
$( '#prenom, #nom, #courriel_confirmation' ).val( '' );
|
|
|
278 |
$( '#prenom, #nom, #courriel_confirmation' ).removeAttr( 'disabled' );
|
3120 |
delphine |
279 |
};
|
|
|
280 |
|
3208 |
idir |
281 |
WidgetSaisie.prototype.testerLancementRequeteIdentite = function( event ) {
|
3260 |
idir |
282 |
if ( valeurOk( event.which, true, 13 ) ) {
|
|
|
283 |
this.requeterIdentite();
|
|
|
284 |
event.preventDefault();
|
|
|
285 |
event.stopPropagation();
|
|
|
286 |
}
|
3120 |
delphine |
287 |
};
|
|
|
288 |
|
3260 |
idir |
289 |
WidgetSaisie.prototype.formaterNom = function() {
|
|
|
290 |
$( this ).val( $( this ).val().toUpperCase() );
|
3120 |
delphine |
291 |
};
|
|
|
292 |
|
3260 |
idir |
293 |
WidgetSaisie.prototype.formaterPrenom = function() {
|
|
|
294 |
var prenom = new Array(),
|
|
|
295 |
mots = $( this ).val().split( ' ' ),
|
|
|
296 |
motsLength = mots.length;
|
3120 |
delphine |
297 |
|
3260 |
idir |
298 |
for ( var i = 0; i < motsLength; i++ ) {
|
|
|
299 |
var mot = mots[i];
|
|
|
300 |
if ( 0 <= mot.indexOf( '-' ) ) {
|
|
|
301 |
var prenomCompose = new Array(),
|
|
|
302 |
motsComposes = mot.split( '-' )
|
|
|
303 |
motsComposesLength = motsComposes.length;
|
|
|
304 |
for ( var j = 0; j < motsComposesLength; j++ ) {
|
|
|
305 |
var motSimple = motsComposes[j],
|
|
|
306 |
motMajuscule = motSimple.charAt(0).toUpperCase() + motSimple.slice(1);
|
3208 |
idir |
307 |
|
3260 |
idir |
308 |
prenomCompose.push( motMajuscule );
|
|
|
309 |
}
|
|
|
310 |
prenom.push( prenomCompose.join( '-' ) );
|
|
|
311 |
} else {
|
|
|
312 |
var motMajuscule = mot.charAt(0).toUpperCase() + mot.slice(1);
|
|
|
313 |
prenom.push( motMajuscule );
|
|
|
314 |
}
|
|
|
315 |
}
|
|
|
316 |
$( this ).val( prenom.join( ' ' ) );
|
3120 |
delphine |
317 |
};
|
|
|
318 |
|
3260 |
idir |
319 |
WidgetSaisie.prototype.bloquerCopierCollerCourriel = function() {
|
|
|
320 |
this.afficherPanneau( '#dialogue-bloquer-copier-coller' );
|
|
|
321 |
return false;
|
3208 |
idir |
322 |
};
|
|
|
323 |
|
3260 |
idir |
324 |
// Préchargement des infos-obs ************************************************/
|
|
|
325 |
WidgetSaisie.prototype.chargerInfoObs = function() {
|
|
|
326 |
var urlObs = this.serviceObsUrl + '/' + this.obsId;
|
|
|
327 |
var lthis = this;
|
|
|
328 |
$.ajax({
|
|
|
329 |
url: urlObs,
|
|
|
330 |
type: 'GET',
|
|
|
331 |
success: function( data, textStatus, jqXHR ) {
|
|
|
332 |
if ( valeurOk( data ) ) {
|
|
|
333 |
lthis.prechargerForm( data );
|
|
|
334 |
} else {
|
|
|
335 |
lthis.surErreurChargementInfosObs.bind( lthis );
|
|
|
336 |
}
|
|
|
337 |
},
|
|
|
338 |
error: function( jqXHR, textStatus, errorThrown ) {
|
|
|
339 |
lthis.surErreurChargementInfosObs();
|
|
|
340 |
}
|
|
|
341 |
});
|
3120 |
delphine |
342 |
};
|
|
|
343 |
|
3260 |
idir |
344 |
// @TODO faire mieux que ça !
|
|
|
345 |
WidgetSaisie.prototype.surErreurChargementInfosObs = function() {
|
|
|
346 |
alert( this.msgTraduction( 'erreur-chargement' ) );
|
|
|
347 |
};
|
3208 |
idir |
348 |
|
3260 |
idir |
349 |
WidgetSaisie.prototype.prechargerForm = function( data ) {
|
3208 |
idir |
350 |
|
3260 |
idir |
351 |
$( '#milieu' ).val( data.milieu );
|
3208 |
idir |
352 |
|
3260 |
idir |
353 |
// $( '#carte-recherche' ).val( data.zoneGeo );
|
|
|
354 |
// $( '#commune-nom' ).text( data.zoneGeo );
|
3208 |
idir |
355 |
|
3260 |
idir |
356 |
// if( data.hasOwnProperty( 'codeZoneGeo' ) ) {
|
|
|
357 |
// // TODO: trouver un moyen qui fonctionne lorsqu'on aura d'autres référentiels que INSEE
|
|
|
358 |
// $( '#commune-code-insee' ).text( data.codeZoneGeo.replace( 'INSEE-C:', '' ) );
|
|
|
359 |
// }
|
3208 |
idir |
360 |
|
3260 |
idir |
361 |
// if( data.hasOwnProperty( 'latitude' ) && data.hasOwnProperty( 'longitude' ) ) {
|
|
|
362 |
// var latLng = new google.maps.LatLng( data.latitude, data.longitude );
|
|
|
363 |
// this.mettreAJourMarkerPosition( latLng );
|
|
|
364 |
// this.marker.setPosition( latLng );
|
|
|
365 |
// this.map.setCenter( latLng );
|
|
|
366 |
// this.map.setZoom( 16 );
|
|
|
367 |
// }
|
3120 |
delphine |
368 |
};
|
|
|
369 |
|
3260 |
idir |
370 |
// uniquement utilisé si taxon-liste ******************************************/
|
|
|
371 |
// Affiche/Cache le champ taxon
|
|
|
372 |
WidgetSaisie.prototype.surChangementTaxonListe = function() {
|
|
|
373 |
if ( valeurOk( $( '#taxon-liste' ).val() ) ) {
|
|
|
374 |
if ( 'autre' !== $( '#taxon-liste' ).val() ) {
|
|
|
375 |
$( '#taxon-input-groupe' ).hide( 200, function () {
|
|
|
376 |
$( this ).addClass( 'hidden' ).show();
|
|
|
377 |
});
|
|
|
378 |
} else {
|
|
|
379 |
$( '#taxon-input-groupe' ).hide().removeClass( 'hidden' ).show(200);
|
|
|
380 |
}
|
|
|
381 |
}
|
3120 |
delphine |
382 |
};
|
|
|
383 |
|
3208 |
idir |
384 |
|
3260 |
idir |
385 |
WidgetSaisie.prototype.surChangementValeurTaxon = function() {
|
|
|
386 |
var numNomSel = 0;
|
|
|
387 |
|
|
|
388 |
if( valeurOk( $( '#taxon-liste' ).val() ) ) {
|
|
|
389 |
if( 'autre' === $( '#taxon-liste' ).val() ) {
|
|
|
390 |
this.ajouterAutocompletionNoms();
|
|
|
391 |
} else {
|
|
|
392 |
var optionRetenue = $( '#taxon-liste' ).find( 'option[value="' + $( '#taxon-liste' ).val() + '"]' );
|
|
|
393 |
// $( '#taxon' ).val( $( '#taxon-liste' ).val() );
|
|
|
394 |
$( '#taxon' ).val( $( '#taxon-liste' ).val() )
|
|
|
395 |
.data( 'value', $( '#taxon-liste' ).val() )
|
|
|
396 |
.data( 'numNomSel', optionRetenue.data( 'num-nom-sel' ) )
|
|
|
397 |
.data( 'nomRet', optionRetenue.data( 'nom-ret' ) )
|
|
|
398 |
.data( 'numNomRet', optionRetenue.data( 'num-nom-ret' ) )
|
|
|
399 |
.data( 'nt', optionRetenue.data( 'nt' ) )
|
|
|
400 |
.data( 'famille', optionRetenue.data( 'famille' ) );
|
|
|
401 |
|
|
|
402 |
numNomSel = $( '#taxon' ).data( 'numNomSel' );
|
|
|
403 |
// Si l'espèce est mal déterminée la certitude est "à déterminer"
|
|
|
404 |
if( !valeurOk( numNomSel ) ) {
|
|
|
405 |
$( '#certitude' ).find( 'option' ).each( function() {
|
|
|
406 |
if ( $( this ).hasClass( 'aDeterminer' ) ) {
|
|
|
407 |
$( this ).attr( 'selected', true );
|
|
|
408 |
} else {
|
|
|
409 |
$( this ).attr( 'selected', false );
|
|
|
410 |
}
|
|
|
411 |
});
|
|
|
412 |
}
|
|
|
413 |
}
|
|
|
414 |
}
|
3120 |
delphine |
415 |
};
|
|
|
416 |
|
3260 |
idir |
417 |
// Autocompletion taxons ******************************************************/
|
|
|
418 |
WidgetSaisie.prototype.ajouterAutocompletionNoms = function() {
|
|
|
419 |
var lthis = this;
|
3208 |
idir |
420 |
|
3260 |
idir |
421 |
var taxonSelecteur = '#taxon';
|
|
|
422 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
423 |
taxonSelecteur += '-autre';
|
|
|
424 |
}
|
|
|
425 |
$( taxonSelecteur ).autocomplete({
|
|
|
426 |
source: function( requete, add ) {
|
|
|
427 |
// la variable de requête doit être vidée car sinon le parametre "term" est ajouté
|
|
|
428 |
requete = '';
|
|
|
429 |
if( valeurOk( $( '#referentiel' ).val(), false, 'autre' ) ) {
|
|
|
430 |
var url = lthis.getUrlAutocompletionNomsSci();
|
|
|
431 |
$.getJSON( url, requete, function( data ) {
|
|
|
432 |
var suggestions = lthis.traiterRetourNomsSci( data );
|
|
|
433 |
add( suggestions );
|
|
|
434 |
});
|
|
|
435 |
}
|
|
|
436 |
},
|
|
|
437 |
html: true
|
|
|
438 |
});
|
|
|
439 |
$( taxonSelecteur ).on( 'autocompleteselect change', this.surAutocompletionTaxon );
|
|
|
440 |
};
|
3208 |
idir |
441 |
|
3260 |
idir |
442 |
WidgetSaisie.prototype.getUrlAutocompletionNomsSci = function() {
|
|
|
443 |
var taxonSelecteur = '#taxon';
|
|
|
444 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
445 |
taxonSelecteur += '-autre';
|
|
|
446 |
}
|
|
|
447 |
var mots = $( taxonSelecteur ).val();
|
|
|
448 |
var url = this.serviceAutocompletionNomSciUrlTpl.replace( '{referentiel}', this.nomSciReferentiel );
|
|
|
449 |
url = url.replace( '{masque}', mots );
|
|
|
450 |
return url;
|
|
|
451 |
};
|
3208 |
idir |
452 |
|
3260 |
idir |
453 |
WidgetSaisie.prototype.traiterRetourNomsSci = function( data ) {
|
3208 |
idir |
454 |
|
3260 |
idir |
455 |
var taxonSelecteur = '#taxon';
|
|
|
456 |
if ( valeurOk ( $( '#taxon-liste' ).val(), true, 'autre' ) ) {
|
|
|
457 |
taxonSelecteur += '-autre';
|
|
|
458 |
}
|
|
|
459 |
var suggestions = [];
|
|
|
460 |
if ( undefined != data.resultat ) {
|
|
|
461 |
$.each( data.resultat, function( i, val ) {
|
|
|
462 |
val.nn = i;
|
|
|
463 |
var nom = {
|
|
|
464 |
label : '',
|
|
|
465 |
value : '',
|
|
|
466 |
nt : 0,
|
|
|
467 |
nomSel : '',
|
|
|
468 |
nomSelComplet : '',
|
|
|
469 |
numNomSel : 0,
|
|
|
470 |
nomRet : '',
|
|
|
471 |
numNomRet : 0,
|
|
|
472 |
famille : '',
|
|
|
473 |
retenu : false
|
|
|
474 |
};
|
|
|
475 |
if ( suggestions.length >= this.autocompletionElementsNbre ) {
|
|
|
476 |
nom.label = '...';
|
|
|
477 |
nom.value = $( taxonSelecteur ).val();
|
|
|
478 |
suggestions.push( nom );
|
|
|
479 |
return false;
|
|
|
480 |
} else {
|
|
|
481 |
nom.label = val.nom_sci_complet;
|
|
|
482 |
nom.value = val.nom_sci_complet;
|
|
|
483 |
nom.nt = val.num_taxonomique;
|
|
|
484 |
nom.nomSel = val.nom_sci;
|
|
|
485 |
nom.nomSelComplet = val.nom_sci_complet;
|
|
|
486 |
nom.numNomSel = val.nn;
|
|
|
487 |
nom.nomRet = val.nom_retenu_complet;
|
|
|
488 |
nom.numNomRet = val['nom_retenu.id'];
|
|
|
489 |
nom.famille = val.famille;
|
|
|
490 |
// Tester dans ce sens, permet de considérer 'absent' comme 'false' => est-ce opportun ?
|
|
|
491 |
// en tout cas c'est harmonisé avec le CeL
|
|
|
492 |
nom.retenu = ( 'true' == val.retenu );
|
3208 |
idir |
493 |
|
3260 |
idir |
494 |
suggestions.push( nom );
|
|
|
495 |
}
|
|
|
496 |
});
|
|
|
497 |
}
|
|
|
498 |
return suggestions;
|
|
|
499 |
};
|
3240 |
idir |
500 |
|
3260 |
idir |
501 |
WidgetSaisie.prototype.surAutocompletionTaxon = function( event, ui ) {
|
3208 |
idir |
502 |
|
3260 |
idir |
503 |
if ( valeurOk( ui ) ) {
|
|
|
504 |
$( '#taxon' ).val( ui.item.value );
|
|
|
505 |
$( '#taxon' ).data( 'value', ui.item.value )
|
|
|
506 |
.data( 'numNomSel', ui.item.numNomSel )
|
|
|
507 |
.data( 'nomRet', ui.item.nomRet )
|
|
|
508 |
.data( 'numNomRet', ui.item.numNomRet )
|
|
|
509 |
.data( 'nt', ui.item.nt )
|
|
|
510 |
.data( 'famille', ui.item.famille );
|
|
|
511 |
if ( ui.item.retenu ) {
|
|
|
512 |
$( '#taxon' ).addClass( 'ns-retenu' );
|
|
|
513 |
} else {
|
|
|
514 |
$( '#taxon' ).removeClass( 'ns-retenu' );
|
|
|
515 |
}
|
3208 |
idir |
516 |
|
3260 |
idir |
517 |
// Si l'espèce est mal déterminée la certitude est "à déterminer"
|
|
|
518 |
if( !valeurOk( $( '#taxon' ).data( 'numNomSel' ) ) ) {
|
|
|
519 |
$( '#certitude' ).find( 'option' ).each( function() {
|
|
|
520 |
if ( $( this ).hasClass( 'aDeterminer' ) ) {
|
|
|
521 |
$( this ).attr( 'selected', true );
|
|
|
522 |
} else {
|
|
|
523 |
$( this ).attr( 'selected', false );
|
|
|
524 |
}
|
|
|
525 |
});
|
|
|
526 |
}
|
|
|
527 |
}
|
3208 |
idir |
528 |
};
|
|
|
529 |
|
3260 |
idir |
530 |
// Form Validator *************************************************************/
|
|
|
531 |
WidgetSaisie.prototype.configurerFormValidator = function() {
|
|
|
532 |
var lthis = this;
|
3240 |
idir |
533 |
|
3260 |
idir |
534 |
$.validator.addMethod(
|
|
|
535 |
'dateCel',
|
|
|
536 |
function ( value, element ) {
|
|
|
537 |
return ( valeurOk( value ) && ( /^(?:[0-9]{4}-[0-9]{2}-[0-9]{2})|(?:[0-9]{2}\/[0-9]{2}\/[0-9]{4})$/.test( value ) ) );
|
|
|
538 |
},
|
|
|
539 |
lthis.msgTraduction( 'date-incomplete' )
|
|
|
540 |
);
|
3240 |
idir |
541 |
|
3260 |
idir |
542 |
$.validator.addMethod(
|
|
|
543 |
'userEmailOk',
|
|
|
544 |
function ( value, element ) {
|
|
|
545 |
return ( valeurOk( value ) );
|
|
|
546 |
},
|
|
|
547 |
''
|
|
|
548 |
);
|
3240 |
idir |
549 |
|
3260 |
idir |
550 |
$.validator.addMethod(
|
|
|
551 |
'minMaxOk',
|
|
|
552 |
function ( value, element, param ) {
|
|
|
553 |
$.validator.messages.minMaxOk = lthis.validerMinMax( element ).message;
|
|
|
554 |
return lthis.validerMinMax( element ).cond;
|
|
|
555 |
},
|
|
|
556 |
$.validator.messages.minMaxOk
|
|
|
557 |
);
|
3208 |
idir |
558 |
|
3260 |
idir |
559 |
$.validator.addMethod(
|
|
|
560 |
'listFields',
|
|
|
561 |
function ( value, element ) {
|
|
|
562 |
return ( valeurOk( value ) );
|
|
|
563 |
},
|
|
|
564 |
''
|
|
|
565 |
);
|
3240 |
idir |
566 |
|
3260 |
idir |
567 |
$.extend( $.validator.defaults, {
|
|
|
568 |
errorElement: 'span',
|
|
|
569 |
onfocusout: function( element ) {
|
|
|
570 |
if ( $( element ).valid() ) {
|
|
|
571 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
572 |
} else {
|
|
|
573 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
574 |
}
|
|
|
575 |
},
|
|
|
576 |
onkeyup : function( element ) {
|
|
|
577 |
if ( $( element ).valid() ) {
|
|
|
578 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
579 |
} else {
|
|
|
580 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
581 |
}
|
|
|
582 |
},
|
|
|
583 |
highlight: function( element ) {
|
|
|
584 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
585 |
},
|
|
|
586 |
unhighlight: function( element ) {
|
|
|
587 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
588 |
},
|
3240 |
idir |
589 |
|
3260 |
idir |
590 |
});
|
|
|
591 |
};
|
3208 |
idir |
592 |
|
|
|
593 |
|
|
|
594 |
/**
|
3260 |
idir |
595 |
* validation des champs étendus
|
3208 |
idir |
596 |
*/
|
3260 |
idir |
597 |
WidgetSaisie.prototype.chpEtendusValidation = function() {
|
|
|
598 |
var lthis = this;
|
|
|
599 |
var $thisForm = $( '#form-supp' ),
|
|
|
600 |
elements =
|
|
|
601 |
'.checkbox,'+
|
|
|
602 |
'.radio,'+
|
|
|
603 |
'.checkboxes,'+
|
|
|
604 |
'.select,'+
|
|
|
605 |
'textarea,'+
|
|
|
606 |
'input[type=text]:not(.collect-other),'+
|
|
|
607 |
'input[type=email],'+
|
|
|
608 |
'input[type=number],'+
|
|
|
609 |
'input[type=range],'+
|
|
|
610 |
'input[type=date]',
|
|
|
611 |
speFields = ['checkbox','radio','checkboxes','select'],
|
|
|
612 |
spefieldsCount = speFields.length,
|
|
|
613 |
chpSuppValidation = {
|
|
|
614 |
rules : {},
|
|
|
615 |
messages : {},
|
|
|
616 |
minmax : []
|
|
|
617 |
},
|
|
|
618 |
errors = {},
|
|
|
619 |
namesListFields = [],
|
|
|
620 |
picked = '';
|
3208 |
idir |
621 |
|
3260 |
idir |
622 |
$( elements, $thisForm ).each( function() {
|
|
|
623 |
for( var fieldsClass = 0; spefieldsCount > fieldsClass; fieldsClass++ ) {
|
|
|
624 |
if ( valeurOk( $( this ).attr( 'required' ) ) && $( this ).hasClass( speFields[fieldsClass] ) && !valeurOk( chpSuppValidation.rules[ dataName ] ) ) {
|
|
|
625 |
var dataName = $( this ).data( 'name' );
|
3240 |
idir |
626 |
|
3260 |
idir |
627 |
namesListFields.push( dataName );
|
|
|
628 |
chpSuppValidation.rules[ dataName ] = { required : true };
|
3240 |
idir |
629 |
|
3260 |
idir |
630 |
if ( valeurOk( $( '.other', $( this ) ) ) ) {
|
|
|
631 |
picked = ( 'select' === speFields[fieldsClass] ) ? ':selected' : ':checked';
|
|
|
632 |
chpSuppValidation.rules[ 'collect-other-' + dataName.replace( '[]', '' ) ] = {
|
|
|
633 |
required : '#other-' + dataName.replace( '[]', '' ) + picked,
|
|
|
634 |
minlength: 1
|
|
|
635 |
};
|
|
|
636 |
chpSuppValidation.messages[ 'collect-other-' + dataName.replace( '[]', '' ) ] = false;
|
|
|
637 |
}
|
|
|
638 |
chpSuppValidation.rules[ dataName ]['listFields'] = true;
|
|
|
639 |
chpSuppValidation.messages[ dataName ] = 'Ce champ est requis :\nVeuillez choisir une option, ou entrer une valeur autre valide.';
|
|
|
640 |
errors[dataName] = '.' + speFields[fieldsClass];
|
|
|
641 |
}
|
|
|
642 |
}
|
|
|
643 |
if ( valeurOk( $( this ).attr( 'name' ) ) && valeurOk ( $( this ).attr( 'required' ) ) && 0 > $.inArray( $( this ).attr( 'name' ) , namesListFields ) ) {
|
|
|
644 |
chpSuppValidation.rules[ $( this ).attr( 'name' ) ] = { required : true, minlength: 1 };
|
|
|
645 |
if(
|
|
|
646 |
( valeurOk( $( this ).attr( 'type' ), true, 'number' ) || valeurOk( $( this ).attr( 'type' ), true, 'range' ) ) &&
|
|
|
647 |
( valeurOk( $( this )[0].min ) || valeurOk( $( this )[0].max ) )
|
|
|
648 |
) {
|
|
|
649 |
chpSuppValidation.rules[ $( this ).attr('name') ]['minMaxOk'] = true;
|
|
|
650 |
chpSuppValidation.messages[ $( this ).attr('name') ] = lthis.validerMinMax( $( this )[0] ).message;
|
|
|
651 |
}
|
|
|
652 |
}
|
|
|
653 |
});
|
|
|
654 |
if ( valeurOk( chpSuppValidation.rules ) ) {
|
|
|
655 |
$.each( chpSuppValidation.rules, function( key ) {
|
|
|
656 |
if ( !valeurOk( chpSuppValidation.messages[key] ) ) {
|
|
|
657 |
chpSuppValidation.messages[key] = 'Ce champ est requis :\nVeuillez entrer une valeur valide.';
|
|
|
658 |
}
|
|
|
659 |
});
|
|
|
660 |
if ( 0 < Object.keys( errors ).length ) {
|
|
|
661 |
chpSuppValidation['errors'] = errors;
|
|
|
662 |
}
|
|
|
663 |
}
|
|
|
664 |
return chpSuppValidation;
|
3208 |
idir |
665 |
};
|
|
|
666 |
|
3260 |
idir |
667 |
WidgetSaisie.prototype.validerMinMax = function( element ) {
|
3208 |
idir |
668 |
|
3260 |
idir |
669 |
var mMCond = new Boolean(),
|
|
|
670 |
minCond = parseFloat( element.value ) >= parseFloat( element.min ),
|
|
|
671 |
maxCond = parseFloat( element.value ) <= parseFloat( element.max ),
|
|
|
672 |
messageMnMx = 'La valeur entrée doit être',
|
|
|
673 |
returnMnMx = { cond : true , message : '' };
|
3208 |
idir |
674 |
|
3260 |
idir |
675 |
if(
|
|
|
676 |
( valeurOk( element.type, true, 'number' ) || valeurOk( element.type, true, 'range' ) ) &&
|
|
|
677 |
( valeurOk( element.min ) || valeurOk( element.max ) )
|
|
|
678 |
) {
|
|
|
679 |
if ( element.min && element.max ) {
|
|
|
680 |
messageMnMx += ' comprise entre ' + element.min + ' et ' + element.max;
|
|
|
681 |
mnMxCond = ( minCond && maxCond );
|
|
|
682 |
} else if ( element.min ) {
|
|
|
683 |
messageMnMx += ' supérieure à ' + element.min;
|
|
|
684 |
mnMxCond = minCond;
|
|
|
685 |
} else {
|
|
|
686 |
messageMnMx += ' inférieure à ' + element.max;
|
|
|
687 |
mnMxCond = maxCond;
|
|
|
688 |
}
|
|
|
689 |
returnMnMx.cond = mnMxCond;
|
|
|
690 |
returnMnMx.message = messageMnMx;
|
|
|
691 |
}
|
|
|
692 |
return returnMnMx;
|
3208 |
idir |
693 |
|
|
|
694 |
};
|
|
|
695 |
|
|
|
696 |
|
3260 |
idir |
697 |
WidgetSaisie.prototype.definirReglesFormValidator = function() {
|
|
|
698 |
var formSuppValidation = this.chpEtendusValidation();
|
3208 |
idir |
699 |
|
3260 |
idir |
700 |
$( '#form-supp' ).validate({
|
|
|
701 |
onclick : function( element ) {
|
|
|
702 |
if (
|
|
|
703 |
(
|
|
|
704 |
valeurOk( element.type, true, 'checkbox' ) ||
|
|
|
705 |
valeurOk( element.type, true, 'radio' )
|
|
|
706 |
) &&
|
|
|
707 |
(
|
|
|
708 |
!valeurOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':checked' ) ) ||
|
|
|
709 |
valeurOk( $( '.' + $( element ).attr( 'name' ).replace( '[]', '' ) + ':not(.other):checked' ) ) ||
|
|
|
710 |
!valeurOk( $( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ) ) ||
|
|
|
711 |
$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) ||
|
|
|
712 |
(
|
|
|
713 |
$( '#other-' + $( element ).attr( 'name' ).replace( '[]', '' ) ).is( ':checked' ) &&
|
|
|
714 |
$( element ).closest( '.control-group' ).hasClass('error')
|
|
|
715 |
)
|
|
|
716 |
)
|
|
|
717 |
) {
|
|
|
718 |
$( element ).valid();
|
|
|
719 |
if ( $( element ).valid() ) {
|
|
|
720 |
$( element ).closest( '.control-group' ).removeClass( 'error' );
|
|
|
721 |
$( element ).next( $( 'span.error' ) ).remove();
|
|
|
722 |
} else {
|
|
|
723 |
$( element ).closest( '.control-group' ).addClass( 'error' );
|
|
|
724 |
}
|
|
|
725 |
}
|
|
|
726 |
return false;
|
|
|
727 |
},
|
|
|
728 |
rules : formSuppValidation.rules,
|
|
|
729 |
messages : formSuppValidation.messages,
|
|
|
730 |
errorPlacement : function( error , element ) {
|
|
|
731 |
if ( 0 < Object.keys( formSuppValidation.errors ).length ) {
|
|
|
732 |
var errorsKeys = Object.keys( formSuppValidation.errors ),
|
|
|
733 |
thisKey = '',
|
|
|
734 |
errorsFlag = true;
|
|
|
735 |
for ( i = 0 ; i < errorsKeys.length ; i++ ) {
|
|
|
736 |
thisKey = errorsKeys[i];
|
|
|
737 |
if( $( element ).attr( 'name' ) === thisKey ) {
|
|
|
738 |
$( formSuppValidation.errors[thisKey] ).append( error );
|
|
|
739 |
errorsFlag = false;
|
|
|
740 |
}
|
|
|
741 |
}
|
|
|
742 |
if ( errorsFlag ) {
|
|
|
743 |
error.insertAfter( element );
|
|
|
744 |
}
|
|
|
745 |
} else {
|
|
|
746 |
error.insertAfter( element );
|
|
|
747 |
}
|
|
|
748 |
}
|
|
|
749 |
});
|
3208 |
idir |
750 |
|
3260 |
idir |
751 |
$( '#form-supp .select' ).change( function() {
|
|
|
752 |
$( this ).valid();
|
|
|
753 |
});
|
3208 |
idir |
754 |
|
3260 |
idir |
755 |
$( 'input[type=date]' ).on( 'input', function() {
|
|
|
756 |
$( this ).valid();
|
|
|
757 |
});
|
3208 |
idir |
758 |
|
3260 |
idir |
759 |
$( '#form-observation' ).validate({
|
|
|
760 |
rules : {
|
|
|
761 |
date_releve : {
|
|
|
762 |
required : true,
|
|
|
763 |
'dateCel' : true
|
|
|
764 |
},
|
|
|
765 |
latitude : {
|
|
|
766 |
range: [-90, 90]
|
|
|
767 |
},
|
|
|
768 |
longitude : {
|
|
|
769 |
range: [-180, 180]
|
|
|
770 |
}
|
|
|
771 |
}
|
|
|
772 |
});
|
3208 |
idir |
773 |
|
3260 |
idir |
774 |
$( '#form-observateur' ).validate({
|
|
|
775 |
rules : {
|
|
|
776 |
courriel : {
|
|
|
777 |
required : true,
|
|
|
778 |
email : true,
|
|
|
779 |
'userEmailOk' : true
|
|
|
780 |
},
|
|
|
781 |
courriel_confirmation : {
|
|
|
782 |
required : true,
|
|
|
783 |
equalTo : '#courriel'
|
|
|
784 |
}
|
|
|
785 |
}
|
|
|
786 |
});
|
3208 |
idir |
787 |
};
|
|
|
788 |
|
|
|
789 |
WidgetSaisie.prototype.validerFormulaire = function() {
|
3260 |
idir |
790 |
var observateur = $( '#form-observateur' ).valid();
|
|
|
791 |
var obs = $( '#form-observation' ).valid();
|
|
|
792 |
var images = valeurOk( $( '#miniatures .miniature' ) );
|
|
|
793 |
var taxon = ( valeurOk( $( '#taxon' ).data( 'numNomSel' ) ) || valeurOk( $( '#taxon-liste' ).data( 'numNomSel' ) ) );
|
|
|
794 |
var geoloc = ( $( '#latitude' ).valid() && $( '#longitude' ).valid() );
|
|
|
795 |
var chpsSupp = new Boolean();
|
|
|
796 |
if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
797 |
chpsSupp = ( function () {
|
|
|
798 |
var otherFlag = $( '#form-supp' ).valid();
|
|
|
799 |
if( valeurOk( $( '.other', $( '#form-supp' ) ) ) ) {
|
|
|
800 |
$( '.other', $( '#form-supp' ) ).each( function() {
|
|
|
801 |
var picked = ( $( this ).data( 'element' ) !== 'select' ) ? ':checked' : ':selected';
|
|
|
802 |
if ( $( this ).is( picked ) && valeurOk( $( this ).val(), true, 'other' ) ) {
|
|
|
803 |
otherFlag = false;
|
|
|
804 |
}
|
|
|
805 |
});
|
|
|
806 |
}
|
|
|
807 |
return otherFlag;
|
|
|
808 |
})();
|
|
|
809 |
} else {
|
|
|
810 |
chpsSupp = true;
|
|
|
811 |
}
|
3208 |
idir |
812 |
|
3260 |
idir |
813 |
( geoloc ) ? this.masquerPanneau( '#dialogue-geoloc-ko' ) : this.afficherPanneau( '#dialogue-geoloc-ko' );
|
|
|
814 |
( observateur ) ? this.masquerPanneau( '#dialogue-utilisateur-non-identifie' ) : this.afficherPanneau( '#dialogue-utilisateur-non-identifie' );
|
|
|
815 |
if ( images || taxon ) {
|
|
|
816 |
this.masquerPanneau( '#dialogue-taxon-or-image' );
|
|
|
817 |
this.masquerPanneau( '#dialogue-image-or-taxon' );
|
|
|
818 |
} else {
|
|
|
819 |
this.afficherPanneau( '#dialogue-taxon-or-image' );
|
|
|
820 |
this.afficherPanneau( '#dialogue-image-or-taxon' );
|
|
|
821 |
}
|
|
|
822 |
return ( observateur && obs && ( images || taxon ) && chpsSupp );
|
3208 |
idir |
823 |
};
|
|
|
824 |
|
3260 |
idir |
825 |
// Fichier Images *************************************************************/
|
|
|
826 |
/**
|
|
|
827 |
* Affiche la miniature d'une image temporaire (formulaire) qu'on a ajoutée à l'obs
|
|
|
828 |
*/
|
|
|
829 |
WidgetSaisie.prototype.afficherMiniature = function( reponse ) {
|
|
|
830 |
if ( this.debug ) {
|
|
|
831 |
var debogage = $( 'debogage', reponse ).text();
|
|
|
832 |
//console.log( 'Débogage upload : '+debogage);
|
|
|
833 |
}
|
|
|
834 |
var message = $( 'message', reponse ).text();
|
|
|
835 |
if ( valeurOk( message ) ) {
|
|
|
836 |
$( '#miniature-msg' ).append( message );
|
|
|
837 |
} else {
|
|
|
838 |
$( '#miniatures' ).append( this.creerWidgetMiniature( reponse ) );
|
|
|
839 |
}
|
|
|
840 |
$( '#ajouter-obs' ).removeAttr( 'disabled' );
|
3208 |
idir |
841 |
};
|
|
|
842 |
|
3260 |
idir |
843 |
/**
|
|
|
844 |
* Crée la miniature d'une image temporaire (formulaire), avec le bouton pour l'effacer
|
|
|
845 |
*/
|
|
|
846 |
WidgetSaisie.prototype.creerWidgetMiniature = function( reponse ) {
|
|
|
847 |
var miniatureUrl = $( 'miniature-url', reponse ).text();
|
|
|
848 |
var imgNom = $( 'image-nom', reponse ).text();
|
|
|
849 |
var html =
|
|
|
850 |
'<div class="miniature mb-3 mr-3">'+
|
|
|
851 |
'<img class="miniature-img" class="miniature img-rounded" alt="' + imgNom + '" src="' + miniatureUrl + '"/>'+
|
|
|
852 |
'<a class="effacer-miniature"><i class="far fa-trash-alt"></i></a>'+
|
|
|
853 |
'</div>'
|
|
|
854 |
return html;
|
3208 |
idir |
855 |
};
|
|
|
856 |
|
3260 |
idir |
857 |
/**
|
|
|
858 |
* Retourne true si l'extension de l'image 'nom' est .jpg ou .jpeg
|
|
|
859 |
*/
|
|
|
860 |
WidgetSaisie.prototype.verifierFormat = function( nom ) {
|
|
|
861 |
var parts = nom.split( '.' );
|
|
|
862 |
extension = parts[ parts.length - 1 ];
|
|
|
863 |
return ( 'jpeg' === extension.toLowerCase() || 'jpg' === extension.toLowerCase() );
|
3208 |
idir |
864 |
};
|
|
|
865 |
|
3260 |
idir |
866 |
/**
|
|
|
867 |
* Efface une miniature (formulaire)
|
|
|
868 |
*/
|
|
|
869 |
WidgetSaisie.prototype.supprimerMiniature = function( miniature ) {
|
|
|
870 |
miniature.parents( '.miniature' ).remove();
|
3208 |
idir |
871 |
};
|
|
|
872 |
|
3260 |
idir |
873 |
// Referentiel ****************************************************************/
|
|
|
874 |
// N'est pas utilisé en cas de taxon-liste
|
|
|
875 |
WidgetSaisie.prototype.surChangementReferentiel = function() {
|
|
|
876 |
this.nomSciReferentiel = $( '#referentiel' ).val();
|
|
|
877 |
//réinitialise taxon.val
|
|
|
878 |
$( '#taxon' ).val( '' );
|
|
|
879 |
$( '#taxon' ).data( 'numNomSel', 0 );
|
|
|
880 |
// this.initialiserAutocompleteCommune();
|
|
|
881 |
// this.initialiserGoogleMap( false );
|
3208 |
idir |
882 |
};
|
|
|
883 |
|
3260 |
idir |
884 |
// Ajouter Obs ****************************************************************/
|
|
|
885 |
/**
|
|
|
886 |
* Ajoute une observation saisie dans le formulaire à la liste des observations à transmettre
|
|
|
887 |
*/
|
|
|
888 |
WidgetSaisie.prototype.ajouterObs = function() {
|
|
|
889 |
// Fermeture automatique des dialogue de transmission de données
|
|
|
890 |
// @WARNING TEST
|
|
|
891 |
$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
|
|
|
892 |
$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
|
|
|
893 |
|
|
|
894 |
if ( this.validerFormulaire() ) {
|
|
|
895 |
this.masquerPanneau( '#dialogue-form-invalide' );
|
|
|
896 |
this.obsNbre = this.obsNbre + 1;
|
|
|
897 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
898 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
899 |
this.afficherObs();
|
|
|
900 |
this.stockerObsData();
|
|
|
901 |
this.supprimerMiniatures();
|
|
|
902 |
if( !this.especeImposee ) {
|
|
|
903 |
$( '#taxon' ).val( '' );
|
|
|
904 |
$( '#taxon' ).data( 'numNomSel', '' )
|
|
|
905 |
.data( 'nomRet','' )
|
|
|
906 |
.data( 'numNomRet', '' )
|
|
|
907 |
.data( 'nt', '' )
|
|
|
908 |
.data( 'famille', '' );
|
|
|
909 |
if( this.isTaxonListe ) {
|
|
|
910 |
$( '#taxon-liste' ).find( 'option' ).each( function() {
|
|
|
911 |
if ( $( this ).hasClass( 'choisir' ) ) {
|
|
|
912 |
$( this ).attr( 'selected', true );
|
|
|
913 |
} else {
|
|
|
914 |
$( this ).attr( 'selected', false );
|
|
|
915 |
}
|
|
|
916 |
});
|
|
|
917 |
$( '#taxon-input-groupe' ).addClass( 'hidden' );
|
|
|
918 |
$('#taxon-autre').val('');
|
|
|
919 |
}
|
|
|
920 |
}
|
|
|
921 |
if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
922 |
$( '#form-supp' ).validate().resetForm();
|
|
|
923 |
// if ( valeurOk( $( '#form-supp' ) ) ) {
|
|
|
924 |
}
|
|
|
925 |
$( '#barre-progression-upload' ).attr( 'aria-valuemax', this.obsNbre );
|
|
|
926 |
$( '#barre-progression-upload .sr-only' ).text( '0/' + this.obsNbre + ' ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
927 |
} else {
|
|
|
928 |
this.afficherPanneau( '#dialogue-form-invalide' );
|
|
|
929 |
}
|
3208 |
idir |
930 |
};
|
|
|
931 |
|
|
|
932 |
/**
|
3260 |
idir |
933 |
* Affiche une observation dans la liste des observations à transmettre
|
|
|
934 |
*/
|
|
|
935 |
WidgetSaisie.prototype.afficherObs = function() {
|
|
|
936 |
|
|
|
937 |
var numNomSel = $( '#taxon' ).data( 'numNomSel' ),
|
|
|
938 |
taxon = $( '#taxon' ).val(),
|
|
|
939 |
referentiel = '',
|
|
|
940 |
commune = '',
|
|
|
941 |
inseeLatitudeLongitude = '',
|
|
|
942 |
lieudit = '',
|
|
|
943 |
station = '',
|
|
|
944 |
milieu = '',
|
|
|
945 |
commentaires = '';
|
|
|
946 |
|
|
|
947 |
if ( valeurOk( numNomSel ) ) {
|
|
|
948 |
referentiel = '<span class="referentiel-obs">' + '[' + this.nomSciReferentiel + ']' + '</span>';
|
|
|
949 |
}
|
|
|
950 |
if ( valeurOk( $( '#commune-nom' ).val() ) ) {
|
|
|
951 |
commune = ' ' + this.msgTraduction( 'lieu-obs' ) + ' <span class="commune">' + $( '#commune-nom' ).val() + '</span> ';
|
|
|
952 |
}
|
|
|
953 |
if ( valeurOk( $( '#commune-insee' ).val() ) && valeurOk( $( '#latitude' ).val() ) && valeurOk( $( '#longitude' ).val() ) ) {
|
|
|
954 |
inseeLatitudeLongitude = '(INSEE Commune:' + $('#commune-insee').val() + ') [' + $( '#latitude' ).val() + ' / ' + $( '#longitude' ).val() + ']';
|
|
|
955 |
}
|
|
|
956 |
if ( valeurOk( $( '#lieudit' ).val() ) ) {
|
|
|
957 |
lieudit = '<span>' + this.msgTraduction( 'lieu-dit' ) + ' :</span> ' + $( '#lieudit' ).val() + ' ';
|
|
|
958 |
}
|
|
|
959 |
if ( valeurOk( $( '#station' ).val() ) ) {
|
|
|
960 |
station = '<span>' + this.msgTraduction( 'station' ) + ' :</span> ' + $( '#station' ).val() + ' ';
|
|
|
961 |
}
|
|
|
962 |
if ( valeurOk( $( '#milieu' ).val() ) ) {
|
|
|
963 |
milieu = '<span>' + this.msgTraduction( 'milieu' ) + ' :</span> ' + $( '#milieu' ).val() + ' ';
|
|
|
964 |
}
|
|
|
965 |
if ( valeurOk( $( '#notes' ).val() ) ) {
|
|
|
966 |
commentaires = this.msgTraduction( 'commentaires' ) + ' : <span class="discretion">' + $( '#notes' ).val() + '</span>' + ' ';
|
|
|
967 |
}
|
|
|
968 |
|
|
|
969 |
var responsivDiff1 = '',
|
|
|
970 |
responsivDiff2 = '',
|
|
|
971 |
responsivDiff3 = '',
|
|
|
972 |
responsivDiff4 = '',
|
|
|
973 |
responsivDiff5 = '',
|
|
|
974 |
responsivDiff6 = '';
|
|
|
975 |
if ( window.matchMedia( '(min-width: 576px)' ).matches ) {
|
|
|
976 |
/* La largeur minimum de l'affichage est 600 px inclus */
|
|
|
977 |
responsivDiff1 = ' droite';
|
|
|
978 |
responsivDiff2 = '<div></div>';
|
|
|
979 |
responsivDiff3 = '<div class="row">';
|
|
|
980 |
responsivDiff4 = ' col-md-2 col-sm-4';
|
|
|
981 |
responsivDiff5 = ' class="col-md-9 col-sm-7"';
|
|
|
982 |
responsivDiff6 = '</div>';
|
|
|
983 |
}
|
|
|
984 |
|
|
|
985 |
|
|
|
986 |
$( '#liste-obs' ).prepend(
|
|
|
987 |
'<div id="obs' + this.obsNbre + '" class="obs obs' + this.obsNbre + ' mb-2">'+
|
|
|
988 |
|
|
|
989 |
'<div '+
|
|
|
990 |
'class="obs-action" '+
|
|
|
991 |
'title="' + this.msgTraduction( 'supprimer-observation-liste' ) + '"'+
|
|
|
992 |
'>'+
|
|
|
993 |
'<button class="btn btn-danger supprimer-obs' + responsivDiff1 + '" value="'+ this.obsNbre + '" title="' + this.msgTraduction( 'obs-numero' ) + this.obsNbre + '">'+
|
|
|
994 |
'<i class="far fa-trash-alt"></i>'+
|
|
|
995 |
'</button>'+
|
|
|
996 |
responsivDiff2 +
|
|
|
997 |
'</div> '+
|
|
|
998 |
|
|
|
999 |
responsivDiff3 +
|
|
|
1000 |
'<div class="thumbnail' + responsivDiff4 + '">'+
|
|
|
1001 |
this.ajouterImgMiniatureAuTransfert()+
|
|
|
1002 |
'</div>'+
|
|
|
1003 |
'<div' + responsivDiff5 + '>'+
|
|
|
1004 |
'<ul class="unstyled">'+
|
|
|
1005 |
'<li>'+
|
|
|
1006 |
'<span class="nom-sci">' + taxon + '</span> '+
|
|
|
1007 |
this.ajouterNumNomSel( numNomSel ) +
|
|
|
1008 |
referentiel +
|
|
|
1009 |
commune +
|
|
|
1010 |
inseeLatitudeLongitude +
|
|
|
1011 |
' ' + this.msgTraduction( 'obs-le' ) + ' ' +
|
|
|
1012 |
'<span class="date">' + this.fournirDate( $( '#date_releve' ).val() ) + '</span>'+
|
|
|
1013 |
'</li>'+
|
|
|
1014 |
'<li>'+
|
|
|
1015 |
lieudit +
|
|
|
1016 |
station +
|
|
|
1017 |
milieu +
|
|
|
1018 |
'</li>'+
|
|
|
1019 |
'<li>'+
|
|
|
1020 |
commentaires +
|
|
|
1021 |
'</li>'+
|
|
|
1022 |
'</ul>'+
|
|
|
1023 |
'</div>'+
|
|
|
1024 |
responsivDiff6+
|
|
|
1025 |
'</div>'
|
|
|
1026 |
);
|
|
|
1027 |
|
|
|
1028 |
$( '#zone-liste-obs' ).removeClass( 'hidden' );
|
|
|
1029 |
};
|
|
|
1030 |
|
|
|
1031 |
/**
|
3208 |
idir |
1032 |
* Ajoute une boîte de miniatures avec défilement des images,
|
|
|
1033 |
* pour une obs de la liste des obs à transmettre
|
|
|
1034 |
*/
|
|
|
1035 |
WidgetSaisie.prototype.ajouterImgMiniatureAuTransfert = function() {
|
3260 |
idir |
1036 |
var html =
|
|
|
1037 |
'<div class="defilement-miniatures">'+
|
|
|
1038 |
'<figure class="centre">'+
|
|
|
1039 |
'<img class="miniature align-middle" alt="Aucune photo" src="' + this.pasDePhotoIconeUrl + '" width="80%" />'+
|
|
|
1040 |
'</figure>'+
|
|
|
1041 |
'</div>',
|
|
|
1042 |
miniatures = '',
|
|
|
1043 |
premiere = true,
|
|
|
1044 |
centre = '';
|
|
|
1045 |
defilVisible = '';
|
3208 |
idir |
1046 |
|
3260 |
idir |
1047 |
if ( valeurOk( $( '#miniatures img' ) ) ) {
|
|
|
1048 |
$( '#miniatures img' ).each( function() {
|
|
|
1049 |
var imgVisible = ( premiere ) ? 'miniature-selectionnee' : 'miniature-cachee';
|
|
|
1050 |
premiere = false;
|
3208 |
idir |
1051 |
|
3260 |
idir |
1052 |
var css = ( $( this ).hasClass( 'b64' ) ) ? 'miniature b64' : 'miniature',
|
|
|
1053 |
src = $( this ).attr( 'src' ),
|
|
|
1054 |
alt = $( this ).attr( 'alt' ),
|
|
|
1055 |
miniature = '<img class="' + css + ' ' + imgVisible + ' align-middle" alt="' + alt + '"src="' + src + '" width="80%" />';
|
3208 |
idir |
1056 |
|
3260 |
idir |
1057 |
miniatures += miniature;
|
|
|
1058 |
});
|
|
|
1059 |
if ( 1 === $( '#miniatures img' ).length ) {
|
|
|
1060 |
centre = 'centre';
|
|
|
1061 |
defilVisible = ' defilement-miniatures-cache';
|
|
|
1062 |
}
|
|
|
1063 |
html =
|
|
|
1064 |
'<div class="defilement-miniatures">'+
|
|
|
1065 |
'<a href="#" class="defilement-miniatures-gauche mr-1' + defilVisible + '"><i class="fas fa-chevron-circle-left"></i></a>'+
|
|
|
1066 |
'<figure class="' + centre + '">'+
|
|
|
1067 |
miniatures+
|
|
|
1068 |
'</figure>'+
|
|
|
1069 |
'<a href="#" class="defilement-miniatures-droite ml-1' + defilVisible + '"><i class="fas fa-chevron-circle-right"></i></a>'+
|
|
|
1070 |
'</div>';
|
|
|
1071 |
}
|
|
|
1072 |
return html;
|
|
|
1073 |
};
|
3208 |
idir |
1074 |
|
3260 |
idir |
1075 |
WidgetSaisie.prototype.fournirDate = function( dateObs ) {
|
|
|
1076 |
if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
|
|
|
1077 |
return dateObs;
|
|
|
1078 |
} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
|
|
|
1079 |
var dateArray = dateObs.split( '-' );
|
|
|
1080 |
return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
|
|
|
1081 |
} else {
|
|
|
1082 |
console.log( 'erreur date : ' + dateObs )
|
|
|
1083 |
}
|
|
|
1084 |
}
|
3208 |
idir |
1085 |
|
3260 |
idir |
1086 |
WidgetSaisie.prototype.ajouterNumNomSel = function( numNomSel ) {
|
|
|
1087 |
var nn = '<span class="nn">[nn' + numNomSel + ']</span>';
|
|
|
1088 |
if ( !valeurOk( numNomSel ) ) {
|
|
|
1089 |
nn = '<span class="alert-error">[' + this.msgTraduction( 'non-lie-au-ref' ) + ']</span>';
|
|
|
1090 |
}
|
|
|
1091 |
return nn;
|
3208 |
idir |
1092 |
};
|
|
|
1093 |
|
|
|
1094 |
|
3260 |
idir |
1095 |
WidgetSaisie.prototype.stockerObsData = function() {
|
|
|
1096 |
var lthis = this;
|
3208 |
idir |
1097 |
|
3260 |
idir |
1098 |
var numNomSel = $( '#taxon' ).data( 'numNomSel' ),
|
|
|
1099 |
nomSel = $( '#taxon' ).val(),
|
|
|
1100 |
nomRet = $( '#taxon' ).data( 'nomRet' ),
|
|
|
1101 |
numNomRet = $( '#taxon' ).data( 'numNomRet' ),
|
|
|
1102 |
numTaxon = $( '#taxon' ).data( 'nt' ),
|
|
|
1103 |
famille = $( '#taxon' ).data( 'famille' ),
|
|
|
1104 |
referentiel = ( !valeurOk( numNomSel ) ) ? '' : this.nomSciReferentiel;
|
3208 |
idir |
1105 |
|
3260 |
idir |
1106 |
$( '#liste-obs' ).data( 'obsId' + this.obsNbre, {
|
|
|
1107 |
'num_nom_sel' : numNomSel,
|
|
|
1108 |
'nom_sel' : nomSel,
|
|
|
1109 |
'nom_ret' : nomRet,
|
|
|
1110 |
'num_nom_ret' : numNomRet,
|
|
|
1111 |
'num_taxon' : numTaxon,
|
|
|
1112 |
'famille' : famille,
|
|
|
1113 |
'referentiel' : referentiel,
|
|
|
1114 |
'certitude' : $( '#certitude' ).val(),
|
|
|
1115 |
'date' : lthis.fournirDate( $( '#date_releve' ).val() ),
|
|
|
1116 |
'notes' : $( '#notes' ).val().trim(),
|
|
|
1117 |
'pays' : $( '#pays' ).val(),
|
|
|
1118 |
'commune_nom' : $( '#commune-nom' ).val(),
|
|
|
1119 |
'commune_code_insee' : $( '#commune-insee' ).val(),
|
|
|
1120 |
'latitude' : $( '#latitude' ).val(),
|
|
|
1121 |
'longitude' : $( '#longitude' ).val(),
|
|
|
1122 |
'altitude' : $( '#altitude' ).val(),
|
|
|
1123 |
// début valeurs pour test:
|
|
|
1124 |
// 'commune_nom' : 'Montpellier',
|
|
|
1125 |
// 'commune_code_insee' : '34172',
|
|
|
1126 |
// 'latitude' : '43.608320',
|
|
|
1127 |
// 'longitude' : '3.880196',
|
|
|
1128 |
// 'altitude' : '0',
|
|
|
1129 |
//fin valeurs pour test
|
|
|
1130 |
'lieudit' : $( '#lieudit' ).val(),
|
|
|
1131 |
'station' : $( '#station' ).val(),
|
|
|
1132 |
'milieu' : $( '#milieu' ).val(),
|
|
|
1133 |
//Ajout des champs images
|
|
|
1134 |
'image_nom' : lthis.getNomsImgsOriginales(),
|
|
|
1135 |
'image_b64' : lthis.getB64ImgsOriginales(),
|
|
|
1136 |
// Ajout des champs étendus de l'obs
|
|
|
1137 |
'obs_etendue' : lthis.getObsChpEtendus()
|
|
|
1138 |
});
|
|
|
1139 |
};
|
3208 |
idir |
1140 |
|
3260 |
idir |
1141 |
WidgetSaisie.prototype.getNomsImgsOriginales = function() {
|
|
|
1142 |
var noms = new Array();
|
|
|
1143 |
$( '.miniature-img' ).each( function() {
|
|
|
1144 |
noms.push( $( this ).attr( 'alt' ) );
|
|
|
1145 |
});
|
|
|
1146 |
return noms;
|
3208 |
idir |
1147 |
};
|
|
|
1148 |
|
3260 |
idir |
1149 |
WidgetSaisie.prototype.getB64ImgsOriginales = function() {
|
|
|
1150 |
var b64 = new Array();
|
|
|
1151 |
$( '.miniature-img' ).each( function() {
|
|
|
1152 |
if ( $( this ).hasClass( 'b64' ) ) {
|
|
|
1153 |
b64.push( $( this ).attr( 'src' ) );
|
|
|
1154 |
} else if ( $( this ).hasClass( 'b64-canvas' ) ) {
|
|
|
1155 |
b64.push( $( this ).data( 'b64' ) );
|
|
|
1156 |
}
|
|
|
1157 |
});
|
|
|
1158 |
return b64;
|
3208 |
idir |
1159 |
};
|
|
|
1160 |
|
3260 |
idir |
1161 |
/**
|
|
|
1162 |
* Retourne un Array contenant les valeurs des champs étendus
|
|
|
1163 |
*/
|
|
|
1164 |
WidgetSaisie.prototype.getObsChpEtendus = function() {
|
|
|
1165 |
var champs = new Array(),
|
|
|
1166 |
$thisForm = $( '#form-supp' ),
|
|
|
1167 |
elements =
|
|
|
1168 |
'input[type=text]:not(.collect-other),'+
|
|
|
1169 |
'input[type=checkbox]:checked,'+
|
|
|
1170 |
'input[type=radio]:checked,'+
|
|
|
1171 |
'input[type=email],'+
|
|
|
1172 |
'input[type=number],'+
|
|
|
1173 |
'input[type=range],'+
|
|
|
1174 |
'input[type=date],'+
|
|
|
1175 |
'textarea,'+
|
|
|
1176 |
'.select',
|
|
|
1177 |
retour = new Array();
|
3208 |
idir |
1178 |
|
3260 |
idir |
1179 |
$( elements, $thisForm ).each( function() {
|
|
|
1180 |
if ( valeurOk( $( this ).val() ) && ( valeurOk( $( this ).attr( 'name' ) ) || valeurOk( $( this ).data( 'name' ) ) ) ) {
|
|
|
1181 |
var valeur = $( this ).val(),
|
|
|
1182 |
cle = ( valeurOk( $( this ).attr( 'name' ) ) ) ? $( this ).attr( 'name' ) : $( this ).data( 'name' );
|
|
|
1183 |
if ( cle in champs ) {
|
|
|
1184 |
champs[cle] += ';' + valeur;
|
|
|
1185 |
} else {
|
|
|
1186 |
champs[cle] = valeur;
|
|
|
1187 |
}
|
|
|
1188 |
}
|
|
|
1189 |
});
|
|
|
1190 |
for( var key in champs ) {
|
|
|
1191 |
retour.push({ 'cle' : key , 'valeur' : champs[key] });
|
|
|
1192 |
};
|
|
|
1193 |
return retour;
|
3208 |
idir |
1194 |
};
|
|
|
1195 |
|
3260 |
idir |
1196 |
/**
|
|
|
1197 |
* Efface toutes les miniatures (formulaire)
|
|
|
1198 |
*/
|
|
|
1199 |
WidgetSaisie.prototype.supprimerMiniatures = function() {
|
|
|
1200 |
$( '#miniatures' ).empty();
|
|
|
1201 |
$( '#miniature-msg' ).empty();
|
3208 |
idir |
1202 |
};
|
|
|
1203 |
|
3260 |
idir |
1204 |
WidgetSaisie.prototype.surChangementNbreObs = function() {
|
|
|
1205 |
if ( 0 === this.obsNbre ) {
|
|
|
1206 |
$( '#transmettre-obs' ).attr( 'disabled', 'disabled' );
|
|
|
1207 |
$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
|
|
|
1208 |
} else if ( 0 < this.obsNbre && this.obsNbre < this.obsMaxNbre ) {
|
|
|
1209 |
$( '#transmettre-obs' ).removeAttr( 'disabled' );
|
|
|
1210 |
$( '#ajouter-obs' ).removeAttr( 'disabled' );
|
|
|
1211 |
} else if ( this.obsNbre >= this.obsMaxNbre ) {
|
|
|
1212 |
$( '#ajouter-obs' ).attr( 'disabled', 'disabled' );
|
|
|
1213 |
this.afficherPanneau( '#dialogue-bloquer-creer-obs' );
|
|
|
1214 |
}
|
3208 |
idir |
1215 |
};
|
|
|
1216 |
|
3260 |
idir |
1217 |
WidgetSaisie.prototype.defilerMiniatures = function( element ) {
|
3208 |
idir |
1218 |
|
3260 |
idir |
1219 |
var miniatureSelectionne = element.siblings( 'figure' ).find( 'img.miniature-selectionnee' );
|
|
|
1220 |
miniatureSelectionne.removeClass( 'miniature-selectionnee' );
|
|
|
1221 |
miniatureSelectionne.addClass( 'miniature-cachee' );
|
3208 |
idir |
1222 |
|
3260 |
idir |
1223 |
var miniatureAffichee = miniatureSelectionne;
|
3208 |
idir |
1224 |
|
3260 |
idir |
1225 |
if( element.hasClass( 'defilement-miniatures-gauche' ) ) {
|
|
|
1226 |
if( 0 !== miniatureSelectionne.prev( '.miniature' ).length ) {
|
|
|
1227 |
miniatureAffichee = miniatureSelectionne.prev( '.miniature' );
|
|
|
1228 |
} else {
|
|
|
1229 |
miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).last();
|
|
|
1230 |
}
|
|
|
1231 |
} else {
|
|
|
1232 |
if( 0 !== miniatureSelectionne.next('.miniature').length ) {
|
|
|
1233 |
miniatureAffichee = miniatureSelectionne.next( '.miniature' );
|
|
|
1234 |
} else {
|
|
|
1235 |
miniatureAffichee = miniatureSelectionne.siblings( '.miniature' ).first();
|
|
|
1236 |
}
|
|
|
1237 |
}
|
|
|
1238 |
miniatureAffichee.addClass( 'miniature-selectionnee' );
|
|
|
1239 |
miniatureAffichee.removeClass( 'miniature-cachee' );
|
|
|
1240 |
};
|
3208 |
idir |
1241 |
|
3260 |
idir |
1242 |
WidgetSaisie.prototype.supprimerObs = function( selector ) {
|
|
|
1243 |
var obsId = $( selector ).val();
|
|
|
1244 |
// Problème avec IE 6 et 7
|
|
|
1245 |
if ( 'Supprimer' === obsId ) {
|
|
|
1246 |
obsId = $( selector ).attr( 'title' );
|
|
|
1247 |
}
|
|
|
1248 |
this.supprimerObsParId( obsId );
|
3208 |
idir |
1249 |
};
|
|
|
1250 |
|
3260 |
idir |
1251 |
WidgetSaisie.prototype.supprimerObsParId = function( obsId ) {
|
|
|
1252 |
this.obsNbre = this.obsNbre - 1;
|
|
|
1253 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
1254 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
1255 |
$( '.obs' + obsId ).remove();
|
|
|
1256 |
$( '#liste-obs' ).removeData( 'obsId' + obsId );
|
|
|
1257 |
};
|
3208 |
idir |
1258 |
|
3260 |
idir |
1259 |
WidgetSaisie.prototype.transmettreObs = function() {
|
|
|
1260 |
var observations = $( '#liste-obs' ).data();
|
|
|
1261 |
if ( this.debug ) {
|
|
|
1262 |
console.log( observations );
|
|
|
1263 |
}
|
|
|
1264 |
if ( !valeurOk( typeof observations, true, 'object' ) ) {
|
|
|
1265 |
this.afficherPanneau( '#dialogue-zero-obs' );
|
|
|
1266 |
} else {
|
|
|
1267 |
this.nbObsEnCours = 1;
|
|
|
1268 |
this.nbObsTransmises = 0;
|
|
|
1269 |
this.totalObsATransmettre = $.map( observations, function( n, i ) {
|
|
|
1270 |
return i;
|
|
|
1271 |
}).length;
|
|
|
1272 |
this.depilerObsPourEnvoi();
|
|
|
1273 |
}
|
|
|
1274 |
return false;
|
|
|
1275 |
};
|
3208 |
idir |
1276 |
|
3260 |
idir |
1277 |
WidgetSaisie.prototype.depilerObsPourEnvoi = function() {
|
|
|
1278 |
var observations = $( '#liste-obs' ).data();
|
|
|
1279 |
// la boucle est factice car on utilise un tableau
|
|
|
1280 |
// dont on a besoin de n'extraire que le premier élément
|
|
|
1281 |
// or javascript n'a pas de méthode cross browsers pour extraire les clés
|
|
|
1282 |
// TODO: utiliser var.keys quand ça sera plus répandu
|
|
|
1283 |
// ou bien utiliser un vrai tableau et pas un objet
|
|
|
1284 |
for ( var obsNum in observations ) {
|
|
|
1285 |
var obsATransmettre = {
|
|
|
1286 |
'projet' : this.tagProjet,
|
|
|
1287 |
'tag-obs' : this.tagObs,
|
|
|
1288 |
'tag-img' : this.tagImg
|
|
|
1289 |
};
|
|
|
1290 |
var utilisateur = {
|
|
|
1291 |
id_utilisateur : $( '#id_utilisateur' ).val(),
|
|
|
1292 |
prenom : $( '#prenom' ).val(),
|
|
|
1293 |
nom : $( '#nom' ).val(),
|
|
|
1294 |
courriel : $( '#courriel' ).val()
|
|
|
1295 |
};
|
|
|
1296 |
obsATransmettre['utilisateur'] = utilisateur;
|
|
|
1297 |
obsATransmettre[obsNum] = observations[obsNum];
|
|
|
1298 |
var idObsNumerique = obsNum.replace( 'obsId', '' );
|
|
|
1299 |
if( '' !== idObsNumerique ) {
|
|
|
1300 |
this.envoyerObsAuCel( idObsNumerique, obsATransmettre );
|
|
|
1301 |
}
|
|
|
1302 |
break;
|
|
|
1303 |
}
|
|
|
1304 |
};
|
3208 |
idir |
1305 |
|
3260 |
idir |
1306 |
WidgetSaisie.prototype.envoyerObsAuCel = function( idObs, observation ) {
|
|
|
1307 |
var lthis = this;
|
3208 |
idir |
1308 |
|
3260 |
idir |
1309 |
var erreurMsg = '';
|
|
|
1310 |
$.ajax({
|
|
|
1311 |
url : lthis.serviceSaisieUrl,
|
|
|
1312 |
type : 'POST',
|
|
|
1313 |
data : observation,
|
|
|
1314 |
dataType : 'json',
|
|
|
1315 |
beforeSend : function() {
|
|
|
1316 |
$( '#dialogue-obs-transaction-ko' ).addClass( 'hidden' );
|
|
|
1317 |
$( '#dialogue-obs-transaction-ok' ).addClass( 'hidden' );
|
|
|
1318 |
$( '.alert-txt' ).empty();
|
|
|
1319 |
$( '.alert-txt .msg-erreur' ).remove();
|
|
|
1320 |
$( '.alert-txt .msg-debug' ).remove();
|
|
|
1321 |
$( '#chargement' ).removeClass( 'hidden' );
|
|
|
1322 |
},
|
|
|
1323 |
success : function( data, textStatus, jqXHR ) {
|
|
|
1324 |
// mise à jour du nombre d'obs à transmettre
|
|
|
1325 |
// et suppression de l'obs
|
|
|
1326 |
lthis.supprimerObsParId( idObs );
|
|
|
1327 |
lthis.nbObsEnCours++;
|
|
|
1328 |
// mise à jour du statut
|
|
|
1329 |
lthis.mettreAJourProgression();
|
|
|
1330 |
if( 0 < lthis.obsNbre ) {
|
|
|
1331 |
// dépilement de la suivante
|
|
|
1332 |
lthis.depilerObsPourEnvoi();
|
|
|
1333 |
}
|
|
|
1334 |
},
|
|
|
1335 |
statusCode : {
|
|
|
1336 |
500 : function( jqXHR, textStatus, errorThrown ) {
|
|
|
1337 |
erreurMsg += lthis.msgTraduction( 'erreur' ) + ' 500 :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
|
|
|
1338 |
}
|
|
|
1339 |
},
|
|
|
1340 |
error : function( jqXHR, textStatus, errorThrown ) {
|
|
|
1341 |
erreurMsg += lthis.msgTraduction( 'erreur-ajax' ) + ' :\ntype : ' + textStatus + ' ' + errorThrown + '\n';
|
|
|
1342 |
try {
|
|
|
1343 |
reponse = jQuery.parseJSON( jqXHR.responseText );
|
|
|
1344 |
if ( null !== reponse ) {
|
|
|
1345 |
$.each( reponse, function( cle, valeur ) {
|
|
|
1346 |
erreurMsg += valeur + '\n';
|
|
|
1347 |
});
|
|
|
1348 |
}
|
|
|
1349 |
} catch( e ) {
|
|
|
1350 |
erreurMsg += lthis.msgTraduction( 'erreur-inconnue' ) + ' : ' + jqXHR.responseText;
|
|
|
1351 |
}
|
|
|
1352 |
},
|
|
|
1353 |
complete : function( jqXHR, textStatus ) {
|
|
|
1354 |
var debugMsg = extraireEnteteDebug( jqXHR );
|
3208 |
idir |
1355 |
|
3260 |
idir |
1356 |
if ( '' !== erreurMsg ) {
|
|
|
1357 |
if ( lthis.debug ) {
|
|
|
1358 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-erreur">' + erreurMsg + '</pre>' );
|
|
|
1359 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
|
|
|
1360 |
}
|
|
|
1361 |
var hrefCourriel = 'mailto:cel_remarques@tela-botanica.org?'+
|
|
|
1362 |
'subject=Dysfonctionnement du widget de saisie ' + lthis.tagProjet+
|
|
|
1363 |
'&body=' + erreurMsg + '%0D%0ADébogage :%0D%0A' + debugMsg;
|
3208 |
idir |
1364 |
|
3260 |
idir |
1365 |
// mise en valeur de l'obs en erreur + scroll vers celle ci en changeant le hash
|
|
|
1366 |
$( '#obs' + idObs + ' div div' ).addClass( 'obs-erreur' );
|
|
|
1367 |
window.location.hash = 'obs' + idObs;
|
|
|
1368 |
|
|
|
1369 |
$( '#dialogue-obs-transaction-ko .alert-txt' ).append(
|
|
|
1370 |
$( '#tpl-transmission-ko' ).clone()
|
|
|
1371 |
.find( '.courriel-erreur' )
|
|
|
1372 |
.attr( 'href', hrefCourriel )
|
|
|
1373 |
.end()
|
|
|
1374 |
.html()
|
|
|
1375 |
);
|
|
|
1376 |
$( '#dialogue-obs-transaction-ko' ).removeClass( 'hidden' );
|
|
|
1377 |
$( '#chargement' ).addClass( 'hidden' );
|
|
|
1378 |
lthis.initialiserBarreProgression;
|
|
|
1379 |
} else {
|
|
|
1380 |
if ( lthis.debug ) {
|
|
|
1381 |
$( '#dialogue-obs-transaction-ok .alert-txt' ).append( '<pre class="msg-debug">Débogage : ' + debugMsg + '</pre>' );
|
|
|
1382 |
}
|
|
|
1383 |
if( 0 === lthis.obsNbre ) {
|
|
|
1384 |
setTimeout( function() {
|
|
|
1385 |
$( '#chargement' ).addClass( 'hidden' );
|
|
|
1386 |
$( '#dialogue-obs-transaction-ok .alert-txt' ).append( $( '#tpl-transmission-ok' ).clone().html() );
|
|
|
1387 |
$( '#dialogue-obs-transaction-ok' ).removeClass( 'hidden' );
|
|
|
1388 |
window.location.hash = 'dialogue-obs-transaction-ok';
|
|
|
1389 |
lthis.initialiserObs.bind( lthis );
|
|
|
1390 |
}, 1500 );
|
|
|
1391 |
}
|
|
|
1392 |
}
|
|
|
1393 |
}
|
|
|
1394 |
});
|
3208 |
idir |
1395 |
};
|
|
|
1396 |
|
3260 |
idir |
1397 |
WidgetSaisie.prototype.mettreAJourProgression = function() {
|
|
|
1398 |
this.nbObsTransmises++;
|
3208 |
idir |
1399 |
|
3260 |
idir |
1400 |
var pct = ( this.nbObsTransmises / this.totalObsATransmettre ) * 100;
|
3208 |
idir |
1401 |
|
3260 |
idir |
1402 |
$( '#barre-progression-upload' ).attr( 'aria-valuenow', this.nbObsTransmises );
|
|
|
1403 |
$( '#barre-progression-upload' ).css( 'width', pct + '%' );
|
|
|
1404 |
$( '#barre-progression-upload .sr-only' ).text( this.nbObsTransmises + '/' + this.totalObsATransmettre + ' ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
1405 |
if( 0 === this.obsNbre ) {
|
|
|
1406 |
$( '.progress' ).removeClass( 'active' );
|
|
|
1407 |
$( '.progress' ).removeClass( 'progress-bar-striped' );
|
|
|
1408 |
}
|
3120 |
delphine |
1409 |
};
|
|
|
1410 |
|
3260 |
idir |
1411 |
WidgetSaisie.prototype.initialiserBarreProgression = function() {
|
|
|
1412 |
$( '#barre-progression-upload' ).attr( 'aria-valuenow', 0 );
|
|
|
1413 |
$( '#barre-progression-upload' ).css( 'width', '0%' );
|
|
|
1414 |
$( '#barre-progression-upload .sr-only' ).text( '0/0 ' + this.msgTraduction( 'observations-transmises' ) );
|
|
|
1415 |
$( '.progress' ).addClass( 'active' );
|
|
|
1416 |
$( '.progress' ).addClass( 'progress-bar-striped' );
|
3120 |
delphine |
1417 |
};
|
|
|
1418 |
|
3260 |
idir |
1419 |
WidgetSaisie.prototype.initialiserObs = function() {
|
|
|
1420 |
this.obsNbre = 0;
|
|
|
1421 |
this.nbObsTransmises = 0;
|
|
|
1422 |
this.nbObsEnCours = 0;
|
|
|
1423 |
this.totalObsATransmettre = 0;
|
|
|
1424 |
this.initialiserBarreProgression();
|
|
|
1425 |
$( '.obs-nbre' ).text( this.obsNbre );
|
|
|
1426 |
$( '.obs-nbre' ).triggerHandler( 'changement' );
|
|
|
1427 |
$( '#liste-obs' ).removeData();
|
|
|
1428 |
$( '.obs' ).remove();
|
|
|
1429 |
$( '#dialogue-bloquer-creer-obs' ).addClass( 'hidden' );
|
3120 |
delphine |
1430 |
};
|
|
|
1431 |
|
3208 |
idir |
1432 |
WidgetSaisie.prototype.afficherPanneau = function( selecteur ) {
|
3260 |
idir |
1433 |
$( selecteur )
|
|
|
1434 |
.removeClass( 'hidden')
|
|
|
1435 |
.hide()
|
|
|
1436 |
.show( 600 )
|
|
|
1437 |
.delay( this.dureeMessage )
|
|
|
1438 |
.hide( 600 );
|
3120 |
delphine |
1439 |
};
|
|
|
1440 |
|
3208 |
idir |
1441 |
WidgetSaisie.prototype.masquerPanneau = function( selecteur ) {
|
3260 |
idir |
1442 |
$( selecteur ).addClass( 'hidden' );
|
3208 |
idir |
1443 |
};
|
|
|
1444 |
|
3260 |
idir |
1445 |
WidgetSaisie.prototype.fermerPanneauAlert = function() {
|
|
|
1446 |
$( this ).parentsUntil( '.zone-alerte', '.alert' ).addClass( 'hidden' );
|
|
|
1447 |
};
|
|
|
1448 |
|
3240 |
idir |
1449 |
/**
|
|
|
1450 |
* Si la langue est définie dans this.langue, et si des messages sont définis
|
|
|
1451 |
* dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
|
|
|
1452 |
* langue en cours. S'il n'est pas trouvé, retourne la version française (par
|
|
|
1453 |
* défaut); si celle-ci n'exite pas, retourne "N/A".
|
|
|
1454 |
*/
|
|
|
1455 |
WidgetSaisie.prototype.msgTraduction = function( cle ) {
|
3260 |
idir |
1456 |
var msg = 'N/A';
|
|
|
1457 |
if ( this.msgs ) {
|
|
|
1458 |
if ( this.langue in this.msgs && cle in this.msgs[this.langue] ) {
|
|
|
1459 |
msg = this.msgs[this.langue][cle];
|
|
|
1460 |
} else if ( cle in this.msgs['fr'] ) {
|
|
|
1461 |
msg = this.msgs['fr'][cle];
|
|
|
1462 |
}
|
|
|
1463 |
}
|
|
|
1464 |
return msg;
|
3240 |
idir |
1465 |
};
|
|
|
1466 |
|
3208 |
idir |
1467 |
// lib hors objet --
|
|
|
1468 |
|
|
|
1469 |
/**
|
3260 |
idir |
1470 |
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
|
|
|
1471 |
* et de comparer à une autre valeur :
|
|
|
1472 |
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
|
|
|
1473 |
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
|
|
|
1474 |
* Un booléen est une variable valide : on retourne true
|
|
|
1475 |
* @param { string || number || object || undefined } valeur
|
|
|
1476 |
* @param { boolean } sensComparaison : true = rechercher, false = refuser
|
|
|
1477 |
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
|
|
|
1478 |
* @returns {boolean}
|
|
|
1479 |
*/
|
|
|
1480 |
function valeurOk( valeur, sensComparaison = true, comparer = undefined ) {
|
|
|
1481 |
|
|
|
1482 |
if ( 'boolean' !== typeof valeur ) {
|
|
|
1483 |
switch( typeof valeur ) {
|
|
|
1484 |
case 'string' :
|
|
|
1485 |
retour = ( '' !== valeur );
|
|
|
1486 |
break;
|
|
|
1487 |
case 'number' :
|
|
|
1488 |
retour = ( NaN !== valeur );
|
|
|
1489 |
break;
|
|
|
1490 |
case 'object' :
|
|
|
1491 |
retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
|
|
|
1492 |
if ( undefined !== valeur.length ) {
|
|
|
1493 |
retour = ( retour && 0 < valeur.length );
|
|
|
1494 |
}
|
|
|
1495 |
break;
|
|
|
1496 |
case 'undefined' :
|
|
|
1497 |
default :
|
|
|
1498 |
retour = false;
|
|
|
1499 |
}
|
|
|
1500 |
if ( retour && comparer !== undefined ) {
|
|
|
1501 |
var resultComparaison = ( comparer === valeur );
|
|
|
1502 |
retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
|
|
|
1503 |
}
|
|
|
1504 |
return retour;
|
|
|
1505 |
} else {
|
|
|
1506 |
// Un booléen est une valeur valable
|
|
|
1507 |
return true;
|
|
|
1508 |
}
|
|
|
1509 |
}
|
|
|
1510 |
|
|
|
1511 |
/**
|
3208 |
idir |
1512 |
* Stope l'évènement courant quand on clique sur un lien.
|
|
|
1513 |
* Utile pour Chrome, Safari...
|
|
|
1514 |
*/
|
|
|
1515 |
function arreter( evenement ) {
|
3260 |
idir |
1516 |
if ( evenement.stopPropagation ) {
|
|
|
1517 |
evenement.stopPropagation();
|
|
|
1518 |
}
|
|
|
1519 |
if ( evenement.preventDefault ) {
|
|
|
1520 |
evenement.preventDefault();
|
|
|
1521 |
}
|
|
|
1522 |
return false;
|
3208 |
idir |
1523 |
}
|
|
|
1524 |
|
|
|
1525 |
/**
|
|
|
1526 |
* Extrait les données de désinsectisation d'une requête AJAX de jQuery
|
|
|
1527 |
* @param jqXHR
|
|
|
1528 |
* @returns {String}
|
|
|
1529 |
*/
|
|
|
1530 |
function extraireEnteteDebug( jqXHR ) {
|
3260 |
idir |
1531 |
var msgDebug = '';
|
|
|
1532 |
if ( '' !== jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) ) {
|
|
|
1533 |
var debugInfos = jQuery.parseJSON( jqXHR.getResponseHeader( 'X-DebugJrest-Data' ) );
|
|
|
1534 |
if ( null !== debugInfos ) {
|
|
|
1535 |
$.each( debugInfos, function( cle, valeur ) {
|
|
|
1536 |
msgDebug += valeur + '\n';
|
|
|
1537 |
});
|
|
|
1538 |
}
|
|
|
1539 |
}
|
|
|
1540 |
return msgDebug;
|
3208 |
idir |
1541 |
}
|
|
|
1542 |
|
|
|
1543 |
/*
|
|
|
1544 |
* jQuery UI Autocomplete HTML Extension
|
|
|
1545 |
*
|
|
|
1546 |
* Copyright 2010, Scott González (http://scottgonzalez.com)
|
|
|
1547 |
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
1548 |
*
|
|
|
1549 |
* http://github.com/scottgonzalez/jquery-ui-extensions
|
|
|
1550 |
*
|
|
|
1551 |
* Adaptation par Aurélien Peronnet pour la mise en gras des noms de taxons valides
|
|
|
1552 |
*/
|
3260 |
idir |
1553 |
( function( $ ) {
|
|
|
1554 |
var proto = $.ui.autocomplete.prototype,
|
|
|
1555 |
initSource = proto._initSource;
|
3208 |
idir |
1556 |
|
3260 |
idir |
1557 |
WidgetSaisie.prototype.filter = function( array, term ) {
|
|
|
1558 |
var matcher = new RegExp( $.ui.autocomplete.escapeRegex( term ), 'i' );
|
|
|
1559 |
return $.grep( array, function( value ) {
|
|
|
1560 |
return matcher.test( $( '<div>' ).html( value.label || value.value || value ).text() );
|
|
|
1561 |
});
|
|
|
1562 |
}
|
|
|
1563 |
$.extend( proto, {
|
|
|
1564 |
_initSource: function() {
|
|
|
1565 |
if ( this.options.html && $.isArray( this.options.source ) ) {
|
|
|
1566 |
this.source = function( request, response ) {
|
|
|
1567 |
response( filter( this.options.source, request.term ) );
|
|
|
1568 |
};
|
|
|
1569 |
} else {
|
|
|
1570 |
initSource.call( this );
|
|
|
1571 |
}
|
|
|
1572 |
},
|
|
|
1573 |
_renderItem: function( ul, item) {
|
|
|
1574 |
if ( item.retenu ) {
|
|
|
1575 |
item.label = '<strong>' + item.label + '</strong>';
|
|
|
1576 |
}
|
3208 |
idir |
1577 |
|
3260 |
idir |
1578 |
return $( '<li></li>' )
|
|
|
1579 |
.data( 'item.autocomplete', item )
|
|
|
1580 |
.append( $( '<a></a>' )[ ( this.options.html ) ? 'html' : 'text' ]( item.label ) )
|
|
|
1581 |
.appendTo( ul );
|
|
|
1582 |
}
|
|
|
1583 |
});
|
|
|
1584 |
})( jQuery );
|