Subversion Repositories eFlore/Applications.cel

Rev

Rev 3318 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3318 idir 1
function UtilsLg() {
2
	// this.infosUtilisateur = null;
3
	this.langue = $( 'body' ).data( 'lang' );
4
	this.urlRacine = window.location.origin;
5
	// système de traduction minimaliste
6
	this.msgs = {
7
		fr: {
8
			'arbre'                             : 'Arbre',
9
			'dupliquer'                         : 'Dupliquer',
10
			'saisir-lichens'                    : 'Saisir les lichens',
11
			'format-non-supporte'               : 'Le format de fichier n\'est pas supporté, les formats acceptés sont',
12
			'image-deja-chargee'                : 'Cette image a déjà été utilisée',
13
			'date-incomplete'                   : 'Format : jj/mm/aaaa.',
14
			'observations-transmises'           : 'observations transmises',
15
			'supprimer-observation-liste'       : 'Supprimer cette observation de la liste à transmettre',
16
			'milieu'                            : 'Milieu',
17
			'commentaires'                      : 'Commentaires',
18
			'non-lie-au-ref'                    : 'non lié au référentiel',
19
			'obs-le'                            : 'le',
20
			'non-connexion'                     : 'Veuillez entrer votre login et votre mot de passe',
21
			'obs-numero'                        : 'Observation n°',
22
			'erreur'                            : 'Erreur',
23
			'erreur-inconnue'                   : 'Erreur inconnue',
24
			'erreur-image'                      : 'Erreur lors du chargement des images',
25
			'erreur-ajax'                       : 'Erreur Ajax',
26
			'erreur-chargement'                 : 'Erreur lors du chargement de l\'observation',
27
			'erreur-chargement-obs-utilisateur' : 'Erreur lors du chargement des observations de cet utilisateur',
28
			'erreur-formulaire'                 : 'Erreur: impossible de charger le formulaire',
29
			'lieu-obs'                          : 'observé à',
30
			'lieu-dit'                          : 'Lieu-dit',
31
			'station'                           : 'Station',
32
			'date-rue'                          : 'Un releve existe dejà à cette date pour cette rue.',
33
			'rechargement-page'                 : 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.'
34
		},
35
		en: {
36
			'arbre'                             : 'Tree',
37
			'dupliquer'                         : 'Duplicate',
38
			'saisir-lichens'                    : 'Enter the lichens',
39
			'format-non-supporte'               : 'The file format is not supported, the accepted formats are',
40
			'image-deja-chargee'                : 'This image has already been used',
41
			'date-incomplete'                   : 'Format: dd/mm/yyyy.',
42
			'observations-transmises'           : 'observations transmitted',
43
			'supprimer-observation-liste'       : 'Delete this observation from the list to be transmitted',
44
			'milieu'                            : 'Environment',
45
			'commentaires'                      : 'Comments',
46
			'non-lie-au-ref'                    : 'unrelated to the referencial ',
47
			'obs-le'                            : 'the',
48
			'non-connexion'                     : 'Please enter your login and password',
49
			'obs-numero'                        : 'Observation number ',
50
			'erreur'                            : 'Error',
51
			'erreur-inconnue'                   : 'Unknown error',
52
			'erreur-image'                      : 'Error loading the images',
53
			'erreur-ajax'                       : 'Ajax Error',
54
			'erreur-chargement'                 : 'Error loading the observation',
55
			'erreur-chargement-obs-utilisateur' : 'Error loading this user\'s observations',
56
			'erreur-formulaire'                 : 'Error: couldn\'t load form',
57
			'lieu-obs'                          : 'observed at',
58
			'lieu-dit'                          : 'Locality',
59
			'station'                           : 'Place',
60
			'date-rue'                          : 'A record already exists on this date for this street',
61
			'rechargement-page'                 : 'Are you sure you want to leave the page?\nAll untransmitted observations will be lost.'
62
		}
63
	};
64
}
65
 
66
 
