Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
backbone-bindings
Advanced tools
Bi-directional bindings between Backbone.View elements and Backbone.Model attributes
Bi-directional bindings between Backbone.View elements and Backbone.Model attributes.
by amccloud and put on npm by jden jason@denizac.org
See some demo action here http://jsfiddle.net/T2MSu/3/
var MealLogView = Backbone.View.extend({
template: _.template('<h1 class="name"></h1><input type="text" name="name">'),
bindings: {
'text h1.name': 'name',
'value input[name="name"]': 'name',
},
render: function() {
this.$el.html(this.template());
return this.bindModel();
}
});
Bindings is a hash defined on the view as a property named bindings
or passed to this.bindModel()
.
The key in bindings
hash consist of two parts, the property
you want to bind to and the selector
for the element you're targeting. Omitting the selector
causes the event to be bound to the
view's root element this.el
.
Property binders return accessors for setting or getting DOM values.
If a property cannot be found in the defined binders it defaults to __attr__
. __attr__
is a special binder that look up the property in the elements attributes. This is useful for
binding to a wide variety attributes like data-custom and other custom attributes you need.
Binders are defined in the Backbone.View.Binders
hash. The context of a property binder is
the view and the context of the returned accessors
is the element being bound to. A binder
function takes three arguments: model
, attribute
, and property
. The binder must return
an accessors
hash with get
and or set
defined as functions. get
takes no arguments and
should return a value from the element. set
takes one argument: value
and should set the
element to that value.
Backbone.View.Binders['mycustom'] = function(model, attribute, property) {
return {
get: function() {
return this.css('background');
},
set: function(value) {
this.css('background', value);
}
};
};
var MealLogView = Backbone.View.extend({
bindings: {
'mycustom div.cool-div': 'color'
},
render: function() {
this.$el.html(this.template());
return this.bindModel();
}
});
Transformers are used for mutating the data between the model and view. A get
transformer is
a simple function that takes in a value and returns a value. When dealing with bi-directional
(get
and set
) transformations a transformer should be list of two functions, one for get
and one for set
respectively. The context of transformer functions is the view.
var triedClassTransformer = function(value) {
return (value == true) ? 'tried' : 'todo';
};
var MealLogView = Backbone.View.extend({
bindings: {
'class': ['tried', triedClassTransformer],
},
render: function() {
this.$el.html(this.template());
return this.bindModel();
}
});
var yesNoTransformer = [function(value) {
return value === "yes";
}, function(value) {
return (value) ? "yes" : "no";
}];
var MealLogView = Backbone.View.extend({
bindings: {
'checked input[name="tried"]': ['tried', yesNoTransformer]
},
render: function() {
this.$el.html(this.template());
return this.bindModel();
}
});
FAQs
Bi-directional bindings between Backbone.View elements and Backbone.Model attributes
The npm package backbone-bindings receives a total of 1 weekly downloads. As such, backbone-bindings popularity was classified as not popular.
We found that backbone-bindings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.