vote up 6 vote down star
3

I'm making a webpage with dynamic content that enters the view with AJAX polling. The page JS occasionally downloads updated information and renders it on the page while the user is reading other information. This sort of thing is costly to bandwidth and processing time. I would like to have the polling pause when the page is not being viewed.

I've noticed most of the webpages I have open spend the majority of their time minimized or in a nonviewed tab. I'd like to be able to pause the scripts until the page is actually being viewed.

I have no idea how to do it, and it seems to be trying to break out of the sandbox of the html DOM and reach into the user's system. It may be impossible, if the JS engine has no knowledge of its rendering environment. I've never even seen a different site do this (not that the user is intended to see it...)

So it makes for an interesting question for discussion, I think. How would you write a web app that is CPU heavy to pause when not being used? Giving the user a pause button is not reliable, I'd like it to be automatic.

flag

5 Answers

vote up 3 vote down check

Your best solution would be something like this:

 var inactiveTimer;
 var active = true;
 function setTimer(){
  inactiveTimer = setTimeOut("stopAjaxUpdateFunction()", 120000); //120 seconds
 }
 setTimer();
 document.onmouseover = function() { clearTimeout ( inactiveTimer ); 
                                     setTimer(); 
                                     resumeAjaxUpdate();
  }; //clear the timer and reset it.
 function stopAjaxUpdateFunction(){
  //Turn off AJAX update
  active = false;   
 }
 function resumeAjaxUpdate(){
  if(active == false){
   //Turn on AJAX update
   active = true;
  }
  else{ //do nothing since we are still active and the AJAX update is still on.  }    
 }

The stopAjaxUpdateFunction should stop the AJAX update progress.

link|flag
You would want a mechanism to restart the updates when activity resumed. – Benry Dec 8 '08 at 18:19
Just add that to the onmouseover function (see updated answer) – Pim Jager Dec 8 '08 at 18:20
Won't dragging the mouse across the screen once cause about a thousand cleartimeout() setTimer() calls? Is that okay to do? – Karl Dec 8 '08 at 18:24
not quite sure, But I don't think so. Try setting up a simple test: document.mouseover = function() { document.write('hai'); }; see how that does – Pim Jager Dec 8 '08 at 18:45
vote up 1 vote down

First check when the window loses and gains focus.

window.onblur = function () { /* stop */ };
window.onfocus =  function () { /* start */ };

For various reasons, the user may stop reading the page without causing it to lose focus (e.g. he gets up and walks away from the computer). In that case, you have to assume after a period of inactivity (no mouse or keyboard events) that the users' attention has left the page.

link|flag
that has the problem of not being able to detect a user that has just walked away from screen with the page open. – Pim Jager Dec 8 '08 at 18:34
Who says you can't have a blur check and an inactivity check? (I've updated my answer.) – Patrick McElhaney Dec 8 '08 at 19:22
Yeah ok, didn't look at it that way. blur and focus defenitly are nice because they are instant. – Pim Jager Dec 8 '08 at 19:25
vote up 0 vote down

You can listen for mousemove and keypress events. If one of those has been fired in the past X seconds, then continue with your updating. Otherwise, don't update.

It's not perfect, but I think it's the best you can do with pure JS.

If you want to venture into the world of Flash, Silverlight, or Java, you may be able to get more information from the browser.

link|flag
vote up 3 vote down

How about setting an "inactivity timeout" which gets reset every time a mouse or keyboard event is received in the DOM? I believe this is how most IM programs decide that you're "away" (though they do it by hooking the input messages at the system-wide level)

link|flag
vote up 2 vote down

I've looked at that problem before for a research project. At the time (2-3 years ago) I did not find a way to get information from the browser about whether or not you are minimized :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.