Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / examples / simple-widgets / progress-bar.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 Ext.require([
16     'Ext.ProgressBar'
17 ]);
18
19 Ext.onReady(function(){
20     //Please do not use the following runner code as a best practice! :)
21     var Runner = function(){
22         var f = function(v, pbar, btn, count, cb){
23             return function(){
24                 if(v > count){
25                     btn.dom.disabled = false;
26                     cb();
27                 }else{
28                     if(pbar.id=='pbar4'){
29                         //give this one a different count style for fun
30                         var i = v/count;
31                         pbar.updateProgress(i, Math.round(100*i)+'% completed...');
32                     }else{
33                         pbar.updateProgress(v/count, 'Loading item ' + v + ' of '+count+'...');
34                     }
35                 }
36            };
37         };
38         return {
39             run : function(pbar, btn, count, cb) {
40                 btn.dom.disabled = true;
41                 var ms = 5000/count;
42                 for(var i = 1; i < (count+2); i++){
43                    setTimeout(f(i, pbar, btn, count, cb), i*ms);
44                 }
45             }
46         };
47     }();
48
49     //==== Progress bar 1 ====
50     var pbar1 = Ext.create('Ext.ProgressBar', {
51        text:'Initializing...'
52     });
53
54     var btn1 = Ext.get('btn1');
55     btn1.on('click', function() {
56         Ext.fly('p1text').update('Working');
57         if (!pbar1.rendered) {
58             pbar1.render('p1');
59         } else {
60             pbar1.text = 'Initializing...';
61             pbar1.show();
62         }
63         Runner.run(pbar1, Ext.get('btn1'), 10, function() {
64             pbar1.reset(true);
65             Ext.fly('p1text').update('Done.').show();
66         });
67     });
68
69     //==== Progress bar 2 ====
70     var pbar2 = Ext.create('Ext.ProgressBar', {
71         text:'Ready',
72         id:'pbar2',
73         cls:'left-align',
74         renderTo:'p2'
75     });
76
77     var btn2 = Ext.get('btn2');
78
79     btn2.on('click', function() {
80         Runner.run(pbar2, btn2, 12, function() {
81             pbar2.reset();
82             pbar2.updateText('Done.');
83         });
84     });
85
86     //==== Progress bar 3 ====
87     var pbar3 = Ext.create('Ext.ProgressBar', {
88         id:'pbar3',
89         width:300,
90         renderTo:'p3'
91     });
92
93     pbar3.on('update', function(val) {
94         //You can handle this event at each progress interval if
95         //needed to perform some other action
96         Ext.fly('p3text').dom.innerHTML += '.';
97     });
98
99     var btn3 = Ext.get('btn3');
100
101     btn3.on('click', function(){
102         Ext.fly('p3text').update('Working');
103         btn3.dom.disabled = true;
104         pbar3.wait({
105             interval: 200,
106             duration: 5000,
107             increment: 15,
108             fn:function() {
109                 btn3.dom.disabled = false;
110                 Ext.fly('p3text').update('Done');
111             }
112         });
113     });
114
115     //==== Progress bar 4 ====
116     var pbar4 = Ext.create('Ext.ProgressBar', {
117         text:'Waiting on you...',
118         id:'pbar4',
119         textEl:'p4text',
120         cls:'custom',
121         renderTo:'p4'
122     });
123
124     var btn4 = Ext.get('btn4');
125
126     btn4.on('click', function() {
127         Runner.run(pbar4, btn4, 19, function() {
128             pbar4.updateText('All finished!');
129         });
130     });
131 });
132