67
UtilsLg.prototype.chargerForm = function( nomSquelette, lgFormObj ) {
68
	const lthis = this;
69
	var urlSqueletteArbres = this.urlRacine + '/widget:cel:lg?squelette=' + nomSquelette;
70
 
71
	$.ajax({
72
		url: urlSqueletteArbres,
73
		type: 'get',
74
		success: function( squelette ) {
75
			if ( lthis.valOk( squelette ) ) {
76
				lgFormObj.chargerSquelette( squelette, nomSquelette );
77
			}
78
		},
79
		error: function() {
80
			$( '#charger-form' ).html( lthis.msgTraduction( 'erreur-formulaire' ) );
81
		}
82
	});
83
};
84
 
85
UtilsLg.prototype.chargerFormLichens = function( squelette, nomSquelette ) {
86
	if ( this.valOk( $( '#releve-data' ).val() ) ) {
87
		$( '#charger-form' ).html( squelette );
88
		const releveDatas = $.parseJSON( $( '#releve-data' ).val() );
89
		const nbArbres    = releveDatas.length -1;
90
 
91
		for ( var i = 1; i <= nbArbres ; i++ ) {
92
			$( '#choisir-arbre' ).append(
93
				'<option value="' + i + '">'+
94
					this.msgTraduction( 'arbre' ) + ' ' + i +
95
				'</option>'
96
			);
97
		}
98
	}
99
};
100
 
101
/**
102
 * Stocke en Json les valeurs du relevé dans en value d'un input hidden
103
 */
104
UtilsLg.prototype.formaterReleveData = function( releveDatas ) {
105
	var releve  = [],
106
		obs  = releveDatas.obs,
107
		obsE = releveDatas.obsE;
108
 
109
	releve[0] = {
110
		utilisateur        : obs.ce_utilisateur,
111
		date               : obs.date_observation,
112
		rue                : obsE.rue,
113
		'commune-nom'      : obs.zone_geo,
114
		'commune-insee'    : obs.ce_zone_geo,
115
		pays               : obs.pays,
116
		latitude           : obs.latitude,
117
		longitude          : obs.longitude,
118
		altitude           : obs.altitude,
119
		commentaires       : obs.commentaire
120
	};
121
	return releve;
122
};
123
 
124
/**
125
 * Stocke en Json les valeurs d'une obs
126
 */
127
UtilsLg.prototype.formaterArbreData = function( arbresDatas ) {
128
	var retour = {},
129
		obs          = arbresDatas.obs,
130
		obsE         = arbresDatas.obsE,
131
		miniatureImg = [];
132
	if( this.valOk( obs['miniature-img'] ) ) {
133
		miniatureImg = obs['miniature-img'];
134
	} else if ( this.valOk( obsE['miniature-img'] ) ) {
135
		miniatureImg = $.parseJSON( obsE['miniature-img'] );
136
	}
137
 
138
	retour = {
139
		'date_rue_commune'      : obs.date_observation + obsE.rue + obs.zone_geo,
140
		'num-arbre'             : obsE.num_arbre,
141
		'id_observation'        : obs.id_observation,
142
		'taxon'                 : {
143
			'numNomSel' : obs.nom_sel_nn,
144
			'value'     : obs.nom_sel,
145
			'nomRet'    : obs.nom_ret,
146
			'numNomRet' : obs.nom_ret_nn,
147
			'nt'        : obs.nt,
148
			'famille'   : obs.famille,
149
		},
150
		'miniature-img'         : miniatureImg,
151
		'referentiel'           : obs.nom_referentiel,
152
		'certitude'             : obs.certitude,
153
		'latitude-arbres'       : obsE['latitude-arbres'],
154
		'longitude-arbres'      : obsE['longitude-arbres'],
155
		'altitude-arbres'       : obsE['altitude-arbres'],
156
		'circonference'         : obsE.circonference,
157
		'face-ombre'            : obsE['face-ombre'],
158
		'com-arbres'            : obsE['com-arbres']
159
	};
160
	return retour;
161
};
162
 
163
UtilsLg.prototype.fournirDate = function( dateObs ) {
164
	if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
165
		return dateObs;
166
	} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
167
		var dateArray = dateObs.split( '-' );
168
		return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
169
	} else {
170
		console.log( 'erreur date : ' + dateObs )
171
	}
172
};
173
 
174
/**
175
 * Si la langue est définie dans this.langue, et si des messages sont définis
176
 * dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
177
 * langue en cours. S'il n'est pas trouvé, retourne la version française (par
178
 * défaut); si celle-ci n'exite pas, retourne "N/A".
179
 */
