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