Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
3425 idir 1
"use strict";
2
 
3
function Utils(){
4
  this.cheminFichiers = $( '#zone-appli' ).data( 'url-fichiers' );
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
      'confirmation-suppression'          : 'Êtes-vous sûr de vouloir supprimer cette observation',
18
      'milieu'                            : 'Milieu',
19
      'commentaires'                      : 'Commentaires',
20
      'non-lie-au-ref'                    : 'non lié au référentiel',
21
      'obs-le'                            : 'le',
22
      'non-connexion'                     : 'Veuillez entrer votre login et votre mot de passe',
23
      'obs-numero'                        : 'Observation n°',
24
      'erreur'                            : 'Erreur',
25
      'erreur-inconnue'                   : 'Erreur inconnue',
26
      'erreur-image'                      : 'Erreur lors du chargement des images',
27
      'erreur-ajax'                       : 'Erreur Ajax',
28
      'erreur-chargement'                 : 'Erreur lors du chargement de l\'observation',
29
      'erreur-chargement-obs-utilisateur' : 'Erreur lors du chargement des observations de cet utilisateur',
30
      'erreur-formulaire'                 : 'Erreur: impossible de charger le formulaire',
31
      'lieu-obs'                          : 'observé à',
32
      'lieu-dit'                          : 'Lieu-dit',
33
      'taxon-ou-image'                     : 'Veuillez transmettre au moins, soit une image, soit une espèce',
34
      'station'                           : 'Station',
35
      'date-rue'                          : 'Un releve existe dejà à cette date pour cette rue.',
36
      'rechargement-page'                 : 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.',
37
      'courriel-connu'                    : 'Un compte existe pour ce courriel, connectez-vous pour saisir votre observation'
38
    },
39
    en: {
40
      'arbre'                             : 'Tree',
41
      'dupliquer'                         : 'Duplicate',
42
      'saisir-plantes'                    : 'Enter the plants',
43
      'saisir-lichens'                    : 'Enter the lichens',
44
      'format-non-supporte'               : 'The file format is not supported, the accepted formats are',
45
      'image-deja-chargee'                : 'This image has already been used',
46
      'date-incomplete'                   : 'Format: dd/mm/yyyy.',
47
      'observations-transmises'           : 'observations transmitted',
48
      'supprimer-observation-liste'       : 'Delete this observation from the list to be transmitted',
49
      'confirmation-suppression'          : 'Are you sure you want to delete this observation',
50
      'milieu'                            : 'Environment',
51
      'commentaires'                      : 'Comments',
52
      'non-lie-au-ref'                    : 'unrelated to the referencial ',
53
      'obs-le'                            : 'the',
54
      'non-connexion'                     : 'Please enter your login and password',
55
      'obs-numero'                        : 'Observation number ',
56
      'erreur'                            : 'Error',
57
      'erreur-inconnue'                   : 'Unknown error',
58
      'erreur-image'                      : 'Error loading the images',
59
      'erreur-ajax'                       : 'Ajax Error',
60
      'erreur-chargement'                 : 'Error loading the observation',
61
      'erreur-chargement-obs-utilisateur' : 'Error loading this user\'s observations',
62
      'erreur-formulaire'                 : 'Error: couldn\'t load form',
63
      'lieu-obs'                          : 'observed at',
64
      'lieu-dit'                          : 'Locality',
65
      'taxon-ou-image'                    : 'Please transmit at least one image or one species',
66
      'station'                           : 'Place',
67
      'date-rue'                          : 'A record already exists on this date for this street',
68
      'rechargement-page'                 : 'Are you sure you want to leave the page?\nAll untransmitted observations will be lost.',
69
      'courriel-connu'                    : 'An account exists for this email, log in to enter your observation'
70
    }
71
  };
72
};
73
 
74
var lthis = Utils.prototype;
75
 
76
Utils.prototype.init = function() {
77
  // Modale "aide" du projet
78
  this.projetHelpModale();
79
  // Affichage input file
80
  this.inputFile();
81
  // Affichage des List-checkbox
82
  this.inputListCheckbox();
83
  // Affichage des Range
84
  this.inputRangeDisplayNumber()
85
  // Modale "aide"
86
  this.newFieldsHelpModal();
87
  // Ajout/suppression d'un champ texte "Autre"
88
  this.onOtherOption();
89
  // Récupérer les données entrées dans "Autre"
90
  this.collectOtherOption();
91
};
92
 