180
UtilsLg.prototype.msgTraduction = function( cle ) {
181
	var msg = 'N/A';
182
 
183
	if ( this.msgs ) {
184
		if ( this.langue in this.msgs && cle in this.msgs[this.langue] ) {
185
			msg = this.msgs[this.langue][cle];
186
		} else if ( cle in this.msgs['fr'] ) {
187
			msg = this.msgs['fr'][cle];
188
		}
189
	}
190
	return msg;
191
};
192
 
193
/**
194
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
195
* et de comparer à une autre valeur :
196
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
197
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
198
* Un booléen est une variable valide : on retourne true
199
* @param { string || number || object || undefined } valeur
200
* @param { boolean } sensComparaison : true = rechercher, false = refuser
201
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
202
* @returns {boolean}
203
*/
204
UtilsLg.prototype.valOk = function( valeur, sensComparaison = true, comparer = undefined ) {
205
	var retour = true;
206
	if ( 'boolean' !== typeof valeur ) {
207
		switch( typeof valeur ) {
208
			case 'string' :
209
				retour = ( '' !== valeur );
210
			 break;
211
			case 'number' :
212
					retour = ( NaN !== valeur );
213
				break;
214
			case 'object' :
215
					retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
216
					if (  null !== valeur && undefined !== valeur.length ) {
217
						retour = ( retour  && 0 < valeur.length );
218
					}
219
				break;
220
			case 'undefined' :
221
			default :
222
				retour = false;
223
		}
224
		if ( retour && comparer !== undefined ) {
225
			var resultComparaison = ( comparer === valeur );
226
			retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
227
		}
228
 
229
		return retour;
230
	} else {
231
		// Un booléen est une valeur valable
232
		return true;
233
	}
234
}
235
 
236
// Lib hors objet
237
 
238
/*************************************
239
 *  Fonctions de Style et Affichage  *
240
 *      des éléments "spéciaux"      *
241
 *************************************/
242
 
243
// Logique d'affichage pour le input type=file
244
function inputFile() {
245
  // Initialisation des variables
246
  var $fileInput  = $( '.input-file' ),
247
      $button     = $( '.label-file' );
248
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
249
  $( '#charger-form' ).on( 'keydown', '.label-file', function( event ) {
250
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
251
      $( '#' + $( this ).attr( 'for' ) + '.input-file' ).click();
252
    }
253
  });
254
}
255
 
256
// Style et affichage des list-checkboxes
257
function inputListCheckbox() {
258
  // On écoute le click sur une list-checkbox ('.selectBox')
259
  // à tout moment de son insertion dans le dom
260
  // _ S'assurer de bien viser la bonne list-checkbox
261
  // _ Au click sur un autre champ remballer la list-checkbox
262
  $( document ).click( function( event ) {
263
    var target = event.target;
264
 
265
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
266
      $( '.checkboxes' ).each( function () {
267
        $( this ).addClass( 'hidden' );
268
      });
269
      $( '.selectBox select.focus', '#zone-appli' ).each( function() {
270
        $( this ).removeClass( 'focus' );
271
      });
272
    }
273
  });
274
  $( '#zone-appli' ).on( 'click' , '.selectBox' , function() {
275
    // afficher/cacher le volet des checkboxes et focus
276
    $( this ).next().toggleClass( 'hidden' );
277
    $( this ).find( 'select' ).toggleClass( 'focus' );
278
 
279
    // Cacher le volet des autres checkboxes et retirer leur focus
280
    var $checkboxes = $( this ).next(),
281
        count = $( '.checkboxes' ).length;
282
 
283
    for ( var i = 0; i < count; i++ ) {
284
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
285
        var $otherListCheckboxes = $( '.checkboxes' )[i];
286
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
287
          $otherListCheckboxes.classList.add( 'hidden' );
288
        }
289
        if( $otherListCheckboxes.previousElementSibling.firstElementChild.classList.contains( 'focus' ) ) {
290
          $otherListCheckboxes.previousElementSibling.firstElementChild.classList.remove( 'focus' );
291
        }
292
      }
293
    }
294
  });
295
}
296
 
