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