93
/**
94
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
95
* et de comparer à une autre valeur :
96
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
97
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
98
* Un booléen est une variable valide : on retourne true
99
* @param { string || number || object || undefined } valeur
100
* @param { boolean } sensComparaison : true = rechercher, false = refuser
101
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
102
* @returns {boolean}
103
*/
104
Utils.prototype.valOk = function (valeur, sensComparaison = true, comparer = undefined ) {
105
	var retour = true;
106
	if ( 'boolean' !== typeof valeur ) {
107
		switch( typeof valeur ) {
108
			case 'string' :
109
				retour = ( '' !== valeur );
110
			 break;
111
			case 'number' :
112
					retour = ( NaN !== valeur );
113
				break;
114
			case 'object' :
115
					retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
116
					if (  null !== valeur && undefined !== valeur.length ) {
117
						retour = ( retour  && 0 < valeur.length );
118
					}
119
				break;
120
			case 'undefined' :
121
			default :
122
				retour = false;
123
		}
124
		if ( retour && comparer !== undefined ) {
125
			var resultComparaison = ( comparer === valeur );
126
			retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
127
		}
128
 
129
		return retour;
130
 
131
	} else {
132
		// Un booléen est une valeur valable
133
		return true;
134
	}
135
};
136
 
137
/*************************************
138
 *  Fonctions de Style et Affichage  *
139
 *      des éléments "spéciaux"      *
140
 *************************************/
141
 
142
// Logique d'affichage pour le input type=file
143
Utils.prototype.inputFile = function() {
144
  // Initialisation des variables
145
  var $fileInput  = $( '.input-file' ),
146
      $button     = $( '.label-file' );
147
 
148
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
149
  $( '#formulaire' ).on( 'keydown', '.label-file', function( event ) {
150
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
151
      $( '#' + $( this ).attr( 'for' ) + '.input-file' ).click();
152
    }
153
  });
154
};
155
 
156
// Style et affichage des list-checkboxes
157
Utils.prototype.inputListCheckbox = function() {
158
  // On écoute le click sur une list-checkbox ('.selectBox')
159
  // à tout moment de son insertion dans le dom
160
  // _ S'assurer de bien viser la bonne list-checkbox
161
  // _ Au click sur un autre champ remballer la list-checkbox
162
  $( document ).click( function( event ) {
163
    var target = event.target;
164
 
165
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
166
      $( '.checkboxes' ).each( function () {
167
        $( this ).addClass( 'hidden' );
168
      });
169
      $( '.selectBox select.focus', '#zone-appli' ).each( function() {
170
        $( this ).removeClass( 'focus' );
171
      });
172
    }
173
  });
174
  $( '#zone-appli' ).on( 'click' , '.selectBox' , function() {
175
    // afficher/cacher le volet des checkboxes et focus
176
    $( this ).next().toggleClass( 'hidden' );
177
    $( this ).find( 'select' ).toggleClass( 'focus' );
178
 
179
    // Cacher le volet des autres checkboxes et retirer leur focus
180
    var $checkboxes = $( this ).next(),
181
        count = $( '.checkboxes' ).length;
182
 
183
    for ( var i = 0; i < count; i++ ) {
184
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
185
        var $otherListCheckboxes = $( '.checkboxes' )[i];
186
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
187
          $otherListCheckboxes.classList.add( 'hidden' );
188
        }
189
        if( $otherListCheckboxes.previousElementSibling.firstElementChild.classList.contains( 'focus' ) ) {
190
          $otherListCheckboxes.previousElementSibling.firstElementChild.classList.remove( 'focus' );
191
        }
192
      }
193
    }
194
  });
195
};
196
 
197
// Style et affichage des input type="range"
198
Utils.prototype.inputRangeDisplayNumber = function() {
199
  $( 'input[type="range"]' ).each( function() {
200
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
201
  });
202
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
203
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
204
  });