297
// Style et affichage des input type="range"
298
function inputRangeDisplayNumber() {
299
  $( 'input[type="range"]','#charger-form' ).each( function() {
300
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
301
  });
302
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
303
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
304
  });
305
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
306
    $( '.range-live-value' ).each( function() {
307
      var $this = $( this );
308
      $this.text( '' );
309
    });
310
  });
311
}
312
 
313
// Activation/Desactivation et contenu de la modale Bootstrap
314
// https://getbootstrap.com/docs/3.3/javascript/#modals
315
function newFieldsHelpModal() {
316
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
317
    var thisFieldKey = $( this ).data( 'key' ),
318
        fileMimeType = $( this ).data( 'mime-type' );
319
 
320
    // Titre
321
    $( '#help-modal-label' ).text( 'Aide pour : ' +  $( this ).data( 'name' ) );
322
    if( fileMimeType.match( 'image' ) ) {
323
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' );
324
      // var extention = 'jpg';
325
      $( '#print_content' ).append( '<img src="' + CHEMIN_FICHIERS + thisFieldKey + '.' + extention + '" style="max-width:100%" alt="' + thisFieldKey + '" />' );
326
    }
327
    // Sortie avec la touche escape
328
    $( '#help-modal' ).modal( { keyboard : true } );
329
    // Affichage
330
    $( '#help-modal' ).modal({ show: true });
331
    // Remplacer l'autofocus qui ne fonctionne plus en HTML5
332
    // Message dans la doc de bootstrap :
333
    // Due to how HTML5 defines its semantics,
334
    // the autofocus HTML attribute has no effect in Bootstrap modals.
335
    // To achieve the same effect, use some custom JavaScript
336
    $( '#help-modal' ).on( 'shown.bs.modal' , function () {
337
      $( '#myInput' ).trigger( 'focus' );
338
    })
339
    // Réinitialisation
340
    $( '#help-modal' ).on( 'hidden.bs.modal' , function () {
341
      $( '#help-modal-label' ).text();
342
      $( '#print_content' ).empty();
343
    })
344
  });
345
}
346
 
347
// Activation/Desactivation et contenu de la modale Bootstrap
348
// https://getbootstrap.com/docs/3.3/javascript/#modals
349
function projetHelpModale() {
350
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
351
    var fileMimeType = $( this ).data( 'mime-info' );
352
 
353
    // Titre
354
    $( '#help-modal-label' ).text( 'Aide du projet : ' +  $( '#titre-projet' ).text() );
355
    if( fileMimeType.match( 'image' ) ) {
356
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' );
357
      $( '#print_content' ).append( '<img src="' + CHEMIN_FICHIERS + 'info.' + extention + '" style="max-width:100%" alt="info projet" />' );
358
    }
359
    // Sortie avec la touche escape
360
    $( '#help-modal' ).modal( { keyboard : true } );
361
    // Affichage
362
    $( '#help-modal' ).modal({ show: true });
363
    // Remplacer l'autofocus qui ne fonctionne plus en HTML5
364
    // Message dans la doc de bootstrap :
365
    // Due to how HTML5 defines its semantics,
366
    // the autofocus HTML attribute has no effect in Bootstrap modals.
367
    // To achieve the same effect, use some custom JavaScript
368
    $( '#help-modal' ).on( 'shown.bs.modal' , function () {
369
      $( '#myInput' ).trigger( 'focus' );
370
    })
371
    // Réinitialisation
372
    $( '#help-modal' ).on( 'hidden.bs.modal' , function () {
373
      $( '#help-modal-label' ).text();
374
      $( '#print_content' ).empty();
375
    });
376
 
377
  });
378
}
379
 
