Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
3318 idir 1
function UtilsStreets() {
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
			'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-plantes'                    : 'Enter the plants',
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
UtilsStreets.prototype.chargerForm = function( nomSquelette, streetsFormObj ) {
68
	const lthis = this;
69
	var urlSqueletteArbres = this.urlRacine + '/widget:cel:streets?squelette=' + nomSquelette;
70
 
71
	$.ajax({
72
		url: urlSqueletteArbres,
73
		type: 'get',
74
		success: function( squelette ) {
75
			if ( lthis.valOk( squelette ) ) {
76
				streetsFormObj.chargerSquelette( squelette, nomSquelette );
77
			}
78
		},
79
		error: function() {
80
			$( '#charger-form' ).html( lthis.msgTraduction( 'erreur-formulaire' ) );
81
		}
82
	});
83
};
84
 
85
UtilsStreets.prototype.chargerFormPlantes = 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
UtilsStreets.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
		'zone-pietonne'    : obsE['zone-pietonne'],
120
		'pres-lampadaires' : obsE['pres-lampadaires'],
121
		commentaires       : obs.commentaire
122
	};
123
	return releve;
124
};
125
 
126
/**
127
 * Stocke en Json les valeurs d'une obs
128
 */
129
UtilsStreets.prototype.formaterArbreData = function( arbresDatas ) {
130
	var retour = {},
131
		obs          = arbresDatas.obs,
132
		obsE         = arbresDatas.obsE,
133
		miniatureImg = [];
134
	if( this.valOk( obs['miniature-img'] ) ) {
135
		miniatureImg = obs['miniature-img'];
136
	} else if ( this.valOk( obsE['miniature-img'] ) ) {
137
		miniatureImg = $.parseJSON( obsE['miniature-img'] );
138
	}
139
 
140
	retour = {
141
		'date_rue_commune'      : obs.date_observation + obsE.rue + obs.zone_geo,
142
		'num-arbre'             : obsE.num_arbre,
143
		'id_observation'        : obs.id_observation,
144
		'taxon'                 : {
145
			'numNomSel' : obs.nom_sel_nn,
146
			'value'     : obs.nom_sel,
147
			'nomRet'    : obs.nom_ret,
148
			'numNomRet' : obs.nom_ret_nn,
149
			'nt'        : obs.nt,
150
			'famille'   : obs.famille,
151
		},
152
		'miniature-img'         : miniatureImg,
153
		'referentiel'           : obs.nom_referentiel,
154
		'certitude'             : obs.certitude,
155
		'latitude-arbres'       : obsE['latitude-arbres'],
156
		'longitude-arbres'      : obsE['longitude-arbres'],
157
		'altitude-arbres'       : obsE['altitude-arbres'],
158
		'circonference'         : obsE.circonference,
159
		'surface-pied'          : obsE['surface-pied'],
160
		'equipement-pied-arbre' : obsE['equipement-pied-arbre'],
161
		'tassement'             : obsE.tassement,
162
		'dejections'            : obsE.dejections,
163
		'com-arbres'            : obsE['com-arbres']
164
	};
165
	return retour;
166
};
167
 
168
UtilsStreets.prototype.fournirDate = function( dateObs ) {
169
	if ( /^[0-9]{2}\/[0-9]{2}\/[0-9]{4}$/.test( dateObs ) ) {
170
		return dateObs;
171
	} else if ( /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.test( dateObs ) ) {
172
		var dateArray = dateObs.split( '-' );
173
		return dateArray[2] + '/' + dateArray[1] + '/' + dateArray[0]
174
	} else {
175
		console.log( 'erreur date : ' + dateObs )
176
	}
177
};
178
 
179
/**
180
 * Si la langue est définie dans this.langue, et si des messages sont définis
181
 * dans this.msgs, tente de trouver le message dont la clé est [cle] dans la
182
 * langue en cours. S'il n'est pas trouvé, retourne la version française (par
183
 * défaut); si celle-ci n'exite pas, retourne "N/A".
184
 */
