Javascript/Prototype scope confusion - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T17:11:33Zhttp://stackoverflow.com/feeds/question/970479http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/970479/javascript-prototype-scope-confusion0Javascript/Prototype scope confusionyalestar2009-06-09T14:44:32Z2009-06-09T15:00:18Z
<p>I'm creating a JavaScript class (using Prototype) that will set the page state to idle if there's no mouse movement within a specified number of seconds. When the mouse moves, the class will "wake up" the page by sending a message to a list of listeners.</p>
<p>The thing I don't understand is that <code>this.handlers</code> is valid in one function (<code>setIdle</code>), but not another (<code>setActive</code>). The annotated code below illustrates my problem: </p>
<pre><code>var IM2 = Class.create({
handlers: null,
initialize: function(callback, frequency) {
this.handlers = [];
Event.observe(document, "mousemove", this.sendActiveSignal);
Event.observe(document, "keypress", this.sendActiveSignal);
setInterval(this.sendIdleSignal.bind(this), 5000);
},
addListener: function(h) {
console.log(this.handlers.size()); // it's 0 here, as expected
this.handlers.push(h);
console.log(this.handlers.size()); // it's 1 here, as expected
},
sendIdleSignal: function(args) {
console.log("IDLE");
this.handlers.each(function(i){
i.setIdle();
})
},
sendActiveSignal: function() {
// this.handlers is undefined here. Why?
this.handlers.each(function(r) {
r.setActive();
})
}
});
</code></pre>
http://stackoverflow.com/questions/970479/javascript-prototype-scope-confusion/970522#9705221Answer by Jonathan Fingland for Javascript/Prototype scope confusionJonathan Fingland2009-06-09T14:52:08Z2009-06-09T15:00:18Z<p>Assuming you mean it's valid in SendIdleSignal and it's not valid in SendActiveSignal...</p>
<p>Your event listeners should also use bind, like this:</p>
<pre><code>Event.observe(document, "mousemove", this.sendActiveSignal.bind(this));
Event.observe(document, "keypress", this.sendActiveSignal.bind(this));
</code></pre>
<p>Also, if you're using prototype 1.6 or higher, you can use</p>
<pre><code>document.observe("mousemove", this.sendActiveSignal.bind(this));
document.observe("keypress", this.sendActiveSignal.bind(this));
</code></pre>
<p>Additionally, if you want a generic (framework agnostic) way to do this, you could define your functions like this:</p>
<pre><code>sendActiveSignal: function() {
var that = this;
return function() {
that.handlers.each(function(r) {
r.setActive();
});
}
}
</code></pre>
<p>then your event handlers/setInterval could be left as </p>
<pre><code>Event.observe(document, "keypress", this.sendActiveSignal);
</code></pre>