Subversion Repositories eFlore/Applications.cel

Rev

Rev 3861 | Rev 3869 | 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
 
3863 delphine 184
    let content = '';
185
 
3638 delphine 186
    if( fileMimeType.match( 'image' ) ) {
3861 delphine 187
    	const extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' );
188
 
189
        content = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + thisFieldKey + '.' + extention + '" style="" alt="' + thisFieldKey + '" />';
190
      }
3638 delphine 191
    lthis.activerModale( label, content );
192
  });
193
};
194
 
195
// Activation/Desactivation et contenu de la modale Bootstrap
196
// https://getbootstrap.com/docs/3.3/javascript/#modals
197
Utils.prototype.activerModale = function( label, content = '', buttons = [] ) {
3844 idir 198
  const lthis = this,
199
    buttonsHtmlBase = '<button type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>';
200
  let dismiss     = '',
201
      buttonsHtml = buttonsHtmlBase;
3638 delphine 202
 
203
  // Titre
204
  $( '#fenetre-modal-label' ).text( label );
205
  if ( '' !== content ) {
206
    $( '#print_content' ).append( content );
207
  }
208
  // Sortie avec la touche escape
209
  $( '#fenetre-modal' ).modal( { keyboard : true } );
210
  // Affichage
211
  $( '#fenetre-modal' ).modal({ show: true });
212
  // Remplacer l'autofocus qui ne fonctionne plus en HTML5
213
  // Message dans la doc de bootstrap :
214
  // Due to how HTML5 defines its semantics,
215
  // the autofocus HTML attribute has no effect in Bootstrap modals.
216
  // To achieve the same effect, use some custom JavaScript
217
  $( '#fenetre-modal' ).off( 'shown.bs.modal' ).on( 'shown.bs.modal' , function () {
218
    $( '#myInput' ).trigger( 'focus' );
3852 idir 219
    if( valOk( $( '#modale-aide-img' ) ) ) {
3638 delphine 220
      lthis.redimentionnerImgAide();
221
      $( window ).on( 'resize', lthis.redimentionnerImgAide.bind( lthis ) );
222
    }
223
  });
3852 idir 224
  if ( valOk( buttons ) ) {
3638 delphine 225
    buttonsHtml = '';
226
    $.each( buttons, function( i, button ) {
227
      dismiss = button.dismiss ? 'data-dismiss="modal"' : '';
228
      buttonsHtml += '<button type="button" class="btn ' + button.class + '" ' + dismiss + '>' + button.label + '</button>';
229
    });
230
  }
231
  $( '.modal-footer' ).html( buttonsHtml );
232
  // Réinitialisation
233
  $( '#fenetre-modal' ).on( 'hidden.bs.modal' , function () {
234
    $( '#confirm-modal-label' ).text();
235
    $( '#print_content' ).empty();
236
    $( '.modal-footer' ).html( buttonsHtmlBase );
237
  });
238
};
239
 
240
Utils.prototype.redimentionnerImgAide = function() {
3844 idir 241
  const espHorizDisp = $( '.modal-dialog' ).innerWidth() <= 1200 ? $( '.modal-dialog' ).innerWidth() - 30 : 1200,
3852 idir 242
      cssImg         = {
243
        'width': espHorizDisp,
244
        'height' : 'auto'
245
      };
3638 delphine 246
 
247
  $( '#modale-aide-img' ).css(cssImg).show(50);
248
};
249
 
250
// Faire apparaitre un champ text "Autre"
251
Utils.prototype.onOtherOption = function() {
3844 idir 252
  const lthis = this,
253
    PREFIX = 'collect-other-';
3638 delphine 254
  // Ajouter un champ texte pour "Autre"
3844 idir 255
  const optionAdd = (
256
      otherId,
257
      $target,
258
      element,
259
      dataName,
260
      dataLabel
261
    ) => {
262
      $target.after(
263
        '<div class="control-group">'+
264
          '<label'+
265
            ' for="' + otherId + '"'+
266
            ' class="' + otherId + '"'+
267
          '>'+
268
            'Autre option "' + dataLabel.toLowerCase() + '" :'+
269
          '</label>'+
270
          '<input'+
271
            ' type="text"'+
272
            ' id="' + otherId + '"'+
273
            ' name="' + otherId + '"'+
274
            ' class="collect-other form-control"'+
275
            ' data-name="' + dataName + '"'+
276
            ' data-element="' + element + '"'+
277
          '>'+
278
        '</div>'
279
      );
280
      $( '#' + otherId ).focus();
281
    };
3638 delphine 282
  // Supprimer un champ texte pour "Autre"
3844 idir 283
  const optionRemove = otherId => $( '#' + otherId ).closest('.control-group').remove();
3638 delphine 284
 
3844 idir 285
  let dataName  = '',
286
      otherId   = '',
287
      dataLabel = '',
288
      element   = '';
289
 
3638 delphine 290
  $( '.other', '#formulaire' ).each( function() {
291
    if( $( this ).hasClass( 'is-select' ) ) {
3844 idir 292
      dataName  = $( this ).data( 'name' );
293
      otherId   = PREFIX + dataName;
294
      dataLabel = $( '.select' ).data( 'label' );
3638 delphine 295
      // Insertion du champ "Autre" après les boutons
3852 idir 296
      if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 297
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
298
      }
299
    } else if ( $( this ).is( ':checked' ) ) {
3844 idir 300
      dataName  = $( this ).data( 'name' );
301
      otherId   = PREFIX + dataName;
302
      dataLabel = $( this ).data( 'label' );
303
      element = $( this ).data( 'element' );
3638 delphine 304
      // Insertion du champ "Autre" après les boutons
3852 idir 305
      if ( !valOk( $( '#'+ otherId ) ) ) {
3638 delphine 306
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
307
      }
308
    }
309
  });
