Skip to content

Instantly share code, notes, and snippets.

@almost
Created February 7, 2012 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almost/1760582 to your computer and use it in GitHub Desktop.
Save almost/1760582 to your computer and use it in GitHub Desktop.
## chainDeferred
# Take two jQuery Deferred objects and chain one on to the other. So
# anything that happens to the first one is proxied on the second one.
# Returns the source (for method call chaining)
module.chainDeferred = (source, destination) ->
source.then(
-> destination.resolveWith(@, arguments),
-> destination.rejectWith(@, arguments),
-> destination.notifyWith(@, arguments)
)
source
## chainError
# Take two jQuery Deferred objects and forward any erros on the first
# on to the second. Return the source (for method chaining)
module.chainError = (source, destination) ->
source.fail(-> destination.rejectWith(@,arguments))
source
fetchRelated: (name) =>
deferred = jQuery.Deferred()
utils.chainError(@maybeFetch, deferred).done =>
obj = @related(name)
if obj
utils.chainDeferred(obj.maybeFetch(), deferred)
else
deferred.rejectWith(@, ['Link does not exist'])
return deferred.promise()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment