Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / examples / ux / ProgressBarPager.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8 * @class Ext.ux.ProgressBarPager
9 * @extends Object 
10 * Plugin (ptype = 'tabclosemenu') for displaying a progressbar inside of a paging toolbar instead of plain text
11
12 * @ptype progressbarpager 
13 * @constructor
14 * Create a new ItemSelector
15 * @param {Object} config Configuration options
16 * @xtype itemselector 
17 */
18 Ext.ux.ProgressBarPager  = Ext.extend(Object, {
19         /**
20         * @cfg {Integer} progBarWidth
21         * <p>The default progress bar width.  Default is 225.</p>
22         */
23         progBarWidth   : 225,
24         /**
25         * @cfg {String} defaultText
26         * <p>The text to display while the store is loading.  Default is 'Loading...'</p>
27         */
28         defaultText    : 'Loading...',
29         /**
30         * @cfg {Object} defaultAnimCfg 
31         * <p>A {@link Ext.Fx Ext.Fx} configuration object.  Default is  { duration : 1, easing : 'bounceOut' }.</p>
32         */
33         defaultAnimCfg : {
34                 duration   : 1,
35                 easing     : 'bounceOut'        
36         },                                                                                                
37         constructor : function(config) {
38                 if (config) {
39                         Ext.apply(this, config);
40                 }
41         },
42         //public
43         init : function (parent) {
44         
45         if(parent.displayInfo){
46             this.parent = parent;
47             var ind  = parent.items.indexOf(parent.displayItem);
48             parent.remove(parent.displayItem, true);
49             this.progressBar = new Ext.ProgressBar({
50                 text    : this.defaultText,
51                 width   : this.progBarWidth,
52                 animate :  this.defaultAnimCfg
53             });                 
54            
55             parent.displayItem = this.progressBar;
56             
57             parent.add(parent.displayItem); 
58             parent.doLayout();
59             Ext.apply(parent, this.parentOverrides);        
60             
61             this.progressBar.on('render', function(pb) {
62                 pb.mon(pb.getEl().applyStyles('cursor:pointer'), 'click', this.handleProgressBarClick, this);
63             }, this, {single: true});
64                         
65         }
66           
67     },
68         // private
69         // This method handles the click for the progress bar
70         handleProgressBarClick : function(e){
71                 var parent = this.parent;
72                 var displayItem = parent.displayItem;
73                 
74                 var box = this.progressBar.getBox();
75                 var xy = e.getXY();
76                 var position = xy[0]-box.x;
77                 var pages = Math.ceil(parent.store.getTotalCount()/parent.pageSize);
78                 
79                 var newpage = Math.ceil(position/(displayItem.width/pages));
80                 parent.changePage(newpage);
81         },
82         
83         // private, overriddes
84         parentOverrides  : {
85                 // private
86                 // This method updates the information via the progress bar.
87                 updateInfo : function(){
88                         if(this.displayItem){
89                                 var count   = this.store.getCount();
90                                 var pgData  = this.getPageData();
91                                 var pageNum = this.readPage(pgData);
92                                 
93                                 var msg    = count == 0 ?
94                                         this.emptyMsg :
95                                         String.format(
96                                                 this.displayMsg,
97                                                 this.cursor+1, this.cursor+count, this.store.getTotalCount()
98                                         );
99                                         
100                                 pageNum = pgData.activePage; ;  
101                                 
102                                 var pct = pageNum / pgData.pages;       
103                                 
104                                 this.displayItem.updateProgress(pct, msg, this.animate || this.defaultAnimConfig);
105                         }
106                 }
107         }
108 });
109 Ext.preg('progressbarpager', Ext.ux.ProgressBarPager);
110