Subversion Repository Public Repository

wpbsav

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
jQuery(document).ready(function($)
{
    /*
    * @desc Objeto galería
    */
    var Gallery = {};

    /*
    * @desc Id contenedor
    */
    Gallery.navigationGalleryId = "navigationGallery";

    /*
    * @desc Id contenedor padres
    */
    Gallery.parentsGalleryId = "parentsGallery";

    Gallery.allButtonsActuacions = ["btnAereasGallery", "btnPuntosElevadosGallery", "btnPuentesGallery", "btnVideosGallery"];

    /*
    * @desc Al inicializarse la página se ejecuta automáticamente
    */
    Gallery.init = function()
    {
        $( "#mapa2, #mapa3, #" + Gallery.navigationGalleryId + " label" ).hide();
        $('.carousel').carousel({
            pause: true,
            interval: false
        });
        $("#"+Gallery.parentsGalleryId).hide();
    }();

    /*
    * @desc Oculta las actuaciones
    */
    Gallery.hideActuacions = function()
    {
        $( "#mapa1, #mapa2, #mapa3" ).hide();
    }

    /*
    * @desc Muestra blockui
    * @param Tag - html tag
    * @param Message - mensaje
    */
    Gallery.showPreloader = function( tag, message )
    {
        $.blockUI( { message: "<"+tag+">"+message+"</"+tag+">" } );
    }

    /*
    * @desc Oculta el preloader
    */
    Gallery.hidePreloader = function()
    {
        $.unblockUI();
    }

    /*
    * @desc Genera los botones imágenes, vídeos
    * @param Data - array de objetos
    */
    Gallery.generateButtons = function( data )
    {

        Gallery.buttons = {};
        Gallery.buttons.total = 0;

        for( obj in data )
        {
            if( _.has(data[obj], 'img' ) === true )
            {
                Gallery.buttons.img = true;
            }
            if( _.has(data[obj], 'video' ) === true )
            {
                Gallery.buttons.video = true;
            }
        }

        for( var i = 0; i < Gallery.allButtonsActuacions.length; i++ )
        {
            Gallery.hideButton( Gallery.allButtonsActuacions[i] );
        }

        if( _.has( Gallery.buttons , 'img' ) === true)
        {
            Gallery.displayButton( "btnImgsGallery" );
            Gallery.buttons.total++;
        }
        else
        {
            Gallery.hideButton( "btnImgsGallery" );
        }

        if( _.has( Gallery.buttons , 'video' ) === true)
        {
            Gallery.displayButton( "btnVideosGallery" );
            Gallery.buttons.total++;
        }
        else
        {
            Gallery.hideButton( "btnVideosGallery" );
        }

        //su +
        if( Gallery.buttons.total > 1 )
        {
            Gallery.displayNavigation();
        }
        else
        {
            Gallery.hideNavigation();
        }
    }

    /*
    * @desc Muestra la navegación
    */
    Gallery.displayNavigation = function ()
    {
        $( "#"+Gallery.navigationGalleryId ).show();
    }

    /*
    * @desc Oculata la navegación
    */
    Gallery.hideNavigation = function ()
    {
        $( "#"+Gallery.navigationGalleryId ).hide();
    }

    /*
    * @desc Muestra botones
    * @param Id del elemento
    */
    Gallery.displayButton = function ( btn )
    {
        $( "#" + btn ).show();
    }

    /*
    * @desc Oculta botones
    * @param Id del elemento
    */
    Gallery.hideButton = function ( btn )
    {
        $("#" + btn).hide();
    }

    /*
    * @desc Detiene el carousel para evitar errores al cambiar a vídeo
    */
    Gallery.stopCarousel = function()
    {
        $('.carousel').each(function(){
            $(this).carousel({
                interval: false
            });
        });
    }

    /*
    * @desc Oculta el carousel
    */
    Gallery.hideCarousel = function()
    {
        $(".carousel").hide();
    }

    /*
    * @desc Muestra el carousel
    */
    Gallery.displayCarousel = function()
    {
        $(".carousel").show();
    }

    /*
    * @desc Oculta los vídeos
    */
    Gallery.hideVideos = function()
    {
        $("#videos").hide();
        $("#titleVideo").hide();
    }

    /*
    * @desc Muestra los vídeos
    */
    Gallery.displayVideos = function()
    {
        $("#videos").show();
        $("#titleVideo").show();
    }

    /*
    * @desc Oculta el caption
    */
    Gallery.hideCaption = function()
    {
        $("#captionGallery").hide();
    }

    /*
    * @desc Muestra el caption
    */
    Gallery.displayCaption = function()
    {
        $("#captionGallery").show();
    }

    /*
    * @desc Limpia el contenido de los vídeos
    */
    Gallery.clearVideo = function()
    {
        $("#titleVideo").html( "" );
        $("#videos").html( "" );
    }

    /*
    * @desc Cuando se cambia la opción del select a cualquier actuación
    */
    Gallery.changeToActuacions = function()
    {
        $("#"+Gallery.parentsGalleryId).hide();
        Gallery.hideCarousel();
        Gallery.hideCaption();
        Gallery.hidePreloader();
        Gallery.hideVideos();
    }

    /*
    * @desc Formatea el título para coger el idioma correspondiente
    * @param Data - Array de objetos
    */
    Gallery.formatTitle = function( data )
    {
        title = data.post_title.split( "<!--:-->" );
        if( Gallery.language && Gallery.language === "CA" )
        {
            title = title[0].replace("<!--:CA-->", "").replace("<!--:es-->", "");
        }
        else
        {
            title = title[1].replace("<!--:CA-->", "").replace("<!--:es-->", "");
        }
        return title;
    }

    /*
    * @desc Genera los enlaces de los elementos padres
    * @param Data - Array de objetos
    */
    Gallery.generateParents = function( data )
    {
        var html = "", i = 0;
        for( obj in data )
        {
            title = Gallery.formatTitle( data[obj] );

            if( data[obj].post_type === "videos" )
            {
                html+="<div class='col-md-4 col-lg-4 col-xs-12 col-sm-12' style='padding-top: 5px'><span style='font-size: 18px; margin-top: -2px'>&raquo;</span> ";
            }
            else
            {
                html+="<div class='col-md-3 col-lg-3 col-xs-12 col-sm-12' style='padding-top: 5px'><span style='font-size: 18px; margin-top: -2px'>&raquo;</span> ";
            }


            if( i === 0 )
            {
                html+="<a class='wp-green-color parentLinkGallery' href='javascript:void(0)' data-id="+data[obj].ID+" data-type=\""+data[obj].post_type+"\">"+title+"</a>";
                $("#parentGalleryTitle").text(title).show();
            }
            else
            {
                html+="<a style='color: #111' class='parentLinkGallery' href='javascript:void(0)' data-id="+data[obj].ID+" data-type=\""+data[obj].post_type+"\">"+title+"</a>";
            }

            html+="</div>";
            i++;
        }

        $("#" + Gallery.parentsGalleryId).html( "" ).append( html );
    }

    /*
    * @desc Actualiza las clases del título del slider
    * @param Data - Array de objetos
    */
    Gallery.updateParentTitle = function( data )
    {
        title = Gallery.formatTitle( data[0] );
        $("#parentGalleryTitle").text(title).show();
    }

    /*
    * @desc Actualiza las clases de los elementos padres
    * @param thisEl - El elemento pulsado
    */
    Gallery.reloadChildrensAnimation = function(thisEl)
    {
        $(".parentLinkGallery").removeAttr( 'style' );
        $(".parentLinkGallery").removeClass("wp-green-color");
        thisEl.addClass("wp-green-color");
        thisEl.css("color", "#8F9F06");
        $(".parentLinkGallery").not(thisEl).css("color", "#111");
        Gallery.activateDefaultButton();
    }

    /*
    * @desc Al cambiar de elemento de navegación el botón activo siempre es el primero
    */
    Gallery.activateDefaultButton = function()
    {
        $("#navigationGallery label").removeClass("btn-bsav");
        $("#navigationGallery label").first().addClass("btn-bsav");
    }

    /*
    * @desc Controla cuando los elementos de navegación deben mostrarse o no
    * @param Data - Array de objetos
    */
    Gallery.displayControls = function( data )
    {
        if( data.length == 1 )
        {
            $(".carousel-control").hide();
        }
        else
        {
            $(".carousel-control").show();
        }
    }

    /*
    * @desc Al pulsar en los enlaces padres, hay que delegar para que funcione
    */
    $(document).on("click", ".parentLinkGallery", function(e)
    {
        e.preventDefault();

        Gallery.showPreloader( "h1", "Cargando elementos" );

        Gallery.reloadChildrensAnimation($(this));

        Gallery.currentTitle = $(this).text();

        var id = $(this).data("id");
        var type = $(this).data("type");
        var data = {
            action: 'load_childrens_gallery',
            type: type,
            id: id,
            language: Gallery.language
        };

        $.get( galleryAjax.url, data, function( response )
        {
            if( typeof response ===  "object" )
            {
                if( response.success === true )
                {
                    Gallery.updateParentTitle( response.data.parent );
                    if( type === "videos" )
                    {
                        Gallery.generateVideoChildrens( response.data.childrens );
                    }
                    else
                    {
                        Gallery.generateChildrens( response.data.childrens );
                    }

                    Gallery.generateButtons( response.data.childrens );
                }
                else if( response.success === false )
                {
                    alert( "ERROR" );
                }
            }
            Gallery.hidePreloader();
            Gallery.hideActuacions();
            $("#"+Gallery.parentsGalleryId).show();
        });
    })

    /*
    * @desc Al ejecutarse el carousel ocultamos el caption
    */
    $(".carousel").on('slide.bs.carousel', function(evt)
    {
       var caption = $('div.item:nth-child(' + ($(evt.relatedTarget).index()+1) + ') .carousel-caption');
       $('#captionGallery').html(caption.html());
       caption.css('display','none');
    });

    /*
    * @desc Al pulsar el botón vídeo
    */
    $("#btnVideosGallery").on("click", function(e)
    {
        Gallery.showPreloader("h2", "Cargando...");
        e.preventDefault();

        Gallery.hideVideos();

        $(".carousel-inner").html( "" );
        $("#navigationGallery label").removeClass("btn-bsav");
        $(this).addClass("btn-bsav");

        for(var i = 0 ; i < Gallery.videoCommons.length ; i++)
        {
            $('<div class="item"><center><iframe width="640" height="480" class="embed-responsive-item" src="https://www.youtube.com/embed/i8RBl7NmL8g" frameborder="0" allowfullscreen></iframe></center></div>').appendTo('.carousel-inner');
            //$('<li data-target="#bsav-gallery-carrousel" data-slide-to="'+i+'"></li>').appendTo('.carousel-indicators')
        }

        Gallery.displayControls(Gallery.videoCommons);

        $('.item').first().addClass('active');

        $(".carousel").css("max-height", "1000px");

        Gallery.hideCaption();

        Gallery.hidePreloader();
    });

    /*
    * @desc Al pulsar en el botón imágenes
    */
    $("#btnImgsGallery, #btnAereasGallery, #btnPuentesGallery, #btnPuntosElevadosGallery").on("click", function(e)
    {
        Gallery.showPreloader( "h2", "Cargando..." );
        e.preventDefault();
        if( $(this).attr("id") === "btnPuentesGallery")
        {
            thisCarouselData = Gallery.arrayPonts;
        }
        else if( $(this).attr("id") === "btnPuntosElevadosGallery" )
        {
            thisCarouselData = Gallery.arrayElevats;
        }
        else if( $(this).attr("id") === "btnAereasGallery" )
        {
            thisCarouselData = Gallery.arrayAereas;
        }
        else if( $(this).attr("id") === "btnImgsGallery" )
        {
            Gallery.generateChildrensOnClick();
            return;
        }

        Gallery.hideVideos();

        Gallery.displayCarousel();

        $(".carousel-inner").html( "" );

        $("#navigationGallery label").removeClass("btn-bsav");
        $(this).addClass("btn-bsav");

        Gallery.generateChildrensActuacions( thisCarouselData );
        Gallery.hidePreloader();
    })

    /*
    * @desc Genera los elementos hijos si son imágenes, crea arrays de objetos globales
    * @param Data - Array de objetos
    */
    Gallery.generateChildrensOnClick = function()
    {

        Gallery.hideVideos();

        Gallery.displayCarousel();

        $(".carousel-inner").html( "" );

        for(var i = 0; i < Gallery.imagesCommons.length; i++)
        {
            if( Gallery.imagesCommons[i].desc )
            {
                $('<div class="item"><center><img src="'+Gallery.imagesCommons[i].img+'"><br><div class="carousel-caption"><strong><h5 style="font-weight: bold;">'+Gallery.imagesCommons[i].title+'</h5></strong><p style="font-size: 14px">'+Gallery.imagesCommons[i].desc+'</p></div></center></div>').appendTo('.carousel-inner');
            }
            else
            {
                $('<div class="item"><center><img src="'+Gallery.imagesCommons[i].img+'"><div class="carousel-caption"><h4></h4></div></center></div>').appendTo('.carousel-inner');
            }
        }

        $("#navigationGallery").appendTo("#buttonsMoved");

        Gallery.displayControls(Gallery.imagesCommons);

        $('.item').first().addClass('active');

        $('#navigationGallery label').removeClass('btn-bsav');

        $('#btnImgsGallery').addClass('btn-bsav');

        $(".carousel").css("max-height", "500px");

        //$('.carousel-indicators > li').first().addClass('active');
        $('#bsav-gallery-carrousel').carousel();

        var caption = $('div.item:nth-child(1) .carousel-caption');
        caption.css('display','none');
        $('#captionGallery').html(caption.html());
        Gallery.displayCaption();
        Gallery.hidePreloader();
    }

    /*
    * @desc Genera los elementos hijos si son imágenes, crea arrays de objetos globales
    * @param Data - Array de objetos
    */
    Gallery.generateChildrens = function( data )
    {
        Gallery.videoCommons = [];//videos globales
        Gallery.imagesCommons = [];//imágenes globales
        for( obj in data )
        {
            if( _.has( data[obj] , 'img' ) )
            {
                Gallery.imagesCommons.push({
                    id: obj,
                    date: _.has( data[obj] , 'date' ) === true ? data[obj].date.value : null,
                    desc: _.has( data[obj] , 'desc' ) === true ? data[obj].desc.value : null,
                    img: _.has( data[obj] , 'img' ) === true ? data[obj].img.value : null,
                    title: _.has( data[obj] , 'title' ) === true ? data[obj].title.value : null
                })
            }
            else if( _.has( data[obj] , 'video' ) )
            {
                Gallery.videoCommons.push({
                    id: obj,
                    desc: _.has( data[obj] , 'desc' ) === true ? data[obj].desc.value : null,
                    title: _.has( data[obj] , 'title' ) === true ? data[obj].title.value : null,
                    video: _.has( data[obj] , 'video' ) === true ? data[obj].video.value : null
                })
            }
        }

        Gallery.imagesCommons.sort(function(a,b)
        {
             return new Date(b.date) - new Date(a.date);
        });

        //si son post_type histories no alteramos el orden
        if( Gallery.currentPostType !== "histories" )
        {
            Gallery.imagesCommons.reverse();
        }

        if( Gallery.currentPostType == "maquetes" )
        {
            Gallery.imagesCommons.reverse();
        }

        if( Gallery.currentPostType == "planols" )
        {
            Gallery.imagesCommons.reverse();
        }

        if( Gallery.currentPostType == "virtuals" )
        {
            Gallery.imagesCommons.reverse();
        }

        Gallery.hideVideos();

        Gallery.displayCarousel();

        $(".carousel-inner").html( "" );

        for(var i=0 ; i < Gallery.imagesCommons.length ; i++)
        {
            if( Gallery.imagesCommons[i].desc )
            {
                $('<div class="item"><center><img src="'+Gallery.imagesCommons[i].img+'"><br><div class="carousel-caption"><strong><h5 style="font-weight: bold;">'+Gallery.imagesCommons[i].title+'</h5></strong><p style="font-size: 14px">'+Gallery.imagesCommons[i].desc+'</p></div></center></div>').appendTo('.carousel-inner');
            }
            else
            {
                $('<div class="item"><center><img src="'+Gallery.imagesCommons[i].img+'"><div class="carousel-caption"><h4></h4></div></center></div>').appendTo('.carousel-inner');
            }
        }

        $("#navigationGallery").appendTo("#buttonsMoved");

        Gallery.displayControls(Gallery.imagesCommons);

        $('.item').first().addClass('active');

        $(".carousel").css("max-height", "500px");

        //$('.carousel-indicators > li').first().addClass('active');
        $('#bsav-gallery-carrousel').carousel();

        var caption = $('div.item:nth-child(1) .carousel-caption');
        caption.css('display','none');
        $('#captionGallery').html(caption.html());
        Gallery.displayCaption();
    }

    /*
    * @desc Genera los elementos hijos si son imágenes, crea arrays de objetos globales
    * @param Data - Array de objetos
    */
    Gallery.generateChildrensActuacions = function( data )
    {
        Gallery.actuacio = [];//videos globales
        Gallery.videoActuacio = [];//imágenes globales
        for( obj in data )
        {
            if( _.has( data[obj] , 'img' ) )
            {
                Gallery.actuacio.push({
                    id: obj,
                    date: _.has( data[obj] , 'date' ) === true ? data[obj].date.value : null,
                    desc: _.has( data[obj] , 'desc' ) === true ? data[obj].desc.value : null,
                    img: _.has( data[obj] , 'img' ) === true ? data[obj].img.value : null,
                    title: _.has( data[obj] , 'title' ) === true ? data[obj].title.value : null
                })
            }
            else if( _.has( data[obj] , 'video' ) )
            {
                Gallery.videoActuacio.push({
                    id: obj,
                    desc: _.has( data[obj] , 'desc' ) === true ? data[obj].desc.value : null,
                    title: _.has( data[obj] , 'title' ) === true ? data[obj].title.value : null,
                    video: _.has( data[obj] , 'video' ) === true ? data[obj].video.value : null
                })
            }
        }

        Gallery.actuacio.sort(function(a,b)
        {
             return new Date(b.date) - new Date(a.date);
        });

        Gallery.hideVideos();

        Gallery.displayCarousel();

        $(".carousel-inner").html( "" );

        for(var i=0 ; i < Gallery.actuacio.length ; i++)
        {
            if( Gallery.actuacio[i].desc )
            {
                $('<div class="item"><center><img src="'+Gallery.actuacio[i].img+'"><br><div class="carousel-caption"><strong><h5 style="font-weight: bold;">'+Gallery.actuacio[i].title+'</h5></strong><p style="font-size: 14px">'+Gallery.actuacio[i].desc+'</p></div></center></div>').appendTo('.carousel-inner');
            }
            else
            {
                $('<div class="item"><center><img src="'+Gallery.actuacio[i].img+'"><div class="carousel-caption"><h4></h4></div></center></div>').appendTo('.carousel-inner');
            }
        }

        $("#navigationGallery").appendTo("#buttonsMoved");

        Gallery.displayControls(Gallery.actuacio);

        $('.item').first().addClass('active');

        $(".carousel").css("max-height", "500px");

        //$('.carousel-indicators > li').first().addClass('active');
        $('#bsav-gallery-carrousel').carousel();

        var caption = $('div.item:nth-child(1) .carousel-caption');
        caption.css('display','none');
        $('#captionGallery').html(caption.html());
        Gallery.displayCaption();
    }

    /*
    * @desc Genera el slider de tipo vídeos
    * @param Data - Array de objetos
    */
    Gallery.generateVideoChildrens = function( data )
    {
        Gallery.hideCarousel();

        Gallery.displayVideos();

        $('.carousel').carousel({
            pause: true,
            interval: false
        });

        Gallery.hideCaption();
        Gallery.clearVideo();
        Gallery.hideNavigation();

        $("#titleVideo").text(data[0].title);
        $("#titleVideo").show();
        $('<iframe width="1280" height="720" class="embed-responsive-item" src="https://www.youtube.com/embed/i8RBl7NmL8g" frameborder="0" allowfullscreen></iframe>').appendTo("#videos");
    }

    /*
    * @desc Al pulsar en cada marker de actuacions
    */
    $('area').click(function(e)
    {
        Gallery.showPreloader( "h2", "Espere..." );
        e.preventDefault();
        var language = $( "#qtranslate-chooser" ).find( '.dropdown-toggle li' ).context.URL.split( '/' );
        Gallery.language = language[4];
        var data = {
            action: 'actuacions',
            type: $(this).data("type"),
            title: $(this).data("title"),
            language: Gallery.language
        };

        $.get( galleryAjax.url, data, function( response )
        {
            if( typeof response === "object" )
            {
                if( response.success === true )
                {
                    $("#navigationGallery label").removeClass("active");
                    Gallery.updateParentTitle( response.data.parent );
                    var explodedType = data.type.split("-")[0];
                    var grouped = _.groupBy(response.data.childrens, 'post_type');
                    Gallery.generateButtonsActuacions( grouped, explodedType );
                    Gallery.arrayAereas = grouped["aereas-"+explodedType];
                    Gallery.arrayPonts = grouped["ponts-"+explodedType];
                    Gallery.arrayElevats = grouped["elevats-"+explodedType];
                    Gallery.videoCommons = _.has( grouped , 'videos-'+explodedType ) === true ? grouped["videos-"+explodedType] : [];
                    Gallery.generateChildrensActuacions( grouped["aereas-"+explodedType] );
                }
                Gallery.hidePreloader();
            }
        });
    });

    /*
    * @desc Genera los botones imágenes, vídeos
    * @param Data - array de objetos
    * @param Type - sagrera - sandreu
    */
    Gallery.generateButtonsActuacions = function( buttons, type )
    {
        Gallery.buttonsActuacions = {};
        Gallery.buttonsActuacions.total = 0;

        for( obj in buttons )
        {
            if( obj == 'aereas-' + type )
            {
                Gallery.buttonsActuacions.aereas = "btnAereasGallery";
            }
            if( obj == 'elevats-' + type )
            {
                Gallery.buttonsActuacions.elevats = "btnPuntosElevadosGallery";
            }
            if( obj == 'ponts-' + type )
            {
                Gallery.buttonsActuacions.ponts = "btnPuentesGallery";
            }
            if( obj == 'videos-' + type )
            {
                Gallery.buttonsActuacions.videos = "btnVideosGallery";
            }
        }

        for( var i = 0; i < Gallery.allButtonsActuacions.length; i++ )
        {
            Gallery.hideButton( Gallery.allButtonsActuacions[i] );
        }

        for( key in Gallery.buttonsActuacions )
        {
            if( Gallery.buttonsActuacions[key] != 0 )
            {
                Gallery.displayButton( String(Gallery.buttonsActuacions[key]) );
                Gallery.buttonsActuacions.total++;
            }
        }

        $("#btnImgsGallery").hide();
        if( Gallery.buttonsActuacions.total > 1 )
        {
            Gallery.displayNavigation();
            $("#btnAereasGallery").removeClass("btn-default").addClass("btn-bsav");
        }
        else
        {
            Gallery.hideNavigation();
        }

        if( type === "sagrera" )
        {
            $("#mapa2").hide();
        }
        else
        {
            $("#mapa3").hide();
        }
    }

    /*
    * @desc Al seleccionar una opción del desplegable
    */
     $("#dd_gallery li a").click(function()
     {
          Gallery.showPreloader( "h2", "Espere..." );

          Gallery.activateDefaultButton();

          $("#galleryHead .btn:first-child").text($(this).text());
          $("#galleryHead .btn:first-child").val($(this).text());

          var type = $(this).data( "type" );
          Gallery.currentPostType = type;
          var language = $( "#qtranslate-chooser" ).find( '.dropdown-toggle li' ).context.URL.split( '/' );
          Gallery.language = language[4];

          if( type == galleryAjax.sagrera )
          {
              $( "#mapa3, #mapa1" ).hide();
              $( "#mapa2" ).show();
              Gallery.changeToActuacions();
          }
          else if( type == galleryAjax.sandreu )
          {
              $( "#mapa2, #mapa1" ).hide();
              $( "#mapa3" ).show();
              Gallery.changeToActuacions();
          }
          else
          {
              var data = {
                  action: 'load_gallery',
                  type: type,
                  language: Gallery.language
              };

              $.get( galleryAjax.url, data, function( response )
              {
                  if( typeof response ===  "object" )
                  {
                      if( response.success === true )
                      {
                          if( type === "videos" )
                          {
                              Gallery.generateParents( response.data.parents );
                              Gallery.generateVideoChildrens( response.data.childrens );
                          }
                          else
                          {
                              Gallery.generateParents( response.data.parents );
                              Gallery.generateButtons( response.data.childrens );
                              Gallery.generateChildrens( response.data.childrens );
                          }

                      }
                      else if( response.success === false )
                      {
                          alert( "ERROR" );
                      }
                  }
                  Gallery.hidePreloader();
                  Gallery.hideActuacions();
                  $("#"+Gallery.parentsGalleryId).show();
              });
          }
     });
});

