Subversion Repositories eFlore/Applications.cel

Rev

Rev 3638 | Rev 3852 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3638 Rev 3844
Line 1... Line -...
1
"use strict";
-
 
2
 
-
 
3
function Utils(){
1
export function Utils() {
4
  this.cheminFichiers = $( '#zone-appli' ).data( 'url-fichiers' );
2
  this.cheminFichiers = $( '#zone-appli' ).data( 'url-fichiers' );
5
  // système de traduction minimaliste
3
  // système de traduction minimaliste
6
  this.msgs                 = {
4
  this.msgs = {
7
    fr: {
5
    fr: {
8
      'arbre'                             : 'Arbre',
6
      'arbre'                             : 'Arbre',
9
      'dupliquer'                         : 'Dupliquer',
7
      'dupliquer'                         : 'Dupliquer',
10
      'saisir-plantes'                    : 'Saisir les plantes',
8
      'saisir-plantes'                    : 'Saisir les plantes',
11
      'saisir-lichens'                    : 'Saisir les lichens',
9
      'saisir-lichens'                    : 'Saisir les lichens',
Line 71... Line 69...
71
      'courriel-connu'                    : 'An account exists for this email, log in to enter your observation'
69
      'courriel-connu'                    : 'An account exists for this email, log in to enter your observation'
72
    }
70
    }
73
  };
71
  };
74
};
72
};
Line 75... Line -...
75
 
-
 
76
var lthis = Utils.prototype;
-
 
77
 
73
 
78
Utils.prototype.init = function() {
74
Utils.prototype.init = function() {
79
  // Modale "aide" du projet
75
  // Modale "aide" du projet
80
  this.projetHelpModale();
76
  this.projetHelpModale();
81
  // Affichage input file
77
  // Affichage input file
Line 90... Line 86...
90
  this.onOtherOption();
86
  this.onOtherOption();
91
  // Récupérer les données entrées dans "Autre"
87
  // Récupérer les données entrées dans "Autre"
92
  this.collectOtherOption();
88
  this.collectOtherOption();
93
};
89
};
Line 94... Line -...
94
 
-
 
95
/**
-
 
96
* Permet à la fois de vérifier qu'une valeur ou objet existe et n'est pas vide
90
 
97
* et de comparer à une autre valeur :
-
 
98
* Vérifie qu'une variable ou objet n'est pas : vide, null, undefined, NaN
-
 
99
* Si comparer est défini on le compare à valeur en fonction de sensComparaison
91
// aide dans le titre du projet
100
* Un booléen est une variable valide : on retourne true
-
 
101
* @param { string || number || object || undefined } valeur
-
 
102
* @param { boolean } sensComparaison : true = rechercher, false = refuser
-
 
103
* @param { string || number || object || undefined || boolean } comparer :valeur à comparer
92
Utils.prototype.projetHelpModale = function() {
104
* @returns {boolean}
93
  const lthis = this;
105
*/
94
 
106
Utils.prototype.valOk = function (valeur, sensComparaison = true, comparer = undefined ) {
-
 
107
	var retour = true;
-
 
108
	if ( 'boolean' !== typeof valeur ) {
-
 
109
		switch( typeof valeur ) {
-
 
110
			case 'string' :
-
 
111
				retour = ( '' !== valeur );
-
 
112
			 break;
-
 
113
			case 'number' :
95
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
114
					retour = ( NaN !== valeur );
-
 
115
				break;
-
 
116
			case 'object' :
96
    const fileMimeType = $( this ).data( 'mime-info' ),
117
					retour = ( null !== valeur && undefined !== valeur && !$.isEmptyObject( valeur ) );
-
 
118
					if (  null !== valeur && undefined !== valeur.length ) {
-
 
119
						retour = ( retour  && 0 < valeur.length );
-
 
120
					}
-
 
121
				break;
-
 
122
			case 'undefined' :
-
 
123
			default :
-
 
124
				retour = false;
97
        label          = 'Aide du projet : ' +  $( '#titre-projet' ).text();
125
		}
98
 
126
		if ( retour && comparer !== undefined ) {
99
    if( fileMimeType.match( 'image' ) ) {
127
			var resultComparaison = ( comparer === valeur );
100
      const extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
128
			retour = ( sensComparaison ) ? resultComparaison : !resultComparaison ;
101
          content     = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + 'info.' + extention + '" style="" alt="info projet" />';
129
		}
-
 
130
 
-
 
131
		return retour;
-
 
132
 
-
 
133
	} else {
102
    }
134
		// Un booléen est une valeur valable
-
 
135
		return true;
103
    lthis.activerModale( label, content );
136
	}
104
  });
