Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
3844 idir 1
export function Utils() {
3638 delphine 2
  this.cheminFichiers = $( '#zone-appli' ).data( 'url-fichiers' );
3
  // système de traduction minimaliste
3844 idir 4
  this.msgs = {
3638 delphine 5
    fr: {
6
      'arbre'                             : 'Arbre',
7
      'dupliquer'                         : 'Dupliquer',
8
      'saisir-plantes'                    : 'Saisir les plantes',
9
      'saisir-lichens'                    : 'Saisir les lichens',
10
      'upload-non-suppote'                : 'Votre navigateur ne permet pas le téléchargement de fichiers.',
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
      'confirmation-suppression'          : 'Êtes-vous sûr de vouloir supprimer cette observation',
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',
3852 idir 32
      'taxon-ou-image'                    : 'Veuillez transmettre au moins, soit une image, soit une espèce',
3638 delphine 33
      'station'                           : 'Station',
34
      'date-rue'                          : 'Un releve existe dejà à cette date pour cette rue.',
35
      'rechargement-page'                 : 'Êtes vous sûr de vouloir quiter la page?\nLes observations saisies mais non transmises seront perdues.',
36
      'courriel-connu'                    : 'Un compte existe pour ce courriel, connectez-vous pour saisir votre observation'
37
    },
38
    en: {
39
      'arbre'                             : 'Tree',
40
      'dupliquer'                         : 'Duplicate',
41
      'saisir-plantes'                    : 'Enter the plants',
42
      'saisir-lichens'                    : 'Enter the lichens',
43
      'upload-non-suppote'                : 'Your browser does not support file upload.',
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
Utils.prototype.init = function() {
75
  // Modale "aide" du projet
76
  this.projetHelpModale();
77
  // Affichage input file
78
  this.inputFile();
79
  // Affichage des List-checkbox
80
  this.inputListCheckbox();
81
  // Affichage des Range
82
  this.inputRangeDisplayNumber()
83
  // Modale "aide"
84
  this.newFieldsHelpModal();
85
  // Ajout/suppression d'un champ texte "Autre"
86
  this.onOtherOption();
87
  // Récupérer les données entrées dans "Autre"
88
  this.collectOtherOption();
89
};
90
 
3844 idir 91
// aide dans le titre du projet
92
Utils.prototype.projetHelpModale = function() {
93
  const lthis = this;
3638 delphine 94
 
3844 idir 95
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
96
    const fileMimeType = $( this ).data( 'mime-info' ),
97
        label          = 'Aide du projet : ' +  $( '#titre-projet' ).text();
3638 delphine 98
 
3844 idir 99
    if( fileMimeType.match( 'image' ) ) {
100
      const extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
101
          content     = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + 'info.' + extention + '" style="" alt="info projet" />';
102
    }
103
    lthis.activerModale( label, content );
104
  });
3638 delphine 105
};
106
 
107
// Logique d'affichage pour le input type=file
108
Utils.prototype.inputFile = function() {
109
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
110
  $( '#formulaire' ).on( 'keydown', '.label-file', function( event ) {
111
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
112
      $( '#' + $( this ).attr( 'for' ) + '.input-file' ).click();
113
    }
114
  });
115
};
116
 
117
// Style et affichage des list-checkboxes
118
Utils.prototype.inputListCheckbox = function() {
119
  // On écoute le click sur une list-checkbox ('.selectBox')
120
  // à tout moment de son insertion dans le dom
121
  // _ S'assurer de bien viser la bonne list-checkbox
122
  // _ Au click sur un autre champ remballer la list-checkbox
123
  $( document ).click( function( event ) {
3844 idir 124
    const target = event.target;
3638 delphine 125
 
126
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
127
      $( '.checkboxes' ).each( function () {
128
        $( this ).addClass( 'hidden' );
129
      });
130
      $( '.selectBox select.focus', '#zone-appli' ).each( function() {
131
        $( this ).removeClass( 'focus' );
132
      });
133
    }
134
  });
135
  $( '#zone-appli' ).on( 'click' , '.selectBox' , function() {
136
    // afficher/cacher le volet des checkboxes et focus
137
    $( this ).next().toggleClass( 'hidden' );
138
    $( this ).find( 'select' ).toggleClass( 'focus' );
139
 
140
    // Cacher le volet des autres checkboxes et retirer leur focus
3844 idir 141
    const $checkboxes = $( this ).next(),
142
        count         = $( '.checkboxes' ).length;
3638 delphine 143
 
3844 idir 144
    for ( let i = 0; i < count; i++ ) {
3638 delphine 145
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
3844 idir 146
        const $otherListCheckboxes = $( '.checkboxes' )[i];
147
 
3638 delphine 148
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
149
          $otherListCheckboxes.classList.add( 'hidden' );
150
        }
151
        if( $otherListCheckboxes.previousElementSibling.firstElementChild.classList.contains( 'focus' ) ) {
152
          $otherListCheckboxes.previousElementSibling.firstElementChild.classList.remove( 'focus' );
153
        }
154
      }
155
    }
156
  });
157
};
158
 
159
// Style et affichage des input type="range"
160
Utils.prototype.inputRangeDisplayNumber = function() {
161
  $( 'input[type="range"]' ).each( function() {
162
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
163
  });
164
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
165
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
166
  });
167
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
168
    $( '.range-live-value' ).each( function() {
3844 idir 169
      $( this ).text( '' );
3638 delphine 170
    });
171
  });
172
};
173
 
174
// Activation/Desactivation et contenu de la modale Bootstrap
175
// https://getbootstrap.com/docs/3.3/javascript/#modals
176
Utils.prototype.newFieldsHelpModal = function() {
177
  const lthis = this;
178
 
179
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
3844 idir 180
    const thisFieldKey = $( this ).data( 'key' ),
181
        fileMimeType   = $( this ).data( 'mime-type' ),
182
        label          = 'Aide pour : ' +  $( this ).data( 'name' );
3638 delphine 183
 
184
    if( fileMimeType.match( 'image' ) ) {
3844 idir 185
      const extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
186
          content     = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + thisFieldKey + '.' + extention + '" style="" alt="' + thisFieldKey + '" />';
3638 delphine 187
    }
188
    lthis.activerModale( label, content );
189
  });
190
};
191
 
192
// Activation/Desactivation et contenu de la modale Bootstrap
193
// https://getbootstrap.com/docs/3.3/javascript/#modals
194
Utils.prototype.activerModale = function( label, content = '', buttons = [] ) {
3844 idir 195
  const lthis = this,
196
    buttonsHtmlBase = '<button type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>';
197
  let dismiss     = '',
198
      buttonsHtml = buttonsHtmlBase;
3638 delphine 199
 
200
  // Titre
201
  $( '#fenetre-modal-label' ).text( label );
202
  if ( '' !== content ) {
203
    $( '#print_content' ).append( content );
204
  }
205
  // Sortie avec la touche escape
206
  $( '#fenetre-modal' ).modal( { keyboard : true } );
207
  // Affichage
208
  $( '#fenetre-modal' ).modal({ show: true });
209
  // Remplacer l'autofocus qui ne fonctionne plus en HTML5
210
  // Message dans la doc de bootstrap :
211
  // Due to how HTML5 defines its semantics,
212
  // the autofocus HTML attribute has no effect in Bootstrap modals.
213
  // To achieve the same effect, use some custom JavaScript
214
  $( '#fenetre-modal' ).off( 'shown.bs.modal' ).on( 'shown.bs.modal' , function () {
215
    $( '#myInput' ).trigger( 'focus' );
3852 idir 216
    if( valOk( $( '#modale-aide-img' ) ) ) {
3638 delphine 217
      lthis.redimentionnerImgAide();
218
      $( window ).on( 'resize', lthis.redimentionnerImgAide.bind( lthis ) );
219
    }
220
  });
3852 idir 221
  if ( valOk( buttons ) ) {
3638 delphine 222
    buttonsHtml = '';
223
    $.each( buttons, function( i, button ) {
224
      dismiss = button.dismiss ? 'data-dismiss="modal"' : '';
225
      buttonsHtml += '<button type="button" class="btn ' + button.class + '" ' + dismiss + '>' + button.label + '</button>';
226
    });
227
  }
228
  $( '.modal-footer' ).html( buttonsHtml );
229
  // Réinitialisation
230
  $( '#fenetre-modal' ).on( 'hidden.bs.modal' , function () {
231
    $( '#confirm-modal-label' ).text();
232
    $( '#print_content' ).empty();
233
    $( '.modal-footer' ).html( buttonsHtmlBase );
234
  });
235
};
236
 
237
Utils.prototype.redimentionnerImgAide = function() {
3844 idir 238
  const espHorizDisp = $( '.modal-dialog' ).innerWidth() <= 1200 ? $( '.modal-dialog' ).innerWidth() - 30 : 1200,
3852 idir 239
      cssImg         = {
240
        'width': espHorizDisp,
241
        'height' : 'auto'
242
      };
3638 delphine 243
 
244
  $( '#modale-aide-img' ).css(cssImg).show(50);
245
};
246
 
247
// Faire apparaitre un champ text "Autre"
248
Utils.prototype.onOtherOption = function() {
3844 idir 249
  const lthis = this,
250
    PREFIX = 'collect-other-';
3638 delphine 251
  // Ajouter un champ texte pour "Autre"
3844 idir 252
  const optionAdd = (
253
      otherId,
254
      $target,
255
      element,
256
      dataName,
257
      dataLabel
258
    ) => {
259
      $target.after(
260
        '<div class="control-group">'+
261
          '<label'+
262
            ' for="' + otherId + '"'+
263
            ' class="' + otherId + '"'+
264
          '>'+
265
            'Autre option "' + dataLabel.toLowerCase() + '" :'+
266
          '</label>'+
267
          '<input'+
268
            ' type="text"'+
269
            ' id="' + otherId + '"'+
270
            ' name="' + otherId + '"'+
271
            ' class="collect-other form-control"'+
272
            ' data-name="' + dataName + '"'+
273
            ' data-element="' + element + '"'+
274
          '>'+
275
        '</div>'
276
      );
277
      $( '#' + otherId ).focus();
278
    };
3638 delphine 279
  // Supprimer un champ texte pour "Autre"
3844 idir 280
  const optionRemove = otherId => $( '#' + otherId ).closest('.control-group').remove();
3638 delphine 281
 
3844 idir 282
  let dataName  = '',
283
      otherId   = '',
284
      dataLabel = '',
285
      element   = '';
286
 
3638 delphine 287
  $( '.other', '#formulaire' ).each( function() {
288
    if( $( this ).hasClass( 'is-select' ) ) {
3844 idir 289
      dataName  = $( this ).data( 'name' );
290
      otherId   = PREFIX + dataName;
291
      dataLabel = $( '.select' ).data( 'label' );
3638 delphine 292
      // Insertion du champ "Autre" après les boutons
3852 idir 293
      if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 294
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
295
      }
296
    } else if ( $( this ).is( ':checked' ) ) {
3844 idir 297
      dataName  = $( this ).data( 'name' );
298
      otherId   = PREFIX + dataName;
299
      dataLabel = $( this ).data( 'label' );
300
      element = $( this ).data( 'element' );
3638 delphine 301
      // Insertion du champ "Autre" après les boutons
3852 idir 302
      if ( !valOk( $( '#'+ otherId ) ) ) {
3638 delphine 303
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
304
      }
305
    }
306
  });
307
 
