Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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