137
};
-
 
138
 
-
 
139
/*************************************
-
 
140
 *  Fonctions de Style et Affichage  *
-
 
141
 *      des éléments "spéciaux"      *
-
 
Line 142... Line 105...
142
 *************************************/
105
};
143
 
106
 
144
// Logique d'affichage pour le input type=file
-
 
145
Utils.prototype.inputFile = function() {
-
 
146
  // Initialisation des variables
-
 
147
  var $fileInput  = $( '.input-file' ),
-
 
148
      $button     = $( '.label-file' );
107
// Logique d'affichage pour le input type=file
149
 
108
Utils.prototype.inputFile = function() {
150
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
109
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
151
  $( '#formulaire' ).on( 'keydown', '.label-file', function( event ) {
110
  $( '#formulaire' ).on( 'keydown', '.label-file', function( event ) {
152
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
111
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
Line 160... Line 119...
160
  // On écoute le click sur une list-checkbox ('.selectBox')
119
  // On écoute le click sur une list-checkbox ('.selectBox')
161
  // à tout moment de son insertion dans le dom
120
  // à tout moment de son insertion dans le dom
162
  // _ S'assurer de bien viser la bonne list-checkbox
121
  // _ S'assurer de bien viser la bonne list-checkbox
163
  // _ Au click sur un autre champ remballer la list-checkbox
122
  // _ Au click sur un autre champ remballer la list-checkbox
164
  $( document ).click( function( event ) {
123
  $( document ).click( function( event ) {
165
    var target = event.target;
124
    const target = event.target;
Line 166... Line 125...
166
 
125
 
167
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
126
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
168
      $( '.checkboxes' ).each( function () {
127
      $( '.checkboxes' ).each( function () {
169
        $( this ).addClass( 'hidden' );
128
        $( this ).addClass( 'hidden' );
Line 177... Line 136...
177
    // afficher/cacher le volet des checkboxes et focus
136
    // afficher/cacher le volet des checkboxes et focus
178
    $( this ).next().toggleClass( 'hidden' );
137
    $( this ).next().toggleClass( 'hidden' );
179
    $( this ).find( 'select' ).toggleClass( 'focus' );
138
    $( this ).find( 'select' ).toggleClass( 'focus' );
Line 180... Line 139...
180
 
139
 
181
    // Cacher le volet des autres checkboxes et retirer leur focus
140
    // Cacher le volet des autres checkboxes et retirer leur focus
182
    var $checkboxes = $( this ).next(),
141
    const $checkboxes = $( this ).next(),
Line 183... Line 142...
183
        count = $( '.checkboxes' ).length;
142
        count         = $( '.checkboxes' ).length;
184
 
143
 
185
    for ( var i = 0; i < count; i++ ) {
144
    for ( let i = 0; i < count; i++ ) {
-
 
145
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
186
      if ( $( '.checkboxes' )[i] !== $checkboxes[0] && !$checkboxes.hasClass( 'hidden' ) ) {
146
        const $otherListCheckboxes = $( '.checkboxes' )[i];
187
        var $otherListCheckboxes = $( '.checkboxes' )[i];
147
 
188
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
148
        if ( !$otherListCheckboxes.classList.contains( 'hidden' ) ) {
189
          $otherListCheckboxes.classList.add( 'hidden' );
149
          $otherListCheckboxes.classList.add( 'hidden' );
190
        }
150
        }
Line 204... Line 164...
204
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
164
  $( '#top' ).on( 'input' , 'input[type="range"]' , function () {
205
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
165
    $( this ).siblings( '.range-live-value' ).text( $( this ).val() );
206
  });
166
  });
207
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
167
  $( '#top' ).on( 'click', '#ajouter-obs', function() {
208
    $( '.range-live-value' ).each( function() {
168
    $( '.range-live-value' ).each( function() {
209
      var $this = $( this );
-
 
210
 
-
 
211
      $this.text( '' );
169
      $( this ).text( '' );
212
    });
170
    });
213
  });
171
  });
214
};
172
};
Line 215... Line 173...
215
 
173
 
216
// Activation/Desactivation et contenu de la modale Bootstrap
174
// Activation/Desactivation et contenu de la modale Bootstrap
217
// https://getbootstrap.com/docs/3.3/javascript/#modals
175
// https://getbootstrap.com/docs/3.3/javascript/#modals
218
Utils.prototype.newFieldsHelpModal = function() {
176
Utils.prototype.newFieldsHelpModal = function() {
Line 219... Line 177...
219
  const lthis = this;
177
  const lthis = this;
220
 
178
 
221
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
179
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
222
    var thisFieldKey = $( this ).data( 'key' ),
180
    const thisFieldKey = $( this ).data( 'key' ),
Line 223... Line 181...
223
        fileMimeType = $( this ).data( 'mime-type' ),
181
        fileMimeType   = $( this ).data( 'mime-type' ),
224
        label = 'Aide pour : ' +  $( this ).data( 'name' );
182
        label          = 'Aide pour : ' +  $( this ).data( 'name' );
225
 
183
 
226
    if( fileMimeType.match( 'image' ) ) {
184
    if( fileMimeType.match( 'image' ) ) {
227
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
185
      const extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
228
          content = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + thisFieldKey + '.' + extention + '" style="" alt="' + thisFieldKey + '" />';
186
          content     = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + thisFieldKey + '.' + extention + '" style="" alt="' + thisFieldKey + '" />';
229
    }
187
    }
Line 230... Line -...
230
    lthis.activerModale( label, content );
-
 
231
  });
-
 
232
};
-
 
233
 
-
 
234
// aide dans le titre du projet
-
 
235
Utils.prototype.projetHelpModale = function() {
-
 
236
  const lthis = this;
-
 
237
 
-
 
238
  $( '#top' ).on ( 'click', '#info-button', function ( event ) {
-
 
239
    var fileMimeType = $( this ).data( 'mime-info' ),
-
 
240
        label        = 'Aide du projet : ' +  $( '#titre-projet' ).text();
-
 
241
 
-
 
242
    if( fileMimeType.match( 'image' ) ) {
-
 
243
      var extention = fileMimeType.replace( /(?:imag)?e\/?/g , '' ),
-
 
244
          content   = '<img id="modale-aide-img" src="' + lthis.cheminFichiers + 'info.' + extention + '" style="" alt="info projet" />';
-
 
245
    }
-
 
246
    lthis.activerModale( label, content );
-
 
247
  });
188
    lthis.activerModale( label, content );
248
};
189
  });
249
 
190
};
250
 
191
 
251
// Activation/Desactivation et contenu de la modale Bootstrap
192
// Activation/Desactivation et contenu de la modale Bootstrap
-
 
193
// https://getbootstrap.com/docs/3.3/javascript/#modals
252
// https://getbootstrap.com/docs/3.3/javascript/#modals
194
Utils.prototype.activerModale = function( label, content = '', buttons = [] ) {
Line 253... Line 195...
253
Utils.prototype.activerModale = function( label, content = '', buttons = [] ) {
195
  const lthis = this,
254
  var dismiss         = '',
196
    buttonsHtmlBase = '<button type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>';
255
      buttonsHtmlBase = '<button type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>',
197
  let dismiss     = '',
256
      buttonsHtml     = buttonsHtmlBase;
198
      buttonsHtml = buttonsHtmlBase;
Line 291... Line 233...
291
    $( '.modal-footer' ).html( buttonsHtmlBase );
233
    $( '.modal-footer' ).html( buttonsHtmlBase );
292
  });
234
  });
293
};
235
};
Line 294... Line 236...
294
 
236
 
295
Utils.prototype.redimentionnerImgAide = function() {
237
Utils.prototype.redimentionnerImgAide = function() {
296
  var espHorizDisp = $( '.modal-dialog' ).innerWidth() <= 1200 ? $( '.modal-dialog' ).innerWidth() - 30 : 1200,
238
  const espHorizDisp = $( '.modal-dialog' ).innerWidth() <= 1200 ? $( '.modal-dialog' ).innerWidth() - 30 : 1200,
297
      cssImg       = {
239
    cssImg           = {
298
        'width': espHorizDisp,
240
      'width': espHorizDisp,
299
        'height' : 'auto'
241
      'height' : 'auto'
Line 300... Line 242...
300
      };
242
    };
301
 
243
 
Line 302... Line 244...
302
  $( '#modale-aide-img' ).css(cssImg).show(50);
244
  $( '#modale-aide-img' ).css(cssImg).show(50);
303
};
245
};
-
 
246
 
304
 
247
// Faire apparaitre un champ text "Autre"
305
// Faire apparaitre un champ text "Autre"
-
 
306
Utils.prototype.onOtherOption = function() {
248
Utils.prototype.onOtherOption = function() {
307
  const PREFIX = 'collect-other-';
249
  const lthis = this,
-
 
250
    PREFIX = 'collect-other-';
-
 
251
  // Ajouter un champ texte pour "Autre"
-
 
252
  const optionAdd = (
-
 
253
      otherId,
-
 
254
      $target,
-
 
255
      element,
308
 
256
      dataName,
309
  // Ajouter un champ texte pour "Autre"
257
      dataLabel
310
  function optionAdd( otherId, $target, element, dataName, dataLabel ) {
258
    ) => {
311
    $target.after(
259
      $target.after(
312
      '<div class="control-group">'+
260
        '<div class="control-group">'+
313
        '<label'+
261
          '<label'+
314
          ' for="' + otherId + '"'+
262
            ' for="' + otherId + '"'+
315
          ' class="' + otherId + '"'+
263
            ' class="' + otherId + '"'+
316
        '>'+
264
          '>'+
317
          'Autre option "' + dataLabel.toLowerCase() + '" :'+
265
            'Autre option "' + dataLabel.toLowerCase() + '" :'+
318
        '</label>'+
266
          '</label>'+
319
        '<input'+
267
          '<input'+
320
          ' type="text"'+
268
            ' type="text"'+
321
          ' id="' + otherId + '"'+
269
            ' id="' + otherId + '"'+
322
          ' name="' + otherId + '"'+
270
            ' name="' + otherId + '"'+
323
          ' class="collect-other form-control"'+
271
            ' class="collect-other form-control"'+
324
          ' data-name="' + dataName + '"'+
272
            ' data-name="' + dataName + '"'+
325
          ' data-element="' + element + '"'+
273
            ' data-element="' + element + '"'+
326
        '>'+
274
          '>'+
327
      '</div>'
275
        '</div>'
328
    );
-
 
329
    $( '#' + otherId ).focus();
276
      );
330
  }
-
 
331
 
277
      $( '#' + otherId ).focus();
332
  // Supprimer un champ texte pour "Autre"
278
    };
-
 
279
  // Supprimer un champ texte pour "Autre"
-
 
280
  const optionRemove = otherId => $( '#' + otherId ).closest('.control-group').remove();
-
 
281
 
-
 
282
  let dataName  = '',
Line 333... Line 283...
333
  function optionRemove( otherId ) {
283
      otherId   = '',
334
    $( '#' + otherId ).closest('.control-group').remove();
284
      dataLabel = '',
335
  }
285
      element   = '';
336
 
286
 
337
  $( '.other', '#formulaire' ).each( function() {
287
  $( '.other', '#formulaire' ).each( function() {
338
    if( $( this ).hasClass( 'is-select' ) ) {
-
 
339
      var dataName = $( this ).data( 'name' ),
288
    if( $( this ).hasClass( 'is-select' ) ) {
340
          otherId  = PREFIX + dataName,
289
      dataName  = $( this ).data( 'name' );
341
          dataLabel = $( '.select' ).data( 'label' );
290
      otherId   = PREFIX + dataName;
342
 
291
      dataLabel = $( '.select' ).data( 'label' );
343
      // Insertion du champ "Autre" après les boutons
292
      // Insertion du champ "Autre" après les boutons
344
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
293
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
345
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
294
        optionAdd( otherId, $( this ).parent( '.add-field-select' ), 'select', dataName, dataLabel );
346
      }
295
      }
347
    } else if ( $( this ).is( ':checked' ) ) {
296
    } else if ( $( this ).is( ':checked' ) ) {
348
      var dataName = $( this ).data( 'name' ),
-
 
349
          otherId  = PREFIX + dataName,
297
      dataName  = $( this ).data( 'name' );
350
          element = $( this ).data( 'element' ),
298
      otherId   = PREFIX + dataName;
351
          dataLabel = $( this ).data( 'label' );
299
      dataLabel = $( this ).data( 'label' );
352
 
300
      element = $( this ).data( 'element' );
353
      // Insertion du champ "Autre" après les boutons
301
      // Insertion du champ "Autre" après les boutons
354
      if ( !lthis.valOk( $( '#'+ otherId ) ) ) {
302
      if ( !lthis.valOk( $( '#'+ otherId ) ) ) {
Line 355... Line 303...
355
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
303
        optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
356
      }
304
      }
357
    }
305
    }
358
  });
306
  });
359
 
-
 
360
  $( '#formulaire' ).on( 'change', '.select', function () {
307
 
361
    var dataName = $( this ).data( 'name' ),
308
  $( '#formulaire' ).on( 'change', '.select', function () {
362
        otherId  = PREFIX + dataName,
309
    dataName  = $( this ).data( 'name' );
363
        dataLabel = $( this ).data( 'label' );
310
    otherId   = PREFIX + dataName;
364
 
311
    dataLabel = $( this ).data( 'label' );
Line 373... Line 320...
373
        $( this ).find( '.other' ).val( 'other' );
320
        $( this ).find( '.other' ).val( 'other' );
374
      }
321
      }
375
  });
322
  });
Line 376... Line 323...
376
 
323
 
377
  $( '#formulaire' ).on( 'change', 'input[type=radio]', function () {
324
  $( '#formulaire' ).on( 'change', 'input[type=radio]', function () {
378
    var dataName = $( this ).data( 'name' ),
325
    dataName = $( this ).data( 'name' );
379
        otherId  = PREFIX + dataName,
326
    otherId  = PREFIX + dataName;
380
        dataLabel = $( this ).data( 'label' );
-
 
381
 
327
    dataLabel = $( this ).data( 'label' );
382
    if( 'other' === $( this ).val() ) {
328
    if( 'other' === $( this ).val() ) {
383
      // Insertion du champ "Autre" après les boutons
329
      // Insertion du champ "Autre" après les boutons
384
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
330
      if ( !lthis.valOk( $( '#'+otherId ) ) ) {
385
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName, dataLabel );
331
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio', dataName, dataLabel );
Line 390... Line 336...
390
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
336
      $( this ).closest( '.radio' ).find( '.other' ).val( 'other' );
391
    }
337
    }
392
  });
338
  });
Line 393... Line 339...
393
 
339
 
394
  $( '#formulaire' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
340
  $( '#formulaire' ).on( 'click', '.list-checkbox .other,.checkbox .other', function () {
395
    var dataName = $( this ).data( 'name' ),
341
    dataName = $( this ).data( 'name' );
396
        otherId  = PREFIX + dataName,
342
    otherId  = PREFIX + dataName;
397
        element = $( this ).data( 'element' ),
343
    dataLabel = $( this ).data( 'label' );
398
        dataLabel = $( this ).data( 'label' );
-
 
399
 
344
    element = $( this ).data( 'element' );
400
    if( $( this ).is( ':checked' ) ) {
345
    if( $( this ).is( ':checked' ) ) {
401
        // Insertion du champ "Autre" après les boutons
346
        // Insertion du champ "Autre" après les boutons
402
        if ( !lthis.valOk( $( '#'+otherId ) ) ) {
347
        if ( !lthis.valOk( $( '#'+otherId ) ) ) {
403
          optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
348
          optionAdd( otherId, $( this ).parent( 'label' ), element, dataName, dataLabel );
Line 410... Line 355...
410
  });
355
  });
411
};
356
};
Line 412... Line 357...
412
 
357
 
413
Utils.prototype.collectOtherOption = function() {
358
Utils.prototype.collectOtherOption = function() {
414
  $( '#formulaire' ).on( 'change', '.collect-other', function () {
359
  $( '#formulaire' ).on( 'change', '.collect-other', function () {
415
    var otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' );
360
    const otherIdSuffix = $( this ).data( 'name' ).replace( '[]', '' ),
Line 416... Line 361...
416
    var element = $( this ).data( 'element' );
361
      element           = $( this ).data( 'element' );
417
 
362
 
418
    if ( '' === $( this ).val() ){
363
    if ( '' === $( this ).val() ){
419
      if ( 'select' === element ) {
364
      if ( 'select' === element ) {
Line 438... Line 383...
438
      }
383
      }
439
    }
384
    }
440
  });
385
  });
441
};
386
};
Line -... Line 387...
-
 
387
 
-
 
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
  }
442
 
436
};