taquet.js extends Backbone.js and adds the following features:
- A platform wide commands system
- bubbling events up & down the hierarchy
Views
with a lifecycleRoutedViews
automatically attach themselves to the Router- Helpul utilities
#Table of Contents
- backbone.js [which in turn requires underscore/lodash, and jQuery/Zepto]
If you follow the instructions each dependency will be fetched for you using Bower.
- node.js must be installed
- npm install
###View
Taquet extends Backbone.View by patching the original source. The original tests are included to make sure Taquet doesn't interfere with Backbone.View.
Note that Commands are synchronous while Events are asynchronous
####Commands There are two ways to register commands:
- Specifying the commands when extending the View.
- Passing the commands when instantiating the View.
var CustomView = Backbone.View.extend({
//START_UP etc are strings.
commands: [Commands.START_UP, Commands.SLEEP], // 1
commandHandler: function(command) {
switch(command.type) {
case Commands.START_UP:
//do something at startup
break;
case Commands.SLEEP:
// do something else
break;
default:
//some default behaviour if needed.
//This will be invoked on SHUT_DOWN
}
}
});
new CustomView({commands:[Commands.SHUT_DOWN]}); // 2
this.sendCommand(command, args)
can be invoked from any class that extends BaseEvent
.
####Command Object
_This is the command object that is passed through to the commandHandler
.
{
type: "", //command's type.
currentTarget: {} //the object that initiated the command.
}
####Bubbling Events For event to bubble up a hierarchy:
trigger()
needs to be used alongside aBubbleEvent
instance.
this.trigger(new BubbleEvent("CUSTOM_EVENT"));
- When modifying the DOM that is associated to a given Backbone view, always use
setElement
: this allows both Backbone, and taquet to do some clean-ups. - callbacks triggered with
BubbleEvent
will receive its arguments as follow:
function onBubbleEventHandler(event, arg0, arg1, ... ) {
}
where event
is the BubbleEvent object, and the rest are arguments passed through from trigger(bubbleEvent, arg0, ...)
.
####BubbleEvent
var event = new BubbleEvent("CUSTOM_EVENT");
By calling event.stopPropagation()
an event can be stopped from bubbling up or down the event hierarchy.
An event could also be uncancellable by setting the cancellable flag to false.
var event = new BubbleEvent("CUSTOM_EVENT", false);
###RoutedView
Any View extending from this View can automatically attach itself to the router.
###BaseApplication This is not a View, and that is all it is. for now
###BaseModule This is not a View, and that is all it is. for now
###Utilities ####Proxy
Helper method that allows you to specify the scope within which a callback will run.
The following code allows for fn
to run with context
as its context.
args
is optional, and is passed to fn
.
var adjusted = this.proxy(fn, context, args);
####Webfont preloader
This does not preload as much as ensure a given front to be loaded. Once a given font has been properly loaded this utility send a system wide command.
##Testing
Refer to taquet-generator, yeoman, and grunt for more details.
- If the Views are created using taquet-generator a *Spec.js file will automatically be created in
path/to/test
- Running
grunt test
will run the tests and test for the native features.