308
  $( '#formulaire' ).on( 'change', '.select', function () {
3844 idir 309
    dataName  = $( this ).data( 'name' );
310
    otherId   = PREFIX + dataName;
311
    dataLabel = $( this ).data( 'label' );
3638 delphine 312
    if( 'other' === $( this ).val() ) {
313
        // Insertion du champ "Autre" après les boutons
3852 idir 314
        if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 315
          optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
316
        }
317
      } else {
318
        // Suppression du champ autre
319
        optionRemove( otherId );
320
        $( this ).find( '.other' ).val( 'other' );
321
      }
322
  });
323
 
324
  $( '#formulaire' ).on( 'change', 'input[type=radio]', function () {
3844 idir 325
    dataName = $( this ).data( 'name' );
326
    otherId  = PREFIX + dataName;
327
    dataLabel = $( this ).data( 'label' );
3638 delphine 328
    if( 'other' === $( this ).val() ) {
329
      // Insertion du champ "Autre" après les boutons
3852 idir 330
      if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 331
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName, dataLabel );
332
      }
333
    } else {
334
      // Suppression du champ autre
335
      optionRemove( otherId );
336
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
337
    }
338
  });
339
 
340
  $( '#formulaire' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
3844 idir 341
    dataName = $( this ).data( 'name' );
342
    otherId  = PREFIX + dataName;
343
    dataLabel = $( this ).data( 'label' );
344
    element = $( this ).data( 'element' );
3638 delphine 345
    if( $( this ).is( ':checked' ) ) {
346
        // Insertion du champ "Autre" après les boutons
3852 idir 347
        if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 348
          optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
349
        }
350
      } else {
351
        // Suppression du champ autre
352
        optionRemove( otherId );
353
        $( this ).val( 'other' );
354
      }
355
  });
356
};
357
 
358
Utils.prototype.collectOtherOption = function() {
359
  $( '#formulaire' ).on( 'change', '.collect-other', function () {
3844 idir 360
    const otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' ),
361
      element           = $( this ).data( 'element' );
3638 delphine 362
 
363
    if ( '' === $( this ).val() ){
364
      if ( 'select' === element ) {
365
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false ).val( 'other' );
366
      } else {
367
        $( '#other-' + otherIdSuffix ).prop( 'checked', false ).val( 'other' );
368
      }
369
      $( 'label.collect-other-' + otherIdSuffix ).remove();
370
      $( this ).remove();
371
    } else {
372
      if ( 'select' === element ) {
373
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
374
        $( '#' +  otherIdSuffix ).val( $( this ).val() );
375
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
376
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
377
      } else {
378
        if ( 'radio' === element ) {
379
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
380
        }
381
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
382
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
383
      }
384
    }
385
  });
386
};
387
 
3844 idir 388
/**
389
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
390
* et de comparer à une autre valeur :
391
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
392
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
393
* Un booléen est une variable valide : on retourne true
394
* @param { string || number || object || undefined } valeur
395
* @param { boolean } sensComparaison : true = rechercher, false = refuser
396
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
397
* @returns {boolean}
398
*/
399
export const valOk = (
400
  valeur,
401
  sensComparaison = true,
402
  comparer = undefined
403
) => {
404
  let retour = true;
405
 
406
  if ( 'boolean' !== typeof valeur ) {
407
    switch( typeof valeur ) {
408
      case 'string' :
409
        retour = ( '' !== valeur );
410
       break;
411
      case 'number' :
412
          retour = ( NaN !== valeur );
413
        break;
414
      case 'object' :
415
          retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
416
          if (  null !== valeur && undefined !== valeur.length ) {
417
            retour = ( retour  && 0 < valeur.length );
418
          }
419
        break;
420
      case 'undefined' :
421
      default :
422
        retour = false;
423
    }
424
    if ( retour && comparer !== undefined ) {
425
      const resultComparaison = ( comparer === valeur );
426
 
427
      retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
428
    }
429
 
430
    return retour;
431
 
432
  } else {
433
    // Un booléen est une valeur valable
434
    return true;
435
  }
436
};