185
UtilsStreets.prototype.msgTraduction = function( cle ) {
186
	var msg = 'N/A';
187
 
188
	if ( this.msgs ) {
189
		if ( this.langue in this.msgs && cle in this.msgs[this.langue] ) {
190
			msg = this.msgs[this.langue][cle];
191
		} else if ( cle in this.msgs['fr'] ) {
192
			msg = this.msgs['fr'][cle];
193
		}
194
	}
195
	return msg;
196
};
197
 
198
/**
199
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
200
* et de comparer à une autre valeur :
201
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
202
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
203
* Un booléen est une variable valide : on retourne true
204
* @param { string || number || object || undefined } valeur
205
* @param { boolean } sensComparaison : true = rechercher, false = refuser
206
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
207
* @returns {boolean}
208
*/
209
UtilsStreets.prototype.valOk = function( valeur, sensComparaison = true, comparer = undefined ) {
210
	var retour = true;
211
	if ( 'boolean' !== typeof valeur ) {
212
		switch( typeof valeur ) {
213
			case 'string' :
214
				retour = ( '' !== valeur );
215
			 break;
216
			case 'number' :
217
					retour = ( NaN !== valeur );
218
				break;
219
			case 'object' :
220
					retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
221
					if (  null !== valeur && undefined !== valeur.length ) {
222
						retour = ( retour  && 0 < valeur.length );
223
					}
224
				break;
225
			case 'undefined' :
226
			default :
227
				retour = false;
228
		}
229
		if ( retour && comparer !== undefined ) {
230
			var resultComparaison = ( comparer === valeur );
231
			retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
232
		}
233
 
234
		return retour;
235
	} else {
236
		// Un booléen est une valeur valable
237
		return true;
238
	}
239
}
240
 
241
// Lib hors objet
242
 
243
/*************************************
244
 *  Fonctions de Style et Affichage  *
245
 *      des éléments "spéciaux"      *
246
 *************************************/
247
 
248
// Logique d'affichage pour le input type=file
249
function inputFile() {
250
  // Initialisation des variables
251
  var $fileInput  = $( '.input-file' ),
252
      $button     = $( '.label-file' );
253
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
254
  $( '#charger-form' ).on( 'keydown', '.label-file', function( event ) {
255
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
256
      $( '#' + $( this ).attr( 'for' ) + '.input-file' ).click();
257
    }
258
  });
259
}
260
 
261
// Style et affichage des list-checkboxes
262
function inputListCheckbox() {
263
  // On écoute le click sur une list-checkbox ('.selectBox')
264
  // à tout moment de son insertion dans le dom
265
  // _ S'assurer de bien viser la bonne list-checkbox
266
  // _ Au click sur un autre champ remballer la list-checkbox
267
  $( document ).click( function( event ) {
268
    var target = event.target;
269
 
270
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
271
      $( '.checkboxes' ).each( function () {
272
        $( this ).addClass( 'hidden' );
273
      });
274
      $( '.selectBox select.focus', '#zone-appli' ).each( function() {
275
        $( this ).removeClass( 'focus' );
276
      });
277
    }
278
  });
279
  $( '#zone-appli' ).on( 'click' , '.selectBox' , function() {
280
    // afficher/cacher le volet des checkboxes et focus
281
    $( this ).next().toggleClass( 'hidden' );
282
    $( this ).find( 'select' ).toggleClass( 'focus' );
283
 
284
    // Cacher le volet des autres checkboxes et retirer leur focus
285
    var $checkboxes = $( this ).next(),
286
        count = $( '.checkboxes' ).length;
287
 
288
    for ( var i = 0; i < count; i++ ) {
289
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
290
        var $otherListCheckboxes = $( '.checkboxes' )[i];
291
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
292
          $otherListCheckboxes.classList.add( 'hidden' );
293
        }
294
        if( $otherListCheckboxes.previousElementSibling.firstElementChild.classList.contains( 'focus' ) ) {
295
          $otherListCheckboxes.previousElementSibling.firstElementChild.classList.remove( 'focus' );
296
        }
297
      }
298
    }
299
  });
300
}
301
 
302
// Style et affichage des input type="range"
303
function inputRangeDisplayNumber() {
304
  $( 'input[type="range"]','#charger-form' ).each( function() {
305
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
306
  });
307
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
308
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
309
  });