Commits for wpbsav/SagreraWP/wp-content/themes/bsav/js/gallery.js

Diff revisions: vs.
Revision Author Commited Message
57 Diff Diff iparra picture iparra Mon 04 May, 2015 09:02:30 +0000

Eliminado console.log de gallery.js

56 Diff Diff iparra picture iparra Mon 04 May, 2015 09:01:53 +0000

Modificado gallery.js para alterar el order de los sliders.

55 Diff Diff iparra picture iparra Mon 04 May, 2015 08:40:34 +0000

Alterado el order de los sliders si son de tipo historia

53 Diff Diff iparra picture iparra Mon 04 May, 2015 08:03:51 +0000

Actualizado gallery.js

52 Diff Diff iparra picture iparra Mon 04 May, 2015 07:43:40 +0000

Actualizada gallery.js

51 Diff Diff iparra picture iparra Mon 04 May, 2015 06:59:46 +0000

Actuaizada gallery.js

47 Diff Diff iparra picture iparra Thu 30 Apr, 2015 14:52:47 +0000

Actualizada gallery.js

45 Diff Diff iparra picture iparra Thu 30 Apr, 2015 09:52:05 +0000

Modificado div parents dependiendo si es vídeo y img el post_type

43 iparra picture iparra Thu 30 Apr, 2015 09:36:52 +0000

jQuery de la galería, faltan implementar las actuaciones.