310
 
311
  $( '#formulaire' ).on( 'change', '.select', function () {
3844 idir 312
    dataName  = $( this ).data( 'name' );
313
    otherId   = PREFIX + dataName;
314
    dataLabel = $( this ).data( 'label' );
3638 delphine 315
    if( 'other' === $( this ).val() ) {
316
        // Insertion du champ "Autre" après les boutons
3852 idir 317
        if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 318
          optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
319
        }
320
      } else {
321
        // Suppression du champ autre
322
        optionRemove( otherId );
323
        $( this ).find( '.other' ).val( 'other' );
324
      }
325
  });
326
 
327
  $( '#formulaire' ).on( 'change', 'input[type=radio]', function () {
3844 idir 328
    dataName = $( this ).data( 'name' );
329
    otherId  = PREFIX + dataName;
330
    dataLabel = $( this ).data( 'label' );
3638 delphine 331
    if( 'other' === $( this ).val() ) {
332
      // Insertion du champ "Autre" après les boutons
3852 idir 333
      if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 334
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName, dataLabel );
335
      }
336
    } else {
337
      // Suppression du champ autre
338
      optionRemove( otherId );
339
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
340
    }
341
  });
342
 
343
  $( '#formulaire' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
3844 idir 344
    dataName = $( this ).data( 'name' );
345
    otherId  = PREFIX + dataName;
346
    dataLabel = $( this ).data( 'label' );
347
    element = $( this ).data( 'element' );
3638 delphine 348
    if( $( this ).is( ':checked' ) ) {
349
        // Insertion du champ "Autre" après les boutons
3852 idir 350
        if ( !valOk( $( '#'+otherId ) ) ) {
3638 delphine 351
          optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
352
        }
353
      } else {
354
        // Suppression du champ autre
355
        optionRemove( otherId );
356
        $( this ).val( 'other' );
357
      }
358
  });
359
};
360
 
361
Utils.prototype.collectOtherOption = function() {
362
  $( '#formulaire' ).on( 'change', '.collect-other', function () {
3844 idir 363
    const otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' ),
364
      element           = $( this ).data( 'element' );
3638 delphine 365
 
366
    if ( '' === $( this ).val() ){
367
      if ( 'select' === element ) {
368
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false ).val( 'other' );
369
      } else {
370
        $( '#other-' + otherIdSuffix ).prop( 'checked', false ).val( 'other' );
371
      }
372
      $( 'label.collect-other-' + otherIdSuffix ).remove();
373
      $( this ).remove();
374
    } else {
375
      if ( 'select' === element ) {
376
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
377
        $( '#' +  otherIdSuffix ).val( $( this ).val() );
378
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
379
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
380
      } else {
381
        if ( 'radio' === element ) {
382
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
383
        }
384
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
385
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
386
      }
387
    }
388
  });
389
};
390
 
3844 idir 391
/**
392
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
393
* et de comparer à une autre valeur :
394
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
395
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
396
* Un booléen est une variable valide : on retourne true
397
* @param { string || number || object || undefined } valeur
398
* @param { boolean } sensComparaison : true = rechercher, false = refuser
399
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
400
* @returns {boolean}
401
*/
402
export const valOk = (
403
  valeur,
404
  sensComparaison = true,
405
  comparer = undefined
406
) => {
407
  let retour = true;
408
 
409
  if ( 'boolean' !== typeof valeur ) {
410
    switch( typeof valeur ) {
411
      case 'string' :
412
        retour = ( '' !== valeur );
413
       break;
414
      case 'number' :
415
          retour = ( NaN !== valeur );
416
        break;
417
      case 'object' :
418
          retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
419
          if (  null !== valeur && undefined !== valeur.length ) {
420
            retour = ( retour  && 0 < valeur.length );
421
          }
422
        break;
423
      case 'undefined' :
424
      default :
425
        retour = false;
426
    }
427
    if ( retour && comparer !== undefined ) {
428
      const resultComparaison = ( comparer === valeur );
429
 
430
      retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
431
    }
432
 
433
    return retour;
434
 
435
  } else {
436
    // Un booléen est une valeur valable
437
    return true;
438
  }
439
};