ux/Lightbox.js
[roojs1] / ux / Lightbox.js
1 /* <script type="text/javascript">
2 // -----------------------------------------------------------------------------------
3 // Roo lightbox - based on..
4 //
5 //      Lightbox v2.04
6 //      by Lokesh Dhakar - http://www.lokeshdhakar.com
7 //      Last Modification: 2/9/08
8 //
9 //      For more information, visit:
10 //      http://lokeshdhakar.com/projects/lightbox2/
11 //
12 //      Licensed under the Creative Commons Attribution 2.5 License - http://creativecommons.org/licenses/by/2.5/
13 //      - Free for use in both personal and commercial projects
14 //              - Attribution requires leaving author name, author link, and the license info intact.
15 //      
16 //  Thanks: Scott Upton(uptonic.com), Peter-Paul Koch(quirksmode.com), and Thomas Fuchs(mir.aculo.us) for ideas, libs, and snippets.
17 //              Artemy Tregubenko (arty.name) for cleanup and help in updating to latest ver of proto-aculous.
18 //
19 // -----------------------------------------------------------------------------------
20 /*
21
22     Table of Contents
23     -----------------
24     Configuration
25
26     Lightbox Class Declaration
27     - initialize()
28     - updateImageList()
29     - start()
30     - changeImage()
31     - resizeImageContainer()
32     - showImage()
33     - updateDetails()
34     - updateNav()
35     - enableKeyboardNav()
36     - disableKeyboardNav()
37     - keyboardAction()
38     - preloadNeighborImages()
39     - end()
40     
41     Function Calls
42     - document.observe()
43    
44 */
45 Roo.namespace('Roo.ux'); 
46  
47 Roo.ux.Lightbox = function(cfg) {
48     this.imageArray = [];
49     Roo.apply(this,cfg);
50     this.initialize();
51 }
52
53 Roo.apply(Roo.ux.Lightbox.prototype,  
54 {
55     // optiosn..
56      
57     /**
58      * @cfg overlayOpacity {number} controls transparency of shadow overlay
59      */
60     overlayOpacity: 0.8,   
61     /**
62      * @cfg animate {boolean} toggles resizing animations
63      */
64     animate: true,          
65     /**
66      * @cfg resizeSpeed {number} controls the speed of the image 
67      * resizing animations (1=slowest and 10=fastest)
68      */
69     resizeSpeed: 9,
70     /**
71      * @cfg borderSize {number} if you adjust the padding in the CSS, 
72      * you will need to update this variable
73      */
74     borderSize: 10,
75     /**
76      * @cfg labelImage {string} When grouping images this is used to write: Image # of #.
77      * Change it for non-english localization
78      */
79         labelImage: "Image",
80         /**
81      * @cfg labelOf {string}  When grouping images this is used to write: Image # of #.
82      */
83     labelOf: "of",
84     
85     
86     
87     
88     /**
89      * List of images
90      */
91     imageArray: false,
92     
93     /**
94      * Current image.
95      * 
96      */
97      
98     activeImage: undefined,
99     
100     /**
101      * initialize() 
102      *  Constructor runs on completion of the DOM loading. Calls updateImageList and then
103      * the function inserts html at the bottom of the page which is used to display the shadow 
104      *  overlay and the image container.
105      * 
106      * 
107      */
108     initialize: function() {    
109         
110         this.updateImageList();
111         this.initializeCSS();
112         // TBD this.keyboardAction = this.keyboardAction.bindAsEventListener(this);
113         this.resizeSpeed  = Math.min(this.resizeSpeed, 10);
114         this.resizeSpeed  = Math.max(this.resizeSpeed, 1);
115         
116             this.resizeDuration = this.animate ? ((11 - this.resizeSpeed) * 0.15) : 0;
117             this.overlayDuration = this.animate ? 0.2 : 0;  // shadow fade in/out duration
118
119         // When Lightbox starts it will resize itself from 250 by 250 to the current image dimension.
120         // If animations are turned off, it will be hidden as to prevent a flicker of a
121         // white 250 by 250 box.
122         var size = (this.animate ? 250 : 1) + 'px';
123         var dh = Roo.DomHelper;
124         this.el = Roo.DomHelper.append(document.body, {
125                 html: 
126                   '<div class="roo-lightbox-overlay"></div>' +
127                   '<div class="roo-lightbox">' +
128                   '   <div class="outer-image-container">' +
129                   '       <div class="image-container">' +
130                   '           <img class="lightbox-image">' +
131                   '           <div style="" class="hover-nav">' +
132                   '               <a href="#" class="prev-link"></a>' +
133                   '               <a href="#" class="next-link"></a>' +
134                   '           </div>' +
135                   '           <div class="loading">' +
136                   '               <a href="#" class="loading-link">&nbsp;</a>' +
137                   '           </div>' +
138                   '       </div>' +
139                   '   </div>' +
140                   '   <div class="image-data-container">' +
141                   '       <div class="image-data">' +
142                   '           <div class="image-details">' +
143                   '               <span class="caption"></span>' +
144                   '               <span class="number-display"></span>' +
145                   '           </div>' +
146                   '           <div class="bottom-nav">' +
147                   '               <div href="#" class="bottom-nav-close"></div>' +
148                   '           </div>' +
149                   '       </div>' +
150                   '   </div>' +
151                  '</div>'
152             }, true);
153          
154          
155         
156         var th = this;
157         
158         var ids = 'roo-lightbox outer-image-container image-container ' + 
159             'lightbox-image hover-nav prev-link next-link loading loading-link ' + 
160             'image-data-container image-data image-details caption number-display ' +
161             'bottom-nav bottom-nav-close roo-lightbox-overlay';   
162             
163         Roo.each(ids.split(' '), 
164             function(id){ 
165                 var vid = id.replace(/\-/g,'');
166                 th[vid] = th.el.child('.'+id); 
167                 if (!th[vid]) {
168                     return;
169                 }
170                 
171                 th[vid].setVisibilityMode(Roo.Element.DISPLAY);
172             });
173         this.lightbox = this.roolightbox;
174
175         this.overlay = this.roolightboxoverlay;
176         this.overlay.hide();
177          
178                 this.lightbox.hide();
179         this.lightbox.on('click',  function(event) { 
180                  if (Roo.get(event.getTarget()).hasClass('roo-lightbox')) {
181                     this.end(); 
182                 }
183             }, this);
184             
185                 this.outerimagecontainer.setStyle({ width: size, height: size });
186         
187                 this.prevlink.on('click', 
188             function(event) { 
189                 event.stopEvent(); 
190                 this.changeImage(this.activeImage - 1); 
191             }, this);
192             
193                 this.nextlink.on('click', 
194             function(event) { 
195                 event.stopEvent(); 
196                 this.changeImage(this.activeImage + 1); 
197             },this);
198             
199                 this.loadinglink.on('click', 
200             function(event) { 
201                 event.stopEvent(); 
202                 this.end(); 
203             }, this);
204             
205                 this.bottomnavclose.on('click',  
206             function(event) { 
207                 event.stopEvent(); 
208                 this.end(); 
209             }, this);
210
211         this.overlay.on('click',  
212             function(event) { 
213                 event.stopEvent(); 
214                 this.end(); 
215             }, this);
216
217     },
218
219     initializeCSS: function() {    
220         if (typeof(Roo.ux.Lightbox.css) != 'undefined') {
221             return;
222         }
223         var rootURL = Roo.BLANK_IMAGE_URL.replace(/\/gray\/s\.gif$/, '');
224         
225         Roo.ux.Lightbox.css = Roo.util.CSS.createStyleSheet( {
226             '.roo-lightbox' : {
227                 position: 'absolute',
228                 left: 0,
229                 width: '100%',
230                 'text-align': 'center',
231                 'line-height': 0
232             },
233             '.roo-lightbox a img' : { border: 'none'  },
234             '.roo-lightbox .outer-image-container' : {
235                 position: 'relative',
236                 'background-color': '#fff',
237                 width: '250px',
238                 height: '250px',
239                 margin: '0 auto'
240             },
241             
242             '.roo-lightbox image-container'  :{ padding: '10px'  },
243
244             '.roo-lightbox .loading' : { 
245                 position:'absolute', 
246                 top:'40%',
247                 left:'0%',
248                 height:'25%',
249                 width:'100%',
250                 'text-align':'center',
251                 'line-height':'0'
252             
253             },
254             '.roo-lightbox .loading a' : { 
255                 background:'url('+ rootURL  + '/ux/lightbox/loading.gif) 0 0 no-repeat', 
256                 display:'block',
257                 width:'32px',
258                 height:'32px',
259                 cursor:'pointer'
260             },
261             '.roo-lightbox .bottom-nav-close' : {
262                 background:'url('+ rootURL  + '/ux/lightbox/close.gif) 0 0 no-repeat', 
263                 height:'26px',
264                 width:'26px',
265                 cursor:'pointer'
266             },
267             '.roo-lightbox .hover-nav' :{ 
268                 position:'absolute', 
269                 top:'0', 
270                 left:'0', 
271                 height:'100%', 
272                 width:'100%', 
273                 'z-index':'10'
274             },
275             '.roo-lightbox .image-container>.hover-nav' :{ left:'0' },
276             '.roo-lightbox .hover-nav a' :{ outline:'none'},
277
278             '.roo-lightbox .prev-link, .roo-lightbox .next-link' : { 
279                 width:'49%', 
280                 height:'100%', 
281                 'background-image':'url(data:image/gif;base64,AAAA)', 
282                 display:'block' 
283             },
284             '.roo-lightbox .prev-link' : { left:'0','float':'left'},
285             '.roo-lightbox .next-link' : { right:'0','float':'right'},
286             '.roo-lightbox .prev-link:hover, .roo-lightbox .prev-link:visited:hover ' :{ 
287                     background:'url('+ rootURL  + '/ux/lightbox/prevlabel.gif) left 15% no-repeat'
288             },
289             '.roo-lightbox .next-link:hover, .roo-lightbox .next-link:visited:hover ' :{ 
290                 background:'url('+ rootURL  + '/ux/lightbox/nextlabel.gif) right 15% no-repeat'
291             },
292
293             '.roo-lightbox .image-data-container' : { 
294                 font: '10px Verdana, Helvetica, sans-serif',
295                 'background-color': '#fff',
296                 margin: '0 auto',
297                 'line-height': '1.4em', 
298                 overflow: 'auto', 
299                 width: '100%'
300             },
301
302             '.roo-lightbox .image-data' : { padding:'0 10px', color: '#666' },
303             '.roo-lightbox .image-data .image-details ' : { width: '70%', 'float': 'left', 'text-align': 'left'}  ,
304             '.roo-lightbox .image-data .caption' : { 'font-weight': 'bold' },
305             '.roo-lightbox .image-data .number-display' : { 'display': 'block', clear: 'left', 'padding-bottom': '1.0em'  } ,   
306             '.roo-lightbox .image-data .bottom-nav-close' : {  'float': 'right',  'padding-bottom': '0.7em','outline': 'none'} ,
307             '.roo-lightbox-overlay' : {
308                 'background-color': 'black',
309                 height: '500px',
310                 left: '0px',
311                 position: 'absolute',
312                 top: '0px',
313                 width: '100%',
314                 'z-index': '90'
315             }
316         });
317     },
318
319
320     
321     /**
322      * updateImageList()
323      * Loops through anchor tags looking for 'lightbox' references and applies onclick
324      * events to appropriate links. You can rerun after dynamically adding images w/ajax.
325      * 
326      */
327     updateImageList: function() {   
328         this.updateImageList = Roo.emptyFn;
329         if (this.imageArray.length) {
330             return;
331         }
332         Roo.each(Roo.DomQuery.select('a[rel^=lightbox]'), function(e) {
333             this.imageArray.push(Roo.get(e));
334             Roo.get(e).on('click', (function(event, tg, tga,tgb) {
335                
336              
337                 event.stopEvent();
338                 this.start(tgb);
339             }).createDelegate(this, [e], true));
340         }, this)
341         
342     },
343     
344     /**
345     * start()
346     *  Display overlay and lightbox. If image is part of a set, add siblings to imageArray.
347     */
348     start: function(imageLink) {
349         /*
350         // hide all the objects that cause problems..
351         $$('select', 'object', 'embed').each(
352             function(node){ 
353             node.style.visibility = 'hidden' }
354         );
355         */
356         // stretch overlay to fill page and fade in
357         //var arrayPageSize = this.getPageSize();
358         
359         this.overlay.setHeight(Roo.lib.Dom.getDocumentHeight()) ;
360         this.overlay.setWidth(Roo.lib.Dom.getDocumentWidth());
361         this.overlay.fadeIn({
362                 endOpacity: this.overlayOpacity, 
363                 easing: 'easeOut',
364                 duration: this.overlayDuration
365         });
366          
367         //this.imageArray = [];
368         var imageNum = 0;       
369         
370         if (imageLink) {
371             imageLink = Roo.get(imageLink);
372             //console.log(imageLink.id);
373             Roo.each(this.imageArray, function (e, i) {
374               //  console.log(e.id);
375                 if (e.id == imageLink.id) {
376                     imageNum = i;
377                 }
378             });
379         }
380         
381         // let's assume the constructor sorts out the list of images..
382         /*
383         if ((imageLink.rel == 'lightbox')){
384             // if image is NOT part of a set, add single image to imageArray
385             this.imageArray.push([imageLink.href, imageLink.title]);         
386         } else {
387             // if image is part of a set..
388             this.imageArray = 
389                 $$(imageLink.tagName + '[href][rel="' + imageLink.rel + '"]').
390                 collect(function(anchor){ return [anchor.href, anchor.title]; }).
391                 uniq();
392             
393             while (this.imageArray[imageNum][0] != imageLink.href) { imageNum++; }
394         }
395         */
396         var s = Roo.get(document).getScroll();
397          // calculate top and left offset for the lightbox 
398         // weird.. why / 10?
399         
400         //var lightboxTop = s.top + (Roo.lib.Dom.getViewHeight() / 10);
401         var lightboxTop = (Roo.lib.Dom.getViewHeight() / 10);
402         var lightboxLeft = s.left
403         this.lightbox.setStyle({ 
404             top: lightboxTop + 'px', 
405             left: lightboxLeft + 'px' ,
406             zIndex : 1000
407         })
408         //console.log("show lightbox");
409         this.lightbox.show();
410         
411         
412         this.changeImage(imageNum);
413     },
414
415     //
416     //  changeImage()
417     //  Hide most elements and preload image in preparation for resizing image container.
418     //
419     changeImage: function(imageNum) {   
420         
421         this.activeImage = imageNum; // update global var
422
423         // hide elements during transition
424         if (this.animate) {
425             this.loading.setStyle({
426                 zIndex :1200
427             });
428             this.loading.show();
429             this.loadinglink.setX( (Roo.lib.Dom.getViewWidth() / 2) - 16);
430             //this.loadingLink.show();
431             // center the loading?
432             
433         }
434         
435         this.hovernav.hide();
436         this.prevlink.hide();
437         this.nextlink.hide();
438                 // HACK: Opera9 does not currently support scriptaculous opacity and appear fx
439         this.imagedatacontainer.setStyle({opacity: .0001});
440         this.numberdisplay.hide();
441         
442         var imgPreloader =  Roo.DomHelper.append(document.body, { tag: 'img' } , true);
443         // once image is preloaded, resize image container
444
445         imgPreloader.on('load', function() {
446             Roo.log('this.imageArray[this.activeImage].dom.lwidth');
447             Roo.log(this.imageArray[this.activeImage].dom.lwidth);
448             
449             Roo.log('this.imageArray[this.activeImage].dom.lheight');
450             Roo.log(this.imageArray[this.activeImage].dom.lheight);
451             
452             this.lightboximage.dom.src = this.imageArray[this.activeImage].href || 
453                 this.imageArray[this.activeImage].dom.href || this.imageArray[this.activeImage].dom.src;
454             
455             this.resizeImageContainer(this.imageArray[this.activeImage].dom.lwidth || imgPreloader.getWidth(), this.imageArray[this.activeImage].dom.lheight || imgPreloader.getHeight());
456             imgPreloader.remove();
457         }, this);
458         imgPreloader.dom.src = this.imageArray[this.activeImage].href || 
459             this.imageArray[this.activeImage].dom.href ||  this.imageArray[this.activeImage].dom.src;
460     },
461
462     
463     
464     //
465     //  resizeImageContainer()
466     //
467     resizeImageContainer: function(imgWidth, imgHeight) {
468
469         // make sure we have some sensible sizes..
470         imgWidth = Math.max(50, imgWidth);
471         imgHeight = Math.max(50, imgHeight);
472         
473         // get current width and height
474         var widthCurrent  = this.outerimagecontainer.getWidth();
475         var heightCurrent = this.outerimagecontainer.getHeight();
476         
477         //fixme need better calcs.
478         var w = window;
479         var ww = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
480         var wh = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
481         Roo.log(ww);
482         Roo.log(wh);
483         ww -= 150;
484         wh -= 150;
485         
486         // get new width and height
487         var bs =  this.borderSize * 2;
488         
489         var widthNew  =  imgWidth  + bs;
490         var heightNew =  imgHeight + bs;
491         
492         if (widthNew > ww || heightNew > wh) {
493             // bigger than window.
494             // scale here... - bit nasty..
495             var rescale = 1.1 * Math.max( widthNew / ww , heightNew  / wh);
496             Roo.log(rescale);
497              //console.log(rescale);
498             imgWidth = Math.floor(imgWidth / rescale);
499             imgHeight = Math.floor(imgHeight / rescale);
500             widthNew  =  imgWidth  + bs;
501             heightNew =  imgHeight + bs;
502                     
503             
504         }
505         
506         this.lightboximage.set( { width : imgWidth, height : imgHeight });
507         
508         
509         // scalars based on change from old to new
510         var xScale = (widthNew  / widthCurrent)  * 100;
511         var yScale = (heightNew / heightCurrent) * 100;
512
513         // calculate size difference between new and old image, and resize if necessary
514         var wDiff = widthCurrent - widthNew;
515         var hDiff = heightCurrent - heightNew;
516         
517          
518         this.outerimagecontainer.animate(
519             { width: {to: widthNew}, height: {to: heightNew} },
520             this.resizeDuration,
521             null, // on complete
522             'easeOut', // easing
523             'run' // effect
524         
525         )        
526        
527         
528         // if new and old image are same size and no scaling transition is necessary, 
529         // do a quick pause to prevent image flicker.
530         var timeout = 0;
531         if ((hDiff == 0) && (wDiff == 0)){
532             timeout = 100;
533             if (Roo.isIE) timeout = 250;   
534         }
535
536         (function(){
537             this.prevlink.setStyle({ height: imgHeight + 'px' });
538             this.nextlink.setStyle({ height: imgHeight + 'px' });
539             this.imagedatacontainer.setStyle({ width: widthNew + 'px'}); // the text area..
540             this.showImage();
541         }).defer(timeout / 1000, this);
542     },
543     
544     //
545     //  showImage()
546     //  Display image and begin preloading neighbors.
547     //
548     showImage: function(){
549         
550         this.loading.hide();
551         //this.loadingLink.hide();
552         var _this=  this;
553         this.lightboximage.animate( 
554             {
555                 opacity : {  to: 1.0 }
556             },
557             this.resizeDuration,
558             function(){ 
559                 _this.updateDetails(); 
560             }
561             
562         );
563         this.preloadNeighborImages();
564     },
565
566     //
567     //  updateDetails()
568     //  Display caption, image number, and bottom nav.
569     //
570     updateDetails: function() {
571     
572         // if caption is not null
573         if (this.imageArray[this.activeImage].dom.title  != ""){
574             this.caption.update(this.imageArray[this.activeImage].dom.title);
575             this.caption.show();
576         }
577         
578         // if image is part of set display 'Image x of x' 
579         if (this.imageArray.length > 1){
580             this.numberdisplay.update(
581                 this.labelImage + ' ' + (this.activeImage + 1) + ' ' + this.labelOf + '  ' + this.imageArray.length)
582             this.numberdisplay.show();
583         }
584         var _this = this;
585         this.imagedatacontainer.animate(
586             {
587                 //slide down ?: , from: 0.0, to: 1.0 
588                 opacity :  {  to: 1.0 }
589             },
590             this.resizeDuration,
591             function() {
592                         // update overlay size and update nav
593                         //var arrayPageSize = this.getPageSize();
594                         //this.overlay.setStyle({ height: arrayPageSize[1] + 'px' });
595                         _this.updateNav();
596             }
597              
598         );
599     },
600
601     //
602     //  updateNav()
603     //  Display appropriate previous and next hover navigation.
604     //
605     updateNav: function() {
606
607         this.hovernav.show();               
608
609         // if not first image in set, display prev image button
610         if (this.activeImage > 0) this.prevlink.show();
611
612         // if not last image in set, display next image button
613         if (this.activeImage < (this.imageArray.length - 1)) this.nextlink.show();
614         
615         this.enableKeyboardNav();
616     },
617
618     //
619     //  enableKeyboardNav()
620     //
621     enableKeyboardNav: function() {
622         Roo.get(document.body).on('keydown', this.keyboardAction, this); 
623     },
624
625     //
626     //  disableKeyboardNav()
627     //
628     disableKeyboardNav: function() {
629         Roo.get(document.body).un('keydown', this.keyboardAction, this); 
630     },
631
632     //
633     //  keyboardAction()
634     //
635     keyboardAction: function(event)
636     {
637         var keycode = event.keyCode;
638
639         var escapeKey;
640         if (event.DOM_VK_ESCAPE) {  // mozilla
641             escapeKey = event.DOM_VK_ESCAPE;
642         } else { // ie
643             escapeKey = 27;
644         }
645
646         var key = String.fromCharCode(keycode).toLowerCase();
647         
648         if (key.match(/x|o|c/) || (keycode == escapeKey)){ // close lightbox
649             this.end();
650         } else if ((key == 'p') || (keycode == 37)){ // display previous image
651             if (this.activeImage != 0){
652                 this.disableKeyboardNav();
653                 this.changeImage(this.activeImage - 1);
654             }
655         } else if ((key == 'n') || (keycode == 39)){ // display next image
656             if (this.activeImage != (this.imageArray.length - 1)){
657                 this.disableKeyboardNav();
658                 this.changeImage(this.activeImage + 1);
659             }
660         }
661     },
662
663     //
664     //  preloadNeighborImages()
665     //  Preload previous and next images.
666     //
667     preloadNeighborImages: function(){
668         var preloadNextImage, preloadPrevImage;
669         if (this.imageArray.length > this.activeImage + 1){
670             preloadNextImage = Roo.DomHelper.append(document.body, { tag: 'img' } , true);
671             preloadNextImage.on('load', function() { preloadNextImage.remove() });
672             preloadNextImage.dom.src = this.imageArray[this.activeImage + 1].href ||
673                     this.imageArray[this.activeImage + 1].dom.href || this.imageArray[this.activeImage + 1 ].dom.src;;
674         }
675         if (this.activeImage > 0){
676             preloadPrevImage = Roo.DomHelper.append(document.body, { tag: 'img' } , true);
677             preloadPrevImage.on('load', function() { preloadPrevImage.remove() });
678             preloadPrevImage.dom.src = this.imageArray[this.activeImage - 1].href || 
679                    this.imageArray[this.activeImage - 1].dom.href || this.imageArray[this.activeImage - 1].dom.src;
680         }
681     
682     },
683
684     //
685     //  end()
686     //
687     end: function() {
688         this.disableKeyboardNav();
689         //console.log('lightbox hide');
690         this.lightbox.hide();
691         this.loading.hide();
692         this.overlay.hide();
693         Roo.get(document.body).unmask();
694         // show all the objects that cause problems..
695         //$$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'visible' });
696     }
697
698      
699 });
700