Created
July 9, 2012 19:30
-
-
Save bryanforbes/3078389 to your computer and use it in GitHub Desktop.
dojo/request/notify
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['../Evented', '../_base/lang', './util'], function(Evented, lang, util){ | |
// module: | |
// dojo/request/notify | |
// summary: | |
// Global notification API for dojo/request | |
// | |
// | require('dojo/request', 'dojo/request/notify', | |
// | function(request, notify){ | |
// | notify('load', function(response){ | |
// | if(response.url === 'someUrl.html'){ | |
// | console.log('Loaded!'); | |
// | } | |
// | }); | |
// | request.get('someUrl.html'); | |
// | } | |
// | ); | |
var pubCount = 0; | |
var hub = lang.mixin(new Evented, { | |
onsend: function(data){ | |
if(!pubCount){ | |
this.emit('start'); | |
} | |
pubCount++; | |
}, | |
_onload: function(data){ | |
this.emit('done', data); | |
}, | |
_onerror: function(data){ | |
this.emit('done', data); | |
}, | |
_ondone: function(data){ | |
if(--pubCount <= 0){ | |
pubCount = 0; | |
this.emit('stop'); | |
} | |
}, | |
emit: function(type, event){ | |
var result = Evented.prototype.emit.apply(this, arguments); | |
// After all event handlers have run, run _on* handler | |
if(this['_on' + type]){ | |
this['_on' + type].call(this, event); | |
} | |
return result; | |
} | |
}); | |
function notify(type, listener){ | |
return hub.on(type, listener); | |
} | |
notify.emit = function(type, event){ | |
return hub.emit(type, event); | |
}; | |
// Attach notify to dojo/request/util to avoid | |
// try{ require('./notify'); }catch(e){} | |
return util.notify = notify; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment