vote up 2 vote down star
3

I'm curious as to if there are any best practices relating to JQuery when constructing encapsulated code blocks.

Generally, when I construct a page I like to encapsulate the functions used within that page inside an object. This allows me some encapsulation when building applications. There's nothing I hate more than seeing a JavaScript file with a bunch of this

function doSomethingOnlyRelevantOnThisPage() {
    // do some stuff
}

I this makes for messy design, and doesn't really encapsulate functionality nicely.

Commonly in many frameworks, there is a standard that is used to perform this encapsulation.

In Mootools they favor the Object Literal Notation:

var Site = {        
    // properties and methods
}

In YUI they favor the Self Executing Function notation:

(function() { // properties and methods })()

The nice thing about the second example is that a closure is created, thus allowing you to define private properties and methods.

My question is this: Do any JQuery aficionados have any best practices for creating these cleanly encapsulated structures? What is the rationale behind their use?

flag

67% accept rate

3 Answers

vote up 0 vote down check

Since I've been working with jQuery for a while now, I've decided on a standard pattern that works well for me.

It's a combination of the YUI module pattern with a bit of jQuery plugin pattern mixed in. This is what it looks like:

$j.namespace('module');

App.module = function($) {
    // private members here
    var myPrivateFunction = function() {
    };

    return {
        // public members here
        init: function() {
            myPrivateFunction();
        }
    };
}(jQuery);

$j(App.module.init);

This pattern works really well, especially when migrating from another JS library, as we are in our case. We already had the $ function aliased to another library, so we used jQuery.noConflict() to fix that. We also can use the $ function for jQuery from within our modules by closure. This will allow us to make minimal changes to our JavaScript once we remove the other library and free up the $ alias again.

On a side not, $j.namespace is a custom plugin based on YUI's namespace function.

Hope this helps someone.

link|flag
vote up 3 vote down

I use YUI and jQuery when developing (YUI widgets and a few convenience functions, jQuery selectors and javascript "extensions"), and the general javascript template I use is this:

/*global YAHOO, $ */

// Create the public-scope accessable namespace for this page
YAHOO.namespace('Project');

YAHOO.Project.page = function() {
    // Private members

    var self = {};

    // Public members
    var pub = {};

    pub.init = function() {

    };

    return pub;
} ();

// When the DOM is loaded, initialize this module
$(document).ready(YAHOO.Project.page.init);

Now clearly, you can remove the YAHOO.namespace() call if you don't want to use YUI, but that's the basic outline. It uses object literal notation, but also allows you to define private properties and methods.

Just remember that when calling private members or referencing private variables to reference them as self.funcName(). You can define them outside of the self object, but then you get a mismash everywhere in your object, where you're trying to figure out if size_of() is a private method or defined globally somewhere else.

link|flag
vote up 1 vote down

I usually follow the prototype pattern:

MyFunction = function(param1, param2)
{
   this.property1 = param1;
   // etc.
}

MyFunction.prototype =
{
    memberOne: function(param1)
    {
       // ...
    },

    memberTwo: function(param2)
    {
    }
}

You get something a "constructor" (the function itself) and encapsulated "methods" and "fields".

It's easier for someone who is used to class-based OO languages :)

link|flag
But this is only useful if you plan to encapsulate state within the objects. You would have to call new on these objects to create instances. In my case, they would be behaving more like a static class in OO terms. – steve_c Oct 9 '08 at 19:11
True, true... in this case I would prefer self-executing anonymous functions. – Tsvetomir Tsonev Oct 9 '08 at 19:18

Your Answer

Get an OpenID
or

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