Having not done much with javascript other than some simple hacks, I was inspired by this post to do a major refactor of the HES userscript. You can look at the full refactored userscript here. It has the exact same functionality as the before but I believe it will be much nicer to read, maintain and extend with these changes.

Making javascript human readable with jQuery

First things first, we want to the to be code easy to understand and thus easier to maintain. For instance, can you guess what this piece of code does?

window.location = document.getElementsByClassName('gridfeed')[0].childNodes[feedSelectionIndex].childNodes[1].childNodes[2].childNodes[1].childNodes[1].href;

It's not easy to tell without following the through each set of children. I think it can be agreed that this is easier on the eyes.

feed.currentNode.find('.savesplit > a:contains("hide")').click();

I'll admit, something as simple as selectors blew my mind when I first saw them. One disadvantage to using jQuery in a userscript is that in Google Chrome the file containing jQuery is out of the scope of the userscript. In order to access the file you need to inject your script into the page.

function addScript(callback) {
    window.onload = function() {
        var script = document.createElement('script');
        script.textContent = '(' + callback.toString() + ')();';
        document.body.appendChild(script);
    }
}

function main() { /* Userscript goes here */ }

addScript(main);

This uses a simplified version of the addJquery function by Erik Void. We don't need to load jQuery ourselves because Hubski does that for us; we merely need it in our scope. Also, loading our own jQuery in addition to hubski's introduces its own set of problems.

Abstracting functionality with modules

Each piece of major functionality can be wrapped into its own module. Each module has the general form

modules['moduleKey'] = (function() {
    var Module = {
        init: function() { /*initialize stuff*/},
        isLoaded: function() {/*determine if module should be run*/}
    };
    privateMember;
    privateFunction() {}
    return Module;
    }());

Every module needs at least two function: init() to initialize the module (attach event handlers, insert spans, etc) and isLoaded() to determine if the module should be run on the current page. This makes loading all applicable modules as easy as

for(mod in modules) {
    if(modules[mod].isLoaded()) {
        modules[mod].init();
    }
}

The eventual goal of using this pattern is to be able to do unit tests which will require that we be able to initialize and cleanup the modules for each test.

Getting rid of massive if/else blocks

The shortcuts module contains all of the keyboard shortcuts for every applicable page on hubski. One of the major changes made to the shortcut functions is instead of using massive if/else blocks for determining which combination of keys was we use objects to map the functions to the key code. We have seperate objects for each applicable page (A single post, the user feed, notifications page, etc) and store keycode/function pairs in each object as such.

var postShortKeys = {
        '65': // 'a'
            function() { $('.longplusminus > a').click(); },
        '82': // 'r'
            function() { $('[name="text"]').focus(); },
        '83': // 's'
            function() { $('.titlelinks > a:contains("save")').click(); }
    };

Once we have all these objects defined we can determine which ones should be available to the user and combine them using the extend function.

var keyMap = {};
function buildKeyMap() {
    $.extend(keyMap,generalShortKeys);
    if(isPost) {$.extend(keyMap,postShortKeys)};
    // ...
}

This simplifies the function call in the keyup event handler to something like

keyMap[event.code]();

There are a few drawbacks to using this method as opposed to a if/else or switch/case block, however. For instance, it doesn't look as nice when you are using several different key codes to do the same thing. If you were using a switch statement you could let the those cases just fall through. Also if you want to use key combinations such as Shift + <key> you can't simply rely on the keycode, as Shift + o and o will be detected with the same code.