@@ -4,194 +4,23 @@ Rivets.js is a declarative data binding facility that plays well with existing f
---
Describe your UI in plain HTML using data attributes:
Rivets.js keeps your UI and model data in sync for you, so you can spend less time manually tying into the DOM and more time on your actual data and application logic.
Use `rivets.configure` to configure Rivets.js for your app (or you can set configuration options manually on `rivets.config`).
#### Adapter
Rivets.js is model interface-agnostic, meaning it can work with any event-driven model by way of defining an adapter. This is the only required configuration as it's what Rivet.js uses to observe and interact with your model objects. An adapter is just an object that responds to `subscribe`, `unsubscribe`, `read` and `publish`. Here is a sample configuration with an adapter for using Rivets.js with Backbone.js.
```javascript
rivets.configure({
adapter:{
subscribe:function(obj,keypath,callback){
obj.on('change:'+keypath,callback);
},
unsubscribe:function(obj,keypath,callback){
obj.off('change:'+keypath,callback);
},
read:function(obj,keypath){
returnobj.get(keypath);
},
publish:function(obj,keypath,value){
obj.set(keypath,value);
}
}
});
```
#### Prefix and data preloading
To prevent data attribute collision, you can set the `prefix` option to something like 'rv' or 'bind' so that data attributes are prefixed like `data-rv-text`.
```javascript
rivets.configure({
prefix:'rv'
});
```
Set the `preloadData` option to `false` if you don't want your bindings to be bootstrapped with the current model values on bind. This option is set to `true` by default.
```javascript
rivets.configure({
preloadData:false
});
```
## Extend
Rivets.js is easily extended by adding your own custom *binding routines* and *formatters*. Rivets.js comes bundled with a few commonly used bindings, but users are encouraged to add their own that are specific to the needs of their application.
#### Binding Routines
*Binding routines* are the functions that run when an observed attribute changes. Their sole concern is to describe what happens to the element when a new value comes in. All binding routines are publicly available on the `rivets.routines` object.
Let's say we wanted a `data-color` binding that sets the element's colour, here's what the routine function for that binding might look like:
```javascript
rivets.routines.color=function(el,value){
el.style.color=value;
};
```
With that routine defined, the following binding will update the element's color when `model.color` changes:
```html
<spandata-color="model.color">COLOR</span>
```
Available bindings out-of-the-box:
- data-text
- data-html
- data-value
- data-show
- data-hide
- data-enabled
- data-disabled
- data-checked
- data-unchecked
- data-*[attribute]*
- data-class-*[class]*
- data-on-*[event]*
- data-each-*[item]*
#### Formatters
*Formatters* are simple one-way functions that mutate the incoming value of a binding. You can use them to format dates, numbers, currencies, etc. and because they work in a similar fashion to the Unix pipeline, the output of each feeds directly as input to the next one, so you can stack as many of them together as you like.
```javascript
rivets.formatters.money=function(value){
returnaccounting.formatMoney(value);
};
rivets.formatters.date=function(value){
returnmoment(value).format('MMM DD, YYYY');
};
```
```html
<spandata-text="event.startDate | date"></span>
```
## Usage Notes
#### Rivets.View and Rivets.Binding
The `rivets.bind` function returns a bound `Rivets.View` instance that you should hold on to for later. You may want to unbind it's listeners with `view.unbind()` and/or rebuild it's bindings with `view.build()`. You can also access the individual `Rivets.Binding` instances inside the view through `view.bindings` — this is useful for debugging purposes or if you want to unbind or manually set the value for certain bindings.
#### Adapter Bypass
If your model object encapsulates it's attributes (e.g. `model.attributes` for Backbone.js models) and your adapter conforms to that object specifically, you can still utilize properties defined outside of that object — such as functions or other static values defined on the object root.
Just use `model:property` instead of `model.property` inside your binding declaration and Rivets.js will bypass the adapter completely and access that property as it's defined on the object root. This obviously won't sync any changes, but that is by design in this case as these properties should be mostly static and used in conjunction with other "dynamic" properties.
#### Computed Properties
Computed properties are functions that get re-evaluated when one or more dependent properties change. Declaring computed properties in Rivets.js is simple, just separate the function from it's dependencies with a *<*. The following `data-text` binding will get re-evaluated with `event.duration()` when either the event's `start` or `end` attribute changes.
The prepended `.` is a shorthand syntax for specifying dependencies that are on the same object as the target, so that the above declaration is effectively the same as `event:duration < event.start event.end`.
#### Iteration Binding
Use the `data-each-[item]` binding to have Rivets.js automatically loop over items in an array and append bound instances of that element. Within that element you can bind to the iterated item as well as any contexts that are available in the parent view.
```html
<ul>
<lidata-each-todo="list.todos">
<inputtype="checkbox"data-checked="todo.done">
<spandata-text="todo.summary"></span>
</li>
<ul>
```
If the array you're binding to contains non-model objects (they don't conform to your adapter), you can still iterate over them, just make sure to use the adapter bypass syntax — in doing so, the iteration binding will still update when the array changes, however the individual items will not since they'd be bypassing the `adapter.subscribe`.
All documentation for Rivets.js is available on the [homepage](http://rivetsjs.com). See [#configure](http://rivetsjs.com#configure) to learn how to properly configure Rivets.js for your app.
## Building and Testing
Make sure to run `npm install` so that you have all the development dependencies. To have the test suite run as part of the build process, you'll also need to have [PhantomJS](http://phantomjs.org) installed.
Make sure to run npm install so that you have all the development dependencies. To have the test suite run as part of the build process, you'll also need to have PhantomJS installed.