Subversion Repositories eFlore/Applications.cel

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3208 idir 1
"use strict";
2
 
3
/*************************************
4
 *  Fonctions de Style et Affichage  *
5
 *      des éléments "spéciaux"      *
6
 *************************************/
7
 
8
// Logique d'affichage pour le input type=file
3217 idir 9
function inputFile() {
3208 idir 10
  // Initialisation des variables
11
  var $fileInput  = $( '.input-file' ),
12
      $button     = $( '.label-file' );
13
  // Action lorsque la "barre d'espace" ou "Entrée" est pressée
14
  $( '.label-file' ).keydown( function( event ) {
15
    if ( event.keyCode == 13 || event.keyCode == 32 ) {
16
      $( '#' + $( this ).attr( 'for' ) + '.input-file' ).click();
17
    }
18
  });
19
  // // Affiche un retour visuel dès que input:file change
20
  // $('#form-supp').on( 'change', '.input-file', function( event ) {
21
  //   // Il est possible de supprimer un fichier
22
  //   // donc on vérifie que le 'change' est un ajout ou modification
23
  //   if( !$.isEmptyObject( event.target.files[0] ) ) {
24
  //     var file = event.target.files[0],
25
  //         fileId = $( this ).attr( 'id' ),
26
  //         $thisFile = $( this ).parent('.label-file.' + fileId ),
27
  //         $imageContainer = $( '#miniatures' ),
28
  //         $theReturn = $( '.' + fileId  + 'Img') || false,
29
  //         fileImgHtml = '';
30
 
31
 
32
  //     if( file.type.match( 'image' ) ) {
33
  //       fileImgHtml =
34
  //         '<div class="' + fileId + 'Img mb-1">'+
35
  //           '<p> ' + file.name + '</p>'+
36
  //           '<img src="' + URL.createObjectURL( file ) + '">'+
37
  //         '</div>';
38
  //     }
39
  //     // Permettre d'enregistrer une nouvelle image
40
  //     if( 0 < $theReturn.length ) {
41
  //       // Changement du fichier
42
  //       $theReturn.html( fileImgHtml );
43
  //     } else {
44
  //       $imageContainer.append( fileImgHtml );
45
  //       $imageContainer.append( $thisFile  );
46
 
47
  //       $( '#photos-conteneur' ).html(
48
  //           '<label for="fichier' + countFiles + '" class="label-file btn btn-default fichier' + countFiles + '">'+
49
  //             '<i class="fas fa-download"></i> Ajouter une image'+
50
  //             '<input type="file" id="fichier' + countFiles + '" name="fichier' + countFiles + '" class="input-file" accept="image/jpeg">'+
51
  //             '<input type="hidden" name="MAX_FILE_SIZE" value="5242880">'+
52
  //           '</label>'+
53
  //           '<hr>'
54
  //       );
55
  //       countFiles++;
56
  //     }
57
  //     // Changer le text
58
  //     $thisFile.find( '.label-text').html( '<i class="fas fa-exchange-alt"></i> Changer cette image');
59
  //     $thisFile.css( 'background-color', '#ea9973' );
60
  //     $thisFile.hover( function() {
61
  //       $( this ).css( 'background-color', 'rgba(234, 153, 115, 0.7)' );
62
  //     });
63
  //     $( '.' + fileId  + 'Img img').attr( 'width', $thisFile.outerWidth() );
64
 
65
  //   }
66
  // });
67
  // // Annuler le téléchargement
68
  // $( '.remove-file' ).click( function() {
69
  //   var $thisFileInput = $( this ).prev( '.input-file-container' ).find( '.input-file' );
70
  //   $thisFileInput.wrap( '<form>' ).closest( 'form' ).get(0).reset();
71
  //   $thisFileInput.triggerHandler( 'change' );
72
  //   $thisFileInput.unwrap();
73
  //   $( this ).next( '.file-return' ).addClass( 'hidden' ).empty();
74
  // });
75
}
76
 
