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