Roo/bootstrap/PagingToolbar.js
[roojs1] / Roo / bootstrap / PagingToolbar.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12 /**
13  * @class Roo.bootstrap.PagingToolbar
14  * @extends Roo.bootstrap.NavSimplebar
15  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
16  * @constructor
17  * Create a new PagingToolbar
18  * @param {Object} config The config object
19  * @param {Roo.data.Store} store
20  */
21 Roo.bootstrap.PagingToolbar = function(config)
22 {
23     // old args format still supported... - xtype is prefered..
24         // created from xtype...
25     
26     this.ds = config.dataSource;
27     
28     if (config.store && !this.ds) {
29         this.store= Roo.factory(config.store, Roo.data);
30         this.ds = this.store;
31         this.ds.xmodule = this.xmodule || false;
32     }
33     
34     this.toolbarItems = [];
35     if (config.items) {
36         this.toolbarItems = config.items;
37     }
38     
39     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
40     
41     this.cursor = 0;
42     
43     if (this.ds) { 
44         this.bind(this.ds);
45     }
46     
47     this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
48     
49 };
50
51 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
52     /**
53      * @cfg {Roo.data.Store} dataSource
54      * The underlying data store providing the paged data
55      */
56     /**
57      * @cfg {String/HTMLElement/Element} container
58      * container The id or element that will contain the toolbar
59      */
60     /**
61      * @cfg {Boolean} displayInfo
62      * True to display the displayMsg (defaults to false)
63      */
64     /**
65      * @cfg {Number} pageSize
66      * The number of records to display per page (defaults to 20)
67      */
68     pageSize: 20,
69     /**
70      * @cfg {String} displayMsg
71      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
72      */
73     displayMsg : 'Displaying {0} - {1} of {2}',
74     /**
75      * @cfg {String} emptyMsg
76      * The message to display when no records are found (defaults to "No data to display")
77      */
78     emptyMsg : 'No data to display',
79     /**
80      * Customizable piece of the default paging text (defaults to "Page")
81      * @type String
82      */
83     beforePageText : "Page",
84     /**
85      * Customizable piece of the default paging text (defaults to "of %0")
86      * @type String
87      */
88     afterPageText : "of {0}",
89     /**
90      * Customizable piece of the default paging text (defaults to "First Page")
91      * @type String
92      */
93     firstText : "First Page",
94     /**
95      * Customizable piece of the default paging text (defaults to "Previous Page")
96      * @type String
97      */
98     prevText : "Previous Page",
99     /**
100      * Customizable piece of the default paging text (defaults to "Next Page")
101      * @type String
102      */
103     nextText : "Next Page",
104     /**
105      * Customizable piece of the default paging text (defaults to "Last Page")
106      * @type String
107      */
108     lastText : "Last Page",
109     /**
110      * Customizable piece of the default paging text (defaults to "Refresh")
111      * @type String
112      */
113     refreshText : "Refresh",
114
115     buttons : false,
116     // private
117     onRender : function(ct, position) 
118     {
119         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
120         this.navgroup.parentId = this.id;
121         this.navgroup.onRender(this.el, null);
122         // add the buttons to the navgroup
123         
124         if(this.displayInfo){
125             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
126             this.displayEl = this.el.select('.x-paging-info', true).first();
127 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
128 //            this.displayEl = navel.el.select('span',true).first();
129         }
130         
131         var _this = this;
132         
133         Roo.log('PagingToolbar onRender!!!!!!!!!!!!!!!!!!!!');
134         Roo.log(this.buttons);
135         
136         if(this.buttons){
137             Roo.each(_this.buttons, function(e){ // this might need to use render????
138                Roo.factory(e).onRender(_this.el, null);
139             });
140         }
141             
142         Roo.each(_this.toolbarItems, function(e) {
143             _this.navgroup.addItem(e);
144         });
145         
146         
147         this.first = this.navgroup.addItem({
148             tooltip: this.firstText,
149             cls: "prev",
150             icon : 'fa fa-backward',
151             disabled: true,
152             preventDefault: true,
153             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
154         });
155         
156         this.prev =  this.navgroup.addItem({
157             tooltip: this.prevText,
158             cls: "prev",
159             icon : 'fa fa-step-backward',
160             disabled: true,
161             preventDefault: true,
162             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
163         });
164     //this.addSeparator();
165         
166         
167         var field = this.navgroup.addItem( {
168             tagtype : 'span',
169             cls : 'x-paging-position',
170             
171             html : this.beforePageText  +
172                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
173                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
174          } ); //?? escaped?
175         
176         this.field = field.el.select('input', true).first();
177         this.field.on("keydown", this.onPagingKeydown, this);
178         this.field.on("focus", function(){this.dom.select();});
179     
180     
181         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
182         //this.field.setHeight(18);
183         //this.addSeparator();
184         this.next = this.navgroup.addItem({
185             tooltip: this.nextText,
186             cls: "next",
187             html : ' <i class="fa fa-step-forward">',
188             disabled: true,
189             preventDefault: true,
190             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
191         });
192         this.last = this.navgroup.addItem({
193             tooltip: this.lastText,
194             icon : 'fa fa-forward',
195             cls: "next",
196             disabled: true,
197             preventDefault: true,
198             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
199         });
200     //this.addSeparator();
201         this.loading = this.navgroup.addItem({
202             tooltip: this.refreshText,
203             icon: 'fa fa-refresh',
204             preventDefault: true,
205             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
206         });
207         
208     },
209
210     // private
211     updateInfo : function(){
212         if(this.displayEl){
213             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
214             var msg = count == 0 ?
215                 this.emptyMsg :
216                 String.format(
217                     this.displayMsg,
218                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
219                 );
220             this.displayEl.update(msg);
221         }
222     },
223
224     // private
225     onLoad : function(ds, r, o)
226     {
227         this.cursor = o.params.start ? o.params.start : 0;
228         
229         var d = this.getPageData(),
230             ap = d.activePage,
231             ps = d.pages;
232         
233         
234         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
235         this.field.dom.value = ap;
236         this.first.setDisabled(ap == 1);
237         this.prev.setDisabled(ap == 1);
238         this.next.setDisabled(ap == ps);
239         this.last.setDisabled(ap == ps);
240         this.loading.enable();
241         this.updateInfo();
242     },
243
244     // private
245     getPageData : function(){
246         var total = this.ds.getTotalCount();
247         return {
248             total : total,
249             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
250             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
251         };
252     },
253
254     // private
255     onLoadError : function(){
256         this.loading.enable();
257     },
258
259     // private
260     onPagingKeydown : function(e){
261         var k = e.getKey();
262         var d = this.getPageData();
263         if(k == e.RETURN){
264             var v = this.field.dom.value, pageNum;
265             if(!v || isNaN(pageNum = parseInt(v, 10))){
266                 this.field.dom.value = d.activePage;
267                 return;
268             }
269             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
270             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
271             e.stopEvent();
272         }
273         else if(k == e.HOME || (k == e.UP && e.ctrlKey) || (k == e.PAGEUP && e.ctrlKey) || (k == e.RIGHT && e.ctrlKey) || k == e.END || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey))
274         {
275           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
276           this.field.dom.value = pageNum;
277           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
278           e.stopEvent();
279         }
280         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
281         {
282           var v = this.field.dom.value, pageNum; 
283           var increment = (e.shiftKey) ? 10 : 1;
284           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
285                 increment *= -1;
286           }
287           if(!v || isNaN(pageNum = parseInt(v, 10))) {
288             this.field.dom.value = d.activePage;
289             return;
290           }
291           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
292           {
293             this.field.dom.value = parseInt(v, 10) + increment;
294             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
295             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
296           }
297           e.stopEvent();
298         }
299     },
300
301     // private
302     beforeLoad : function(){
303         if(this.loading){
304             this.loading.disable();
305         }
306     },
307
308     // private
309     onClick : function(which){
310         
311         var ds = this.ds;
312         if (!ds) {
313             return;
314         }
315         
316         switch(which){
317             case "first":
318                 ds.load({params:{start: 0, limit: this.pageSize}});
319             break;
320             case "prev":
321                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
322             break;
323             case "next":
324                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
325             break;
326             case "last":
327                 var total = ds.getTotalCount();
328                 var extra = total % this.pageSize;
329                 var lastStart = extra ? (total - extra) : total-this.pageSize;
330                 ds.load({params:{start: lastStart, limit: this.pageSize}});
331             break;
332             case "refresh":
333                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
334             break;
335         }
336     },
337
338     /**
339      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
340      * @param {Roo.data.Store} store The data store to unbind
341      */
342     unbind : function(ds){
343         ds.un("beforeload", this.beforeLoad, this);
344         ds.un("load", this.onLoad, this);
345         ds.un("loadexception", this.onLoadError, this);
346         ds.un("remove", this.updateInfo, this);
347         ds.un("add", this.updateInfo, this);
348         this.ds = undefined;
349     },
350
351     /**
352      * Binds the paging toolbar to the specified {@link Roo.data.Store}
353      * @param {Roo.data.Store} store The data store to bind
354      */
355     bind : function(ds){
356         ds.on("beforeload", this.beforeLoad, this);
357         ds.on("load", this.onLoad, this);
358         ds.on("loadexception", this.onLoadError, this);
359         ds.on("remove", this.updateInfo, this);
360         ds.on("add", this.updateInfo, this);
361         this.ds = ds;
362     }
363 });