77
// Style et affichage des list-checkboxes
78
function inputListCheckbox() {
79
  // On écoute le click sur une list-checkbox ('.selectBox')
80
  // à tout moment de son insertion dans le dom
81
  // Todo :
82
  // _ S'assurer de bien viser la bonne list-checkbox
83
  // _ Au click sur un autre champ remballer la list-checkbox
84
  $( document ).click( function( event ) {
85
    var target = event.target;
86
 
87
    if ( !$( target ).is( '.overSelect' ) && 0 === $( target ).closest( '.checkboxes' ).length ) {
88
      $( '.checkboxes' ).each( function () {
89
        $( this ).addClass( 'hidden' );
90
      });
91
      $( '.selectBox select.focus' ).each( function() {
92
        $( this ).removeClass( 'focus' );
93
      });
94
    }
95
  });
96
 
97
  $( '#zone-appli' ).on( 'click' , '.selectBox' , function() {
98
    // $( '.checkboxes[data-id="' + $(this).attr( 'data-id' ) + '"]' ).toggleClass( 'hidden' );
99
    $( this ).next().toggleClass( 'hidden' );
100
    $( this ).find( 'select' ).toggleClass( 'focus' );
101
 
102
  });
103
}
104
 
105
// Style et affichage des input type="range"
106
function inputRangeDisplayNumber() {
3217 idir 107
  $( '#zone-appli' ).on( 'input' , '.range input[type="range"]' , function () {
3208 idir 108
    $( this ).next( 'input[type="number"]' ).val ( $( this ).val() );
109
  });
3217 idir 110
  $( '#zone-appli' ).on( 'input' , '.range input[type="number"]' , function () {
3208 idir 111
    $( this ).prev( 'input[type="range"]' ).val ( $( this ).val() );
112
  });
113
}
114
 
115
// Activation/Desactivation et contenu de la modale Bootstrap
116
// https://getbootstrap.com/docs/3.3/javascript/#modals
117
function previewFieldHelpModal() {
3217 idir 118
  $( '#zone-appli' ).on( 'click' , '.help-button' , function ( event ) {
119
    var thisFieldKey = $( this ).data( 'key' ),
120
        // filePath ci dessous est un test, obtenir une vraie url une fois les fichiers d'aide accessibles
121
        filePath = 'https://beta.tela-botanica.org/tmp/eflore_v5_cache/pdf/Fabaceae-3497041375.pdf',
122
        fileMimeType = $( this ).data( 'mime-type' );
123
 
3208 idir 124
    // Titre
3217 idir 125
    $( '#help-modal-label' ).text( 'Aide pour : ' +  $( this ).data( 'name' ) );
126
 
127
    if( fileMimeType.match( 'image' ) ) {
128
      $( '#print_content' ).append( '<img src="' + filePath + '" style="max-width:100%">' );
129
    } else if( fileMimeType.match( 'pdf' ) ) {
130
      $( '#print_content' ).append( '<iframe src="' + filePath + '" width="100%" height="650" align="middle" scrolling="no" frameborder="0"></iframe>' );
3208 idir 131
    }
3217 idir 132
 
3208 idir 133
    // Sortie avec la touche escape
134
    $( '#help-modal' ).modal( { keyboard : true } );
135
    // Affichage
3217 idir 136
    $( '#help-modal' ).modal({ show: true });
3208 idir 137
    // Remplacer l'autofocus qui ne fonctionne plus en HTML5
138
    // Message dans la doc de bootstrap :
139
    // Due to how HTML5 defines its semantics,
140
    // the autofocus HTML attribute has no effect in Bootstrap modals.
141
    // To achieve the same effect, use some custom JavaScript
142
    $( '#help-modal' ).on( 'shown.bs.modal' , function () {
143
      $( '#myInput' ).trigger( 'focus' );
144
    })
145
    // Réinitialisation
146
    $( '#help-modal' ).on( 'hidden.bs.modal' , function () {
147
      $( '#help-modal-label' ).text();
148
      $( '#print_content' ).empty();
149
    })
150
  });
151
}
152
 
