I am designing a javascript API which wrap's my REST API. I generally want to avoid lots of verbose and confusing nested callbacks and have been reading up of the Deferred jQuery goodness.
Let's imagine my library 'myLib' which represents people objects and ways to traverse between people objects. It has a bunch of method's like 'dad', 'boss', 'assistant' etc which need to do an ajax request to find some data and return another related 'people' object. But I want them to return a deferred object which also has myLib's methods which I can chain together, to write really terse simple code like this:
myLib('me').dad().boss().assistant(function(obj){
alert(obj.phone); // My dad's, bosses assistants phone number
}, function(){
alert('No such luck);
});
This creates a 'me' person object, then does the first ajax call to find my details, then uses that data to do another call to find out my parent, then again to find my boss, then another to get the assistant, and then finally that is passed to my callback and I handle it. Kinda like jQuery's chained traversing methods but asynchronous.
Passing a function in at any point, but usually the last method, would internally get called when the last Deferred object in the chain is resolved. The second function is the failure callback and is called if any of the deferred objects in the chain is rejected.
I'm thinking I need to create a jQuery deferred object and then extend it but not sure if thats the "best" way.
So what is the best practice way to achieve my minimalist API goal? Basically I want all the method names to be 100% in the domain problem name space and not polluted with lots of 'when', 'done', 'success' etc.
And are there examples of similar clean API's I can emulate somewhere?