View Full Version : TaskMgr inside of panel's activate listener?
I have an outer shell panel with a card layout and I'm trying to perform a task on an interval once a card is activated. The task is going to be to move an image forward one image in a carousel that is on that card panel. However, I cannot seem to get the TaskRunner to fire inside the activate listener on that card panel when it activates. I can get a simple alert to fire, but not the TaskRunner. Any ideas on how to fire a repetitive task inside the activate event?
I could use the CardSwitch event on the outer panel I guess, but then I'd also have to right a bunch of code to see which card I am on then get a ref to the carousel on that card that I then need to start forwarding the carousel. Seems easier to add a listener to each card that has a carousel that I need to preform this repetitive task.
Here is the card panel code:
new Ext.Panel({
id: 'card1',
fullscreen: true,
scroll: 'vertical',
layout: {
type: 'vbox',
align: 'stretch'
},
items: [
{
title: 'Products',
height: 113,
html:'<div ><image src="images/home_head.jpg" height="113" width="320" /></div>'
},
{
height: 203,
ui: 'light',
xtype: 'carousel',
direction: 'horizontal',
items: [
{
title: 'Image 1',
html: '<div><image src="images/home_anim_1.jpg"/></div>'
},
{
title: 'Image 2',
html: '<div><image src="images/home_anim_2.jpg" /></div>'
},
{
title: 'Image 3',
html: '<div><image src="images/home_anim_3.jpg" /></div>'
},
{
title: 'Image 3',
html: '<div><image src="images/home_anim_4.jpg" /></div>'
},
{
title: 'Image 3',
html: '<div><image src="images/home_anim_5.jpg" /></div>'
}
]
},
..........etc.............
},{
height: 100,
html:'<div><image src="images/footer.jpg" /></div>'
}
],
listeners: {
activate: function(item){
//alert('card 1 activated...'); <== this fires fine when uncommented
// Start a simple clock task that updates a div once per second
var rotateImage = function(){
alert('card 1 activated...');
}
Ext.TaskMgr.start({
run: rotateImage,
interval: 3000
});
}
}
}),
UPDATE:
The error I am getting is:
Uncaught TypeError: Cannot call method 'start' of undefined
evant
23 Sep 2010, 6:24 PM
Exactly what it says, there's no TaskMgr in Touch, though I think it would probably be a good idea to move it into platform.
Use setInterval.
Thanks for FAST reply.
However, then why do I see TaskMgr in the Sencha Touch API?
evant
23 Sep 2010, 6:29 PM
Not sure really, may be getting picked up in the doc builder by accident.
I take it that TaskRunner then is also not in Touch? It too is in the Sencha Touch API documentation.
aconran
24 Sep 2010, 9:31 AM
TaskMgr is in platform, however not all files that are in platform will be included in each products build process.
This is a build step issue that we need to resolve internally. Thanks for bringing it to our attention.
Mis63
27 Sep 2010, 5:04 AM
TaskMgr and TaskRunner are missing, but DelayedTask is present.
For those who want to use these classes until they are included in the next release, just create a new file named ext-touch-missing.js with the following content :
/**
* @class Ext.util.TaskRunner
* Provides the ability to execute one or more arbitrary tasks in a multithreaded
* manner. Generally, you can use the singleton {@link Ext.TaskMgr} instead, but
* if needed, you can create separate instances of TaskRunner. Any number of
* separate tasks can be started at any time and will run independently of each
* other. Example usage:
* <pre><code>
// Start a simple clock task that updates a div once per second
var updateClock = function(){
Ext.fly('clock').update(new Date().format('g:i:s A'));
}
var task = {
run: updateClock,
interval: 1000 //1 second
}
var runner = new Ext.util.TaskRunner();
runner.start(task);
// equivalent using TaskMgr
Ext.TaskMgr.start({
run: updateClock,
interval: 1000
});
* </code></pre>
* <p>See the {@link #start} method for details about how to configure a task object.</p>
* Also see {@link Ext.util.DelayedTask}.
*
* @constructor
* @param {Number} interval (optional) The minimum precision in milliseconds supported by this TaskRunner instance
* (defaults to 10)
*/
Ext.util.TaskRunner = function(interval){
interval = interval || 10;
var tasks = [],
removeQueue = [],
id = 0,
running = false,
// private
stopThread = function(){
running = false;
clearInterval(id);
id = 0;
},
// private
startThread = function(){
if(!running){
running = true;
id = setInterval(runTasks, interval);
}
},
// private
removeTask = function(t){
removeQueue.push(t);
if(t.onStop){
t.onStop.apply(t.scope || t);
}
},
// private
runTasks = function(){
var rqLen = removeQueue.length,
now = new Date().getTime();
if(rqLen > 0){
for(var i = 0; i < rqLen; i++){
tasks.remove(removeQueue[i]);
}
removeQueue = [];
if(tasks.length < 1){
stopThread();
return;
}
}
for(var i = 0, t, itime, rt, len = tasks.length; i < len; ++i){
t = tasks[i];
itime = now - t.taskRunTime;
if(t.interval <= itime){
rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
t.taskRunTime = now;
if(rt === false || t.taskRunCount === t.repeat){
removeTask(t);
return;
}
}
if(t.duration && t.duration <= (now - t.taskStartTime)){
removeTask(t);
}
}
};
/**
* Starts a new task.
* @method start
* @param {Object} task <p>A config object that supports the following properties:<ul>
* <li><code>run</code> : Function<div class="sub-desc"><p>The function to execute each time the task is invoked. The
* function will be called at each interval and passed the <code>args</code> argument if specified, and the
* current invocation count if not.</p>
* <p>If a particular scope (<code>this</code> reference) is required, be sure to specify it using the <code>scope</code> argument.</p>
* <p>Return <code>false</code> from this function to terminate the task.</p></div></li>
* <li><code>interval</code> : Number<div class="sub-desc">The frequency in milliseconds with which the task
* should be invoked.</div></li>
* <li><code>args</code> : Array<div class="sub-desc">(optional) An array of arguments to be passed to the function
* specified by <code>run</code>. If not specified, the current invocation count is passed.</div></li>
* <li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (<tt>this</tt> reference) in which to execute the
* <code>run</code> function. Defaults to the task config object.</div></li>
* <li><code>duration</code> : Number<div class="sub-desc">(optional) The length of time in milliseconds to invoke
* the task before stopping automatically (defaults to indefinite).</div></li>
* <li><code>repeat</code> : Number<div class="sub-desc">(optional) The number of times to invoke the task before
* stopping automatically (defaults to indefinite).</div></li>
* </ul></p>
* <p>Before each invocation, Ext injects the property <code>taskRunCount</code> into the task object so
* that calculations based on the repeat count can be performed.</p>
* @return {Object} The task
*/
this.start = function(task){
tasks.push(task);
task.taskStartTime = new Date().getTime();
task.taskRunTime = 0;
task.taskRunCount = 0;
startThread();
return task;
};
/**
* Stops an existing running task.
* @method stop
* @param {Object} task The task to stop
* @return {Object} The task
*/
this.stop = function(task){
removeTask(task);
return task;
};
/**
* Stops all tasks that are currently running.
* @method stopAll
*/
this.stopAll = function(){
stopThread();
for(var i = 0, len = tasks.length; i < len; i++){
if(tasks[i].onStop){
tasks[i].onStop();
}
}
tasks = [];
removeQueue = [];
};
};
/**
* @class Ext.TaskMgr
* @extends Ext.util.TaskRunner
* A static {@link Ext.util.TaskRunner} instance that can be used to start and stop arbitrary tasks. See
* {@link Ext.util.TaskRunner} for supported methods and task config properties.
* <pre><code>
// Start a simple clock task that updates a div once per second
var task = {
run: function(){
Ext.fly('clock').update(new Date().format('g:i:s A'));
},
interval: 1000 //1 second
}
Ext.TaskMgr.start(task);
</code></pre>
* <p>See the {@link #start} method for details about how to configure a task object.</p>
* @singleton
*/
Ext.TaskMgr = new Ext.util.TaskRunner();Then reference it in your html page :
<script type="text/javascript" src="resources/js/ext-touch-missing.js"></script>
Enjoy ;-)
Powered by vBulletin® Version 4.1.5 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.