153
// Faire apparaitre un champ text "Autre"
154
function onOtherOption() {
155
 
156
  const PREFIX = 'collect-other-';
157
 
158
  // Ajouter un champ texte pour "Autre"
159
  function optionAdd( otherId, $target, element ) {
160
    $target.after(
161
      '<label for="' + otherId + '" class="' + otherId + '">Autre option :</label>' +
162
      '<input type="text" id="' + otherId + '" name="' + otherId + '" class="collect-other" data-element="' + element + '">'
163
    );
164
  }
165
 
166
  // Supprimer un champ texte pour "Autre"
167
  function optionRemove( otherId, $this ) {
168
    $( '.' + otherId + ', #' + otherId ).remove();
169
  }
170
 
171
  $( '#form-supp .other' ).each( function() {
172
    if( $( this ).hasClass( 'is-select' ) ) {
173
      var otherId = PREFIX + $( this ).parent( 'select' ).attr( 'name' );
174
      // Insertion du champ "Autre" après les boutons
175
      optionAdd( otherId, $( this ).parent( '.select' ) , 'select' );
176
    } else if ( $( this ).is( ':checked' ) ) {
177
      var otherId = PREFIX + $( this ).attr( 'name' ),
178
          element = $( this ).attr( 'data-element' );
179
      // Insertion du champ "Autre" après les boutons
180
      optionAdd( otherId, $( this ).parent( 'label' ) , element );
181
    }
182
  });
183
 
184
  $( '#form-supp select' ).change( function () {
185
    var otherId = PREFIX + $( this ).attr( 'name' );
186
 
187
    if( 'other' === $( this ).val() ) {
188
        // Insertion du champ "Autre" après les boutons
189
        optionAdd( otherId, $( this ).parent( '.select' ), 'select' );
190
      } else {
191
        // Suppression du champ autre
192
        optionRemove( otherId, $( this ) );
193
        $( this ).find( '.other' ).val( 'other' );
194
      }
195
  });
196
 
197
  $( '#form-supp input[type=radio]' ).change( function () {
198
    var otherId = PREFIX + $( this ).attr( 'name' );
199
 
200
    if( 'other' === $( this ).val() ) {
201
        // Insertion du champ "Autre" après les boutons
202
        optionAdd( otherId, $( this ).parent( 'label' ), 'radio' );
203
    } else {
204
      // Suppression du champ autre
205
      optionRemove( otherId, $( this ) );
206
      $( this ).closest( 'div.control-group.radio' ).find( '.other' ).val( 'other' );
207
    }
208
  });
209
 
210
  $( '#form-supp .list-checkbox .other, #form-supp .checkbox .other' ).click( function () {
211
    var otherId = PREFIX + $( this ).attr( 'name' ),
212
        element = $( this ).attr( 'data-element' );
213
    // console.log(element);
214
    if( $( this ).is( ':checked' ) ) {
215
        // Insertion du champ "Autre" après les boutons
216
        optionAdd( otherId, $( this ).parent( 'label' ), element );
217
      } else {
218
        // Suppression du champ autre
219
        optionRemove( otherId, $( this ) );
220
        $( this ).val( 'other' );
221
      }
222
  });
223
}
224
 
225
function collectOtherOption() {
226
  $( '#form-supp' ).on( 'change', '.collect-other', function () {
227
    var otherIdSuffix = $( this ).attr( 'name' ).replace( 'collect-other-', '' ),
228
        element = $( this ).attr( 'data-element' );
229
    if ( '' === $( this ).val() ){
230
      if ( 'select' === element ) {
231
        $( '#' + otherIdSuffix ).find( '.other' ).prop( 'selected', false );
232
      } else {
233
        $( '#other-' + otherIdSuffix ).prop( 'checked', false );
234
      }
235
    } else {
236
      if ( 'select' === element ) {
237
        $( '#' +  otherIdSuffix ).find( '.other' ).val( $( this ).val() );
238
        $( '#' +  otherIdSuffix + ' option').not( '.other' ).prop( 'selected', false );
239
        $( '#' +  otherIdSuffix ).find( '.other' ).prop( 'selected', true );
240
      } else {
241
        if ( 'radio' === element ) {
242
          $( 'input[name=' + otherIdSuffix + ']' ).not( '#other-' + otherIdSuffix ).prop( 'checked', false );
243
        }
244
        // console.log( otherIdSuffix );
245
        $( '#other-' + otherIdSuffix ).val( $( this ).val() );
246
        $( '#other-' + otherIdSuffix ).prop( 'checked', true );
247
      }
248
 
249
    }
250
  });
251
}
252
 
253
/***************************
254
 *  Lancement des scripts  *
255
 ***************************/
256
jQuery( document ).ready( function() {
3217 idir 257
  // Affichage des images ou nom des documents importés
258
  inputFile();
259
  // Affichage des List-checkbox
3208 idir 260
  inputListCheckbox();
3217 idir 261
 
3208 idir 262
  // // Affichage des Range
263
  // inputRangeDisplayNumber()
3217 idir 264
 
265
  // Modale "aide"
266
  previewFieldHelpModal();
267
  // Ajout/suppression d'un champ texte "Autre"
3208 idir 268
  onOtherOption();
269
  collectOtherOption();
270
});