205
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
206
    $( '.range-live-value' ).each( function() {
207
      var $this = $( this );
208
 
209
      $this.text( '' );
210
    });
211
  });
212
};
213
 
214
// Activation/Desactivation et contenu de la modale Bootstrap
215
// https://getbootstrap.com/docs/3.3/javascript/#modals
216
Utils.prototype.newFieldsHelpModal = function() {
217
  const lthis = this;
218
 
219
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
220
    var thisFieldKey = $( this ).data( 'key' ),
221
        fileMimeType = $( this ).data( 'mime-type' ),
222
        label = 'Aide pour : ' +  $( this ).data( 'name' );
223
 
224
    if( fileMimeType.match( 'image' ) ) {
225
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
226
          content = '<img src="' + lthis.cheminFichiers + thisFieldKey + '.' + extention + '" style="max-width:100%" alt="' + thisFieldKey + '" />';
227
    }
228
    lthis.activerModale( label, content );
229
  });
230
};
231
 
232
// aide dans le titre du projet
233
Utils.prototype.projetHelpModale = function() {
234
  const lthis = this;
235
 
236
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
237
    var fileMimeType = $( this ).data( 'mime-info' ),
238
        label        = 'Aide du projet : ' +  $( '#titre-projet' ).text();
239
 
240
    if( fileMimeType.match( 'image' ) ) {
241
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
242
          content   = '<img src="' + lthis.cheminFichiers + 'info.' + extention + '" style="max-width:100%" alt="info projet" />';
243
    }
244
    lthis.activerModale( label, content );
245
  });
246
};
247
 
248
 
249
// Activation/Desactivation et contenu de la modale Bootstrap
250
// https://getbootstrap.com/docs/3.3/javascript/#modals
251
Utils.prototype.activerModale = function( label, content = '', buttons = [] ) {
252
  var dismiss         = '',
253
      buttonsHtmlBase = '<button type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>',
254
      buttonsHtml     = buttonsHtmlBase;
255
 
256
  // Titre
257
  $( '#fenetre-modal-label' ).text( label );
258
  if ( '' !== content ) {
259
    $( '#print_content' ).append( content );
260
  }
261
  // Sortie avec la touche escape
262
  $( '#fenetre-modal' ).modal( { keyboard : true } );
263
  // Affichage
264
  $( '#fenetre-modal' ).modal({ show: true });
265
  // Remplacer l'autofocus qui ne fonctionne plus en HTML5
266
  // Message dans la doc de bootstrap :
267
  // Due to how HTML5 defines its semantics,
268
  // the autofocus HTML attribute has no effect in Bootstrap modals.
269
  // To achieve the same effect, use some custom JavaScript
270
  $( '#fenetre-modal' ).on( 'shown.bs.modal' , function () {
271
    $( '#myInput' ).trigger( 'focus' );
272
  });
273
  if ( this.valOk( buttons ) ) {
274
    buttonsHtml = '';
275
    $.each( buttons, function( i, button ) {
276
      dismiss = button.dismiss ? 'data-dismiss="modal"' : '';
277
      buttonsHtml += '<button type="button" class="btn ' + button.class + '" ' + dismiss + '>' + button.label + '</button>';
278
    });
279
  }
280
  $( '.modal-footer' ).html( buttonsHtml );
281
  // Réinitialisation
282
  $( '#fenetre-modal' ).on( 'hidden.bs.modal' , function () {
283
    $( '#confirm-modal-label' ).text();
284
    $( '#print_content' ).empty();
285
    $( '.modal-footer' ).html( buttonsHtmlBase );
286
  });
287
};
288
 