310
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
311
    $( '.range-live-value' ).each( function() {
312
      var $this = $( this );
313
      $this.text( '' );
314
    });
315
  });
316
}
317
 
318
// Activation/Desactivation et contenu de la modale Bootstrap
319
// https://getbootstrap.com/docs/3.3/javascript/#modals
320
function newFieldsHelpModal() {
321
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
322
    var thisFieldKey = $( this ).data( 'key' ),
323
        fileMimeType = $( this ).data( 'mime-type' );
324
 
325
    // Titre
326
    $( '#help-modal-label' ).text( 'Aide pour : ' +  $( this ).data( 'name' ) );
327
    if( fileMimeType.match( 'image' ) ) {
328
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' );
329
      // var extention = 'jpg';
330
      $( '#print_content' ).append( '<img src="' + CHEMIN_FICHIERS + thisFieldKey + '.' + extention + '" style="max-width:100%" alt="' + thisFieldKey + '" />' );
331
    }
332
    // Sortie avec la touche escape
333
    $( '#help-modal' ).modal( { keyboard : true } );
334
    // Affichage
335
    $( '#help-modal' ).modal({ show: true });
336
    // Remplacer l'autofocus qui ne fonctionne plus en HTML5
337
    // Message dans la doc de bootstrap :
338
    // Due to how HTML5 defines its semantics,
339
    // the autofocus HTML attribute has no effect in Bootstrap modals.
340
    // To achieve the same effect, use some custom JavaScript
341
    $( '#help-modal' ).on( 'shown.bs.modal' , function () {
342
      $( '#myInput' ).trigger( 'focus' );
343
    })
344
    // Réinitialisation
345
    $( '#help-modal' ).on( 'hidden.bs.modal' , function () {
346
      $( '#help-modal-label' ).text();
347
      $( '#print_content' ).empty();
348
    })
349
  });
350
}
351
 
352
// Activation/Desactivation et contenu de la modale Bootstrap
353
// https://getbootstrap.com/docs/3.3/javascript/#modals
354
function projetHelpModale() {
355
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
356
    var fileMimeType = $( this ).data( 'mime-info' );
357
 
358
    // Titre
359
    $( '#help-modal-label' ).text( 'Aide du projet : ' +  $( '#titre-projet' ).text() );
360
    if( fileMimeType.match( 'image' ) ) {
361
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' );
362
      $( '#print_content' ).append( '<img src="' + CHEMIN_FICHIERS + 'info.' + extention + '" style="max-width:100%" alt="info projet" />' );
363
    }
364
    // Sortie avec la touche escape
365
    $( '#help-modal' ).modal( { keyboard : true } );
366
    // Affichage
367
    $( '#help-modal' ).modal({ show: true });
368
    // Remplacer l'autofocus qui ne fonctionne plus en HTML5
369
    // Message dans la doc de bootstrap :
370
    // Due to how HTML5 defines its semantics,
371
    // the autofocus HTML attribute has no effect in Bootstrap modals.
372
    // To achieve the same effect, use some custom JavaScript
373
    $( '#help-modal' ).on( 'shown.bs.modal' , function () {
374
      $( '#myInput' ).trigger( 'focus' );
375
    })
376
    // Réinitialisation
377
    $( '#help-modal' ).on( 'hidden.bs.modal' , function () {
378
      $( '#help-modal-label' ).text();
379
      $( '#print_content' ).empty();
380
    });
381
 
382
  });
383
}
384
 
385
// Faire apparaitre un champ text "Autre"
386
function onOtherOption() {
387
  const PREFIX = 'collect-other-';
388
 
389
  // Ajouter un champ texte pour "Autre"
390
  function optionAdd( otherId, $target, element, dataName ) {
391
    $target.after(
392
      '<div class="control-group">'+
393
        '<label'+
394
          ' for="' + otherId + '"'+
395
          ' class="' + otherId + '"'+
396
        '>'+
397
          'Autre option :'+
398
        '</label>'+
399
        '<input'+
400
          ' type="text"'+
401
          ' id="' + otherId + '"'+
402
          ' name="' + otherId + '"'+
403
          ' class="collect-other form-control"'+
404
          ' data-name="' + dataName + '"'+
405
          ' data-element="' + element + '"'+
406
        '>'+
407
      '</div>'
408
    );
409
    $( '#' + otherId ).focus();
410
  }
411
 
412
  // Supprimer un champ texte pour "Autre"
413
  function optionRemove( otherId ) {
414
    $( '.' + otherId + ', #' + otherId ).remove();
415
  }
416
 
417
  $( '.other', '#form-arbre' ).each( function() {
418
    if( $( this ).hasClass( 'is-select' ) ) {
419
      var dataName = $( this ).data( 'name' ),
420
          otherId  = PREFIX + dataName;
421
 
422
      // Insertion du champ "Autre" après les boutons
423
      optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName );
424
    } else if ( $( this ).is( ':checked' ) ) {
425
      var dataName = $( this ).data( 'name' ),
426
          otherId  = PREFIX + dataName,
427
          element = $( this ).data( 'element' );
428
      // Insertion du champ "Autre" après les boutons
429
      optionAdd( otherId, $( this ).parent( 'label' ), element, dataName );
430
    }
431
  });
432
 
433
  $( '#charger-form' ).on( 'change', '.select', function () {
434
    var dataName = $( this ).data( 'name' ),
435
        otherId  = PREFIX + dataName;
436
 
437
    if( 'other' === $( this ).val() ) {
438
        // Insertion du champ "Autre" après les boutons
439
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName );
440
      } else {
441
        // Suppression du champ autre
442
        optionRemove( otherId );
443
        $( this ).find( '.other' ).val( 'other' );
444
      }
445
  });
446
 
447
  $( '#charger-form' ).on( 'change', 'input[type=radio]', function () {
448
    var dataName = $( this ).data( 'name' ),
449
        otherId  = PREFIX + dataName;
450
 
451
    if( 'other' === $( this ).val() ) {
452
      // Insertion du champ "Autre" après les boutons
453
      optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName );
454
    } else {
455
      // Suppression du champ autre
456
      optionRemove( otherId );
457
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
458
    }
459
  });
460
 
461
  $( '#charger-form' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
462
    var dataName = $( this ).data( 'name' ),
463
        otherId  = PREFIX + dataName,
464
        element = $( this ).data( 'element' );
465
 
466
    if( $( this ).is( ':checked' ) ) {
467
        // Insertion du champ "Autre" après les boutons
468
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName );
469
      } else {
470
        // Suppression du champ autre
471
        optionRemove( otherId );
472
        $( this ).val( 'other' );
473
      }
474
  });
475
}
476
 
477
function collectOtherOption() {
478
  $( '#charger-form' ).on( 'change', '.collect-other', function () {
479
    var otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' );
480
    var element = $( this ).data( 'element' );
481
 
482
    if ( '' === $( this ).val() ){
483
      if ( 'select' === element ) {
484
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false ).val( 'other' );
485
      } else {
486
        $( '#other-' + otherIdSuffix ).prop( 'checked', false ).val( 'other' );
487
      }
488
      $( 'label.collect-other-' + otherIdSuffix ).remove();
489
      $( this ).remove();
490
    } else {
491
      if ( 'select' === element ) {
492
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
493
        $( '#' +  otherIdSuffix ).val( $( this ).val() );
494
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
495
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
496
      } else {
497
        if ( 'radio' === element ) {
498
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
499
        }
500
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
501
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
502
      }
503
    }
504
  });
505
}
506
 
507
/***************************
508
 *  Lancement des scripts  *
509
 ***************************/
510
const CHEMIN_FICHIERS = $( '#zone-appli' ).data('url-fichiers');
511
 
512
jQuery( document ).ready( function() {
513
  // Modale "aide" du projet
514
  projetHelpModale();
515
  // Affichage input file
516
  inputFile();
517
  // Affichage des List-checkbox
518
  inputListCheckbox();
519
  // Affichage des Range
520
  inputRangeDisplayNumber()
521
  // Modale "aide"
522
  newFieldsHelpModal();
523
  // Ajout/suppression d'un champ texte "Autre"
524
  onOtherOption();
525
  // Récupérer les données entrées dans "Autre"
526
  collectOtherOption();
527
});