Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best practice for optional success and error callbacks in a function like this? Does this method make sense? It seems a little bloated to me.

Function Declaration:

var myFunc = function(myNumber, options){
    options = options || {};
    options.onSuccess = options.onSuccess || function(){};
    options.onError = options.onSuccess || function(){};

    var myNewNumber = myNumber * 2;

    if(newVar > 10){
        options.onSuccess(myNewNumber);
    }else{
        options.onError(myNewNumber);
    }
}

Calling it with callbacks:

myFunc(2,{
    onError: function(myNewNumber){
        // do stuff
    },
    onSuccess: function(myNewNumber){
        // do stuff
    }
})

Calling it without callbacks:

myFunc(2);
share|improve this question
1  
What you're doing here looks fine to me. What aspects are you looking for in terms of best practices? An alternative is to have a single callback with error as the first passed parameter, which is null when no error has occurred. – Jamie Wong Nov 23 '11 at 9:38
One problem I see is that you are not checking if the onSuccess and onError (you have a typo there) are functions or not. Might want to add that. – pradeek Nov 23 '11 at 9:44

2 Answers

up vote 2 down vote accepted

I would do it by checking the existence of the functions before calling them:

var myFunc = function(myNumber, options){
    options = options || {};

    var myNewNumber = myNumber * 2;

    if(newVar > 10){
        if (options.onSuccess) { options.onSuccess(myNewNumber); }
    }else{
        if (options.onError) { options.onError(myNewNumber); }
    }
}

It depends how many times you are likely to call these callbacks. If it is all over the place then your way might be better, or at least cleaner code.

share|improve this answer
   
For my case I think this answer is the most suitable :) – pagewil Nov 23 '11 at 10:12

A few things to note;

  1. options.onSuccess = options.onSuccess || function(){}; is checking for the existance of the member, rather than checking its a function.

    You might want options.onSuccess = (typeof options.onSuccess == "function") ? options.onSuccess : function () { };

  2. The same goes for onError

  3. As as slight optimisation, you could point the empty function to the same function; rather than recreating it potentially twice. If you're using jQuery, jQuery defines jQuery.noop():

    options.onSuccess = options.onSuccess || jQuery.noop;
    options.onError = options.onSuccess || jQuery.noop;
    
  4. In the situation where the callbacks are asynchronous, you would be leaving yourself open to the options.onSuccess and options.onError being changed after your check, but before the callback is fired;

    var myFunc = function(myNumber, options){
        options = options || {};
        options.onSuccess = options.onSuccess || function(){};
        options.onError = options.onSuccess || function(){};
    
        var myNewNumber = myNumber * 2;
    
        setTimeout(function () {
            if(newVar > 10){
                options.onSuccess(myNewNumber);
            }else{
                options.onError(myNewNumber);
            }
        }, 2000);
    }
    
    var obj = {
        success: function () { alert('foo'); },
        error: function () { alert('foo'); },
    };
    
    myFunc(10, obj);
    delete obj.success;
    delete obj.error;
    

    When the callback gets executed, success and error will be undefined.

share|improve this answer
Thank a lot! I guess the kind of detail you want to go into depends on whether this is a public API or just used internally. In my case it is just internally so I know that functions will be function etc. – pagewil Nov 23 '11 at 10:12
+1 for lots of detail :D – Richard Dalton Nov 23 '11 at 10:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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