289
// Faire apparaitre un champ text "Autre"
290
Utils.prototype.onOtherOption = function() {
291
  const PREFIX = 'collect-other-';
292
 
293
  // Ajouter un champ texte pour "Autre"
294
  function optionAdd( otherId, $target, element, dataName, dataLabel ) {
295
    $target.after(
296
      '<div class="control-group">'+
297
        '<label'+
298
          ' for="' + otherId + '"'+
299
          ' class="' + otherId + '"'+
300
        '>'+
301
          'Autre option "' + dataLabel.toLowerCase() + '" :'+
302
        '</label>'+
303
        '<input'+
304
          ' type="text"'+
305
          ' id="' + otherId + '"'+
306
          ' name="' + otherId + '"'+
307
          ' class="collect-other form-control"'+
308
          ' data-name="' + dataName + '"'+
309
          ' data-element="' + element + '"'+
310
        '>'+
311
      '</div>'
312
    );
313
    $( '#' + otherId ).focus();
314
  }
315
 
316
  // Supprimer un champ texte pour "Autre"
317
  function optionRemove( otherId ) {
318
    $( '#' + otherId ).closest('.control-group').remove();
319
  }
320
 
321
  $( '.other', '#formulaire' ).each( function() {
322
    if( $( this ).hasClass( 'is-select' ) ) {
323
      var dataName = $( this ).data( 'name' ),
324
          otherId  = PREFIX + dataName,
325
          dataLabel = $( '.select' ).data( 'label' );
326
 
327
      // Insertion du champ "Autre" après les boutons
328
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
329
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
330
      }
331
    } else if ( $( this ).is( ':checked' ) ) {
332
      var dataName = $( this ).data( 'name' ),
333
          otherId  = PREFIX + dataName,
334
          element = $( this ).data( 'element' ),
335
          dataLabel = $( this ).data( 'label' );
336
 
337
      // Insertion du champ "Autre" après les boutons
338
      if ( !lthis.valOk( $( '#'+ otherId ) ) ) {
339
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
340
      }
341
    }
342
  });
343
 
344
  $( '#formulaire' ).on( 'change', '.select', function () {
345
    var dataName = $( this ).data( 'name' ),
346
        otherId  = PREFIX + dataName,
347
        dataLabel = $( this ).data( 'label' );
348
 
349
    if( 'other' === $( this ).val() ) {
350
        // Insertion du champ "Autre" après les boutons
351
        if ( !lthis.valOk( $( '#'+otherId ) ) ) {
352
          optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
353
        }
354
      } else {
355
        // Suppression du champ autre
356
        optionRemove( otherId );
357
        $( this ).find( '.other' ).val( 'other' );
358
      }
359
  });
360
 
361
  $( '#formulaire' ).on( 'change', 'input[type=radio]', function () {
362
    var dataName = $( this ).data( 'name' ),
363
        otherId  = PREFIX + dataName,
364
        dataLabel = $( this ).data( 'label' );
365
 
366
    if( 'other' === $( this ).val() ) {
367
      // Insertion du champ "Autre" après les boutons
368
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
369
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName, dataLabel );
370
      }
371
    } else {
372
      // Suppression du champ autre
373
      optionRemove( otherId );
374
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
375
    }
376
  });
377
 
378
  $( '#formulaire' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
379
    var dataName = $( this ).data( 'name' ),
380
        otherId  = PREFIX + dataName,
381
        element = $( this ).data( 'element' ),
382
        dataLabel = $( this ).data( 'label' );
383
 
384
    if( $( this ).is( ':checked' ) ) {
385
        // Insertion du champ "Autre" après les boutons
386
        if ( !lthis.valOk( $( '#'+otherId ) ) ) {
387
          optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
388
        }
389
      } else {
390
        // Suppression du champ autre
391
        optionRemove( otherId );
392
        $( this ).val( 'other' );
393
      }
394
  });
395
};
396
 
397
Utils.prototype.collectOtherOption = function() {
398
  $( '#formulaire' ).on( 'change', '.collect-other', function () {
399
    var otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' );
400
    var element = $( this ).data( 'element' );
401
 
402
    if ( '' === $( this ).val() ){
403
      if ( 'select' === element ) {
404
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false ).val( 'other' );
405
      } else {
406
        $( '#other-' + otherIdSuffix ).prop( 'checked', false ).val( 'other' );
407
      }
408
      $( 'label.collect-other-' + otherIdSuffix ).remove();
409
      $( this ).remove();
410
    } else {
411
      if ( 'select' === element ) {
412
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
413
        $( '#' +  otherIdSuffix ).val( $( this ).val() );
414
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
415
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
416
      } else {
417
        if ( 'radio' === element ) {
418
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
419
        }
420
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
421
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
422
      }
423
    }
424
  });
425
};
426