Selectable entities as mixins for Backbone.Model and Backbone.Collection!
This project is no longer maintained and no recommended for production use.
If you need selectable Backbone models, check out Backbone.select.
You can download the raw source code from the "src" folder above, or grab one of the builds from the "lib" folder.
To get the latest stable release, use these links which point to the 'master' branch's builds:
Development: backbone.picky.js
Production: backbone.picky.min.js
Development: backbone.picky.js
Production: backbone.picky.min.js
This readme file contains basic usage examples and details on the full API, including methods, attributes and events.
Picky has annotated source code using the Docco tool to turn comments in to documentation. This provides an in-depth look at what each section of is doing.
The Picky collections override the method select
on collections. At this
point, I can't think of a better name for specifying a model has been
selected. Once I find a better name, the API will change. But for now,
you will not be able to use the standard select
method on any
collection that has a Picky collection mixin.
If you implement a Selectable
model, the methods on the models and the
MultiSelect
collection will keep each other in sync. That is, if you
call model.select()
on a model, the collection will be notified of the
model being selected and it will correctly update the selectedLength
and
fire the correct events.
Therefore, the following are functionally the same:
model = new MyModel();
col = new MyCollection([model]);
model.select();
model = new MyModel();
col = new MyCollection([model]);
col.select(model);
Your model for a Picky collection must implement the following API to be usable by the selection methods and functionality:
select: function(){...}
deselect: function(){...}
The easiest way to do this is to have your model extend Selectable
. You
can, however, implement your own version of these methods.
- Picky.Selectable: Creates select / deselect capabilities for a model
- Picky.MultiSelect: Allows a collection to know about the selection of multiple models, including select all / deselect all
- Picky.SingleSelect: Allow a collection to have an exclusively selected model
Creates selectable capabilities for a model, including tracking whether or not the model is selected, and raising events when selection changes.
var selectable = new Backbone.Picky.Selectable(myModel);
Extend your model with the Selectable
instance to make your model
selectable directly.
SelectableModel = Backbone.Model.extend({
initialize: function(){
var selectable = new Backbone.Picky.Selectable(this);
_.extend(this, selectable);
}
});
The following methods are included in the Selectable
object
Select a model, setting the model's selected
attribute to true and
triggering a "select" event.
var myModel = new SelectableModel();
myModel.on("select", function(){
console.log("I'm selected!");
});
myModel.select(); //=> logs "I'm selected!"
myModel.selected; //=> true
Deselect a model, setting the model's selected
attribute to false and
triggering a "deselected" event.
var myModel = new SelectableModel();
myModel.on("deselected", function(){
console.log("I'm no longer selected!");
});
// must select it before it can be deselected
myModel.select();
myModel.deselect(); //=> logs "I'm no longer selected!";
myModel.selected; //=> false
Toggles the selection state between selected and deselected by calling
the select
or deselect
method appropriately.
var myModel = new SelectableModel();
myModel.on("select", function(){
console.log("I'm selected!");
});
myModel.on("deselected", function(){
console.log("I'm no longer selected!");
});
// toggle selection
myModel.toggleSelected(); //=> "I'm selected!"
myModel.toggleSelected(); //=> "I'm no longer selected!"
The following attributes are manipulated by the Selectable object
Returns a boolean value indicating whether or not the model is currently selected.
The following events are triggered from Selectable models
Triggers when a model is selected. Provides the selected model as the first parameter.
Triggers when a model is deselected. Provides the selected model as the first parameter.
Creates single-select capabilities for a Backbone.Collection
, allowing
a single model to be exclusively selected within the colllection. Selecting
another model will cause the first one to be deselected.
var singleSelect = new Backbone.Picky.SingleSelect(myCollection) ;
Extend your collection with the SingleSelect
instance to make your
collection support exclusive selections directly.
SelectableModel = Backbone.Model.extend({
initialize: function(){
var selectable = new Backbone.Picky.Selectable(this);
_.extend(this, selectable);
}
});
SingleCollection = Backbone.Collection.extend({
model: SelectableModel,
initialize: function(){
var singleSelect = new Backbone.Picky.SingleSelect(this);
_.extend(this, singleSelect);
}
});
The following methods are provided by the SingleSelect
object.
Select a model. This method will store the selected model in
the collection's selected
attribute, and call the model's select
method to ensure the model knows it has been selected.
myModel = new SelectableModel();
myCol = new MultiCollection();
myCol.select(myModel);
Or
myModel = new SelectableModel();
myCol = new MultiCollection([myModel]);
myModel.select();
If the model is already selected, this is a no-op. If a previous model is already selected, the previous model will be deselected.
Deselect the currently selected model. This method will remove the
model from the collection's selected
attribute, and call the model's
deselect
method to ensure the model knows it has been deselected.
myModel = new SelectableModel();
myCol = new MultiCollection();
myCol.deselect(myModel);
Or
myModel = new SelectableModel();
myCol = new MultiCollection();
myModel.deselect();
If the model is not currently selected, this is a no-op. If you try to deselect a model that is not the currently selected model, the actual selected model will not be deselected.
The following attribute is set by the multi-select automatically
Returns the one selected model for this collection
myCol = new MultiCollection();
myCol.select(model);
myCol.selected; //=> model
The following events are triggered by the SingleSelect based on changes in selection:
Triggered when a model has been selected. Provides the selected model as the first parameter.
Triggered when a model has been deselected. Provides the deselected model as the first parameter.
This fires whether deselect
has been called explicitly, or the
selection is being replace through another call to select
.
Creates multi-select capabilities for a Backbone.Collection
, including
select all, select none and select some features.
var multiSelect = new Backbone.Picky.MultiSelect(myCollection) ;
Extend your collection with the MultiSleect
instance to make your
collection support multiple selections directly.
SelectableModel = Backbone.Model.extend({
initialize: function(){
var selectable = new Backbone.Picky.Selectable(this);
_.extend(this, selectable);
}
});
MultiCollection = Backbone.Collection.extend({
model: SelectableModel,
initialize: function(){
var multiSelect = new Backbone.Picky.MultiSelect(this);
_.extend(this, multiSelect);
}
});
The following methods are provided by the MultiSelect
object
Select a model. This method will store the selected model in
the collection's selected
list, and call the model's select
method to ensure the model knows it has been selected.
myCol = new MultiCollection();
myCol.select(myModel);
If the model is already selected, this is a no-op.
Deselect a model. This method will remove the model from
the collection's selected
list, and call the model's deselect
method to ensure the model knows it has been deselected.
myCol = new MultiCollection();
myCol.deselect(myModel);
If the model is not currently selected, this is a no-op.
Select all models in the collection.
myCol = new MultiCollection();
myCol.selectAll();
Models that are already selected will not be re-selected. Models that are not currently selected will be selected. The end result will be all models in the collection are selected.
Deselect all models in the collection.
myCol = new MultiCollection();
myCol.deselectAll();
Models that are selected will be deselected. Models that are not selected will not be deselected again. The end result will be no models in the collection are selected.
Toggle selection of all models in the collection:
myCol = new MultiCollection();
myCol.toggleSelectAll(); // select all models in the collection
myCol.toggleSelectAll(); // de-select all models in the collection
The following rules are used when toggling:
- If no models are selected, select them all
- If 1 or more models, but less than all models are selected, select them all
- If all models are selected, deselect them all
The following attribute is set by the multi-select automatically
Returns a hash of selected models, keyed from the model cid
.
myCol = new MultiCollection();
myCol.select(model);
myCol.selected;
//=> produces
// {
// "c1": (model object here)
// }
Returns the number of items in the collection that are selected.
myCol = new MultiCollection();
myCol.select(model);
myCol.selectedLength; //=> 1
The following events are triggered by the MultiSelect based on changes in selection:
Triggered when all models have been selected
Triggered when all models have been deselected
Triggered when at least 1 model is selected, but less than all models have been selected
If you wish to build Backbone.Picky on your system, you will need Ruby to run the Jasmine specs, and NodeJS to run the grunt build.
-
Be sure you have Bundler installed in your Ruby Gems. Then run
bundle install
from the project folder -
Once this is done, you can run
rake jasmine
to run the Jasmine server -
Point your browser at
http://localhost:8888
and you will see all of the specs for Backbone.Picky
-
Be sure you have NodeJS and NPM installed on your system
-
Run
npm install -g grunt
to install the grunt build system -
From the project folder, run
grunt
to produce a build
- Renamed
SingleSelect
events from "select" and "deselect" to "select:one" and "deselect:one" - Pass model as argument in select:one / deselect:one events
- Updated the build to use latest grunt and related tools
- Removed reliance on ruby for any part of this project
- Added Picky.SingleSelect
- Fleshed out the specs more
- Initial release of untested code
- Basic "Selectable" mixin for models
- Basic "MultiSelect" mixin for collections
Copyright (c) 2012 Derick Bailey, Muted Solutions, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.