380
// Faire apparaitre un champ text "Autre"
381
function onOtherOption() {
382
  const PREFIX = 'collect-other-';
383
 
384
  // Ajouter un champ texte pour "Autre"
385
  function optionAdd( otherId, $target, element, dataName ) {
386
    $target.after(
387
      '<div class="control-group">'+
388
        '<label'+
389
          ' for="' + otherId + '"'+
390
          ' class="' + otherId + '"'+
391
        '>'+
392
          'Autre option :'+
393
        '</label>'+
394
        '<input'+
395
          ' type="text"'+
396
          ' id="' + otherId + '"'+
397
          ' name="' + otherId + '"'+
398
          ' class="collect-other form-control"'+
399
          ' data-name="' + dataName + '"'+
400
          ' data-element="' + element + '"'+
401
        '>'+
402
      '</div>'
403
    );
404
    $( '#' + otherId ).focus();
405
  }
406
 
407
  // Supprimer un champ texte pour "Autre"
408
  function optionRemove( otherId ) {
409
    $( '.' + otherId + ', #' + otherId ).remove();
410
  }
411
 
412
  $( '.other', '#form-arbre' ).each( function() {
413
    if( $( this ).hasClass( 'is-select' ) ) {
414
      var dataName = $( this ).data( 'name' ),
415
          otherId  = PREFIX + dataName;
416
 
417
      // Insertion du champ "Autre" après les boutons
418
      optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName );
419
    } else if ( $( this ).is( ':checked' ) ) {
420
      var dataName = $( this ).data( 'name' ),
421
          otherId  = PREFIX + dataName,
422
          element = $( this ).data( 'element' );
423
      // Insertion du champ "Autre" après les boutons
424
      optionAdd( otherId, $( this ).parent( 'label' ), element, dataName );
425
    }
426
  });
427
 
428
  $( '#charger-form' ).on( 'change', '.select', function () {
429
    var dataName = $( this ).data( 'name' ),
430
        otherId  = PREFIX + dataName;
431
 
432
    if( 'other' === $( this ).val() ) {
433
        // Insertion du champ "Autre" après les boutons
434
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName );
435
      } else {
436
        // Suppression du champ autre
437
        optionRemove( otherId );
438
        $( this ).find( '.other' ).val( 'other' );
439
      }
440
  });
441
 
442
  $( '#charger-form' ).on( 'change', 'input[type=radio]', function () {
443
    var dataName = $( this ).data( 'name' ),
444
        otherId  = PREFIX + dataName;
445
 
446
    if( 'other' === $( this ).val() ) {
447
      // Insertion du champ "Autre" après les boutons
448
      optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName );
449
    } else {
450
      // Suppression du champ autre
451
      optionRemove( otherId );
452
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
453
    }
454
  });
455
 
456
  $( '#charger-form' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
457
    var dataName = $( this ).data( 'name' ),
458
        otherId  = PREFIX + dataName,
459
        element = $( this ).data( 'element' );
460
 
461
    if( $( this ).is( ':checked' ) ) {
462
        // Insertion du champ "Autre" après les boutons
463
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName );
464
      } else {
465
        // Suppression du champ autre
466
        optionRemove( otherId );
467
        $( this ).val( 'other' );
468
      }
469
  });
470
}
471
 
472
function collectOtherOption() {
473
  $( '#charger-form' ).on( 'change', '.collect-other', function () {
474
    var otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' );
475
    var element = $( this ).data( 'element' );
476
 
477
    if ( '' === $( this ).val() ){
478
      if ( 'select' === element ) {
479
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false ).val( 'other' );
480
      } else {
481
        $( '#other-' + otherIdSuffix ).prop( 'checked', false ).val( 'other' );
482
      }
483
      $( 'label.collect-other-' + otherIdSuffix ).remove();
484
      $( this ).remove();
485
    } else {
486
      if ( 'select' === element ) {
487
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
488
        $( '#' +  otherIdSuffix ).val( $( this ).val() );
489
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
490
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
491
      } else {
492
        if ( 'radio' === element ) {
493
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
494
        }
495
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
496
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
497
      }
498
    }
499
  });
500
}
501
 
502
/***************************
503
 *  Lancement des scripts  *
504
 ***************************/
505
const CHEMIN_FICHIERS = $( '#zone-appli' ).data('url-fichiers');
506
 
507
jQuery( document ).ready( function() {
508
  // Modale "aide" du projet
509
  projetHelpModale();
510
  // Affichage input file
511
  inputFile();
512
  // Affichage des List-checkbox
513
  inputListCheckbox();
514
  // Affichage des Range
515
  inputRangeDisplayNumber()
516
  // Modale "aide"
517
  newFieldsHelpModal();
518
  // Ajout/suppression d'un champ texte "Autre"
519
  onOtherOption();
520
  // Récupérer les données entrées dans "Autre"
521
  collectOtherOption();
522
});