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     /**
311      * updateImageList()
312      * Loops through anchor tags looking for 'lightbox' references and applies onclick
313      * events to appropriate links. You can rerun after dynamically adding images w/ajax.
314      * 
315      */
316     updateImageList: function() {   
317         this.updateImageList = Roo.emptyFn;
318         if (this.imageArray.length) {
319             return;
320         }
321         Roo.each(Roo.DomQuery.select('a[rel^=lightbox]'), function(e) {
322             this.imageArray.push(Roo.get(e));
323             Roo.get(e).on('click', (function(event, tg, tga,tgb) {
324                
325              
326                 event.stopEvent();
327                 this.start(tgb);
328             }).createDelegate(this, [e], true));
329         }, this)
330         
331     },
332     
333     /**
334     * start()
335     *  Display overlay and lightbox. If image is part of a set, add siblings to imageArray.
336     */
337     start: function(imageLink) {
338         /*
339         // hide all the objects that cause problems..
340         $$('select', 'object', 'embed').each(
341             function(node){ 
342             node.style.visibility = 'hidden' }
343         );
344         */
345         // stretch overlay to fill page and fade in
346         //var arrayPageSize = this.getPageSize();
347         Roo.get(document.body).mask(false);
348         Roo.get(document.body)._mask.setHeight(Roo.lib.Dom.getDocumentHeight())        
349         //new Effect.Appear(this.overlay,
350         //    { duration: this.overlayDuration, from: 0.0, to: this.overlayOpacity });
351
352         //this.imageArray = [];
353         var imageNum = 0;       
354         
355         if (imageLink) {
356             imageLink = Roo.get(imageLink);
357             //console.log(imageLink.id);
358             Roo.each(this.imageArray, function (e, i) {
359               //  console.log(e.id);
360                 if (e.id == imageLink.id) {
361                     imageNum = i;
362                 }
363             });
364         }
365         
366         // let's assume the constructor sorts out the list of images..
367         /*
368         if ((imageLink.rel == 'lightbox')){
369             // if image is NOT part of a set, add single image to imageArray
370             this.imageArray.push([imageLink.href, imageLink.title]);         
371         } else {
372             // if image is part of a set..
373             this.imageArray = 
374                 $$(imageLink.tagName + '[href][rel="' + imageLink.rel + '"]').
375                 collect(function(anchor){ return [anchor.href, anchor.title]; }).
376                 uniq();
377             
378             while (this.imageArray[imageNum][0] != imageLink.href) { imageNum++; }
379         }
380         */
381         var s = Roo.get(document).getScroll();
382         
383         // calculate top and left offset for the lightbox 
384         // weird.. why / 10?
385         var lightboxTop = s.top + (Roo.lib.Dom.getViewHeight() / 10);
386         var lightboxLeft = s.left
387         this.lightbox.setStyle({ 
388             top: lightboxTop + 'px', 
389             left: lightboxLeft + 'px' ,
390             zIndex : Roo.get(document.body)._mask.getStyle('zIndex') * 1.1
391         })
392         //console.log("show lightbox");
393         this.lightbox.show();
394         
395         
396         
397         this.changeImage(imageNum);
398     },
399
400     //
401     //  changeImage()
402     //  Hide most elements and preload image in preparation for resizing image container.
403     //
404     changeImage: function(imageNum) {   
405         
406         this.activeImage = imageNum; // update global var
407
408         // hide elements during transition
409         if (this.animate) {
410             this.loading.setStyle({
411                 zIndex : Roo.get(document.body)._mask.getStyle('zIndex') * 1.2
412             });
413             this.loading.show();
414             this.loadingLink.setX( (Roo.lib.Dom.getViewWidth() / 2) - 16);
415             //this.loadingLink.show();
416             // center the loading?
417             
418         }
419         
420         this.hoverNav.hide();
421         this.prevLink.hide();
422         this.nextLink.hide();
423                 // HACK: Opera9 does not currently support scriptaculous opacity and appear fx
424         this.imageDataContainer.setStyle({opacity: .0001});
425         this.numberDisplay.hide();
426         
427         var imgPreloader =  Roo.DomHelper.append(document.body, { tag: 'img' } , true);
428         // once image is preloaded, resize image container
429
430         
431         imgPreloader.on('load', function() {
432             
433             this.lightboxImage.dom.src = this.imageArray[this.activeImage].dom.href;
434             
435             this.resizeImageContainer(imgPreloader.getWidth(), imgPreloader.getHeight());
436             imgPreloader.remove();
437         }, this);
438         imgPreloader.dom.src = this.imageArray[this.activeImage].dom.href;
439     },
440
441     //
442     //  resizeImageContainer()
443     //
444     resizeImageContainer: function(imgWidth, imgHeight) {
445
446         // make sure we have some sensible sizes..
447         imgWidth = Math.max(50, imgWidth);
448         imgHeight = Math.max(50, imgHeight);
449         
450         // get current width and height
451         var widthCurrent  = this.outerImageContainer.getWidth();
452         var heightCurrent = this.outerImageContainer.getHeight();
453         
454         //fixme need better calcs.
455         var w = window;
456         var ww = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
457         var wh = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
458         
459         ww -= 150;
460         wh -= 150;
461         // get new width and height
462         var bs =  this.borderSize * 2;
463         
464         var widthNew  =  imgWidth  + bs;
465         var heightNew =  imgHeight + bs;
466         
467         if (widthNew > ww || heightNew > wh) {
468             // bigger than window.
469             // scale here... - bit nasty..
470             var rescale = 1.1 * Math.max( widthNew / ww , heightNew  / wh);
471              //console.log(rescale);
472             imgWidth = Math.floor(imgWidth / rescale);
473             imgHeight = Math.floor(imgHeight / rescale);
474             widthNew  =  imgWidth  + bs;
475             heightNew =  imgHeight + bs;
476                     
477             
478         }
479         
480         this.lightboxImage.set( { width : imgWidth, height : imgHeight });
481         
482         
483         // scalars based on change from old to new
484         var xScale = (widthNew  / widthCurrent)  * 100;
485         var yScale = (heightNew / heightCurrent) * 100;
486
487         // calculate size difference between new and old image, and resize if necessary
488         var wDiff = widthCurrent - widthNew;
489         var hDiff = heightCurrent - heightNew;
490         
491          
492         this.outerImageContainer.animate(
493             { width: {to: widthNew}, height: {to: heightNew} },
494             this.resizeDuration,
495             null, // on complete
496             'easeOut', // easing
497             'run' // effect
498         
499         )        
500        
501         
502         // if new and old image are same size and no scaling transition is necessary, 
503         // do a quick pause to prevent image flicker.
504         var timeout = 0;
505         if ((hDiff == 0) && (wDiff == 0)){
506             timeout = 100;
507             if (Roo.isIE) timeout = 250;   
508         }
509
510         (function(){
511             this.prevLink.setStyle({ height: imgHeight + 'px' });
512             this.nextLink.setStyle({ height: imgHeight + 'px' });
513             this.imageDataContainer.setStyle({ width: widthNew + 'px'}); // the text area..
514             this.showImage();
515         }).defer(timeout / 1000, this);
516     },
517     
518     //
519     //  showImage()
520     //  Display image and begin preloading neighbors.
521     //
522     showImage: function(){
523         
524         this.loading.hide();
525         //this.loadingLink.hide();
526         var _this=  this;
527         this.lightboxImage.animate( 
528             {
529                 opacity : {  to: 1.0 }
530             },
531             this.resizeDuration,
532             function(){ 
533                 _this.updateDetails(); 
534             }
535             
536         );
537         this.preloadNeighborImages();
538     },
539
540     //
541     //  updateDetails()
542     //  Display caption, image number, and bottom nav.
543     //
544     updateDetails: function() {
545     
546         // if caption is not null
547         if (this.imageArray[this.activeImage].dom.title  != ""){
548             this.caption.update(this.imageArray[this.activeImage].dom.title);
549             this.caption.show();
550         }
551         
552         // if image is part of set display 'Image x of x' 
553         if (this.imageArray.length > 1){
554             this.numberDisplay.update(
555                 this.labelImage + ' ' + (this.activeImage + 1) + ' ' + this.labelOf + '  ' + this.imageArray.length)
556             this.numberDisplay.show();
557         }
558         var _this = this;
559         this.imageDataContainer.animate(
560             {
561                 //slide down ?: , from: 0.0, to: 1.0 
562                 opacity :  {  to: 1.0 }
563             },
564             this.resizeDuration,
565             function() {
566                         // update overlay size and update nav
567                         //var arrayPageSize = this.getPageSize();
568                         //this.overlay.setStyle({ height: arrayPageSize[1] + 'px' });
569                         _this.updateNav();
570             }
571              
572         );
573     },
574
575     //
576     //  updateNav()
577     //  Display appropriate previous and next hover navigation.
578     //
579     updateNav: function() {
580
581         this.hoverNav.show();               
582
583         // if not first image in set, display prev image button
584         if (this.activeImage > 0) this.prevLink.show();
585
586         // if not last image in set, display next image button
587         if (this.activeImage < (this.imageArray.length - 1)) this.nextLink.show();
588         
589         this.enableKeyboardNav();
590     },
591
592     //
593     //  enableKeyboardNav()
594     //
595     enableKeyboardNav: function() {
596         Roo.get(document.body).on('keydown', this.keyboardAction, this); 
597     },
598
599     //
600     //  disableKeyboardNav()
601     //
602     disableKeyboardNav: function() {
603         Roo.get(document.body).un('keydown', this.keyboardAction, this); 
604     },
605
606     //
607     //  keyboardAction()
608     //
609     keyboardAction: function(event) {
610         var keycode = event.keyCode;
611
612         var escapeKey;
613         if (event.DOM_VK_ESCAPE) {  // mozilla
614             escapeKey = event.DOM_VK_ESCAPE;
615         } else { // ie
616             escapeKey = 27;
617         }
618
619         var key = String.fromCharCode(keycode).toLowerCase();
620         
621         if (key.match(/x|o|c/) || (keycode == escapeKey)){ // close lightbox
622             this.end();
623         } else if ((key == 'p') || (keycode == 37)){ // display previous image
624             if (this.activeImage != 0){
625                 this.disableKeyboardNav();
626                 this.changeImage(this.activeImage - 1);
627             }
628         } else if ((key == 'n') || (keycode == 39)){ // display next image
629             if (this.activeImage != (this.imageArray.length - 1)){
630                 this.disableKeyboardNav();
631                 this.changeImage(this.activeImage + 1);
632             }
633         }
634     },
635
636     //
637     //  preloadNeighborImages()
638     //  Preload previous and next images.
639     //
640     preloadNeighborImages: function(){
641         var preloadNextImage, preloadPrevImage;
642         if (this.imageArray.length > this.activeImage + 1){
643             preloadNextImage = Roo.DomHelper.append(document.body, { tag: 'img' } , true);
644             preloadNextImage.on('load', function() { preloadNextImage.remove() });
645             preloadNextImage.dom.src = this.imageArray[this.activeImage + 1].dom.href;
646         }
647         if (this.activeImage > 0){
648             preloadPrevImage = Roo.DomHelper.append(document.body, { tag: 'img' } , true);
649             preloadPrevImage.on('load', function() { preloadPrevImage.remove() });
650             preloadPrevImage.dom.src = this.imageArray[this.activeImage - 1].dom.href;
651         }
652     
653     },
654
655     //
656     //  end()
657     //
658     end: function() {
659         this.disableKeyboardNav();
660         //console.log('lightbox hide');
661         this.lightbox.hide();
662         this.loading.hide();
663         Roo.get(document.body).unmask();
664         // show all the objects that cause problems..
665         //$$('select', 'object', 'embed').each(function(node){ node.style.visibility = 'visible' });
666     }
667
668      
669 });
670