npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bb-collection-view

v3.0.0

Published

Easily render backbone.js collections with support for automatic selection of models in response to clicks, reordering models via drag and drop, and more.

Downloads

2,322

Readme

Backbone.CollectionView

For demos see the Backbone.CollectionView home page.

Depends on jQuery and jQueryUI for event handling and sorting, respectively.

Benefits

  • Renders a collection of models, updating automatically when models are added or removed.
  • Keeps track of selected model(s) and fires events when the selection is changed.
  • Adds "selected" css class to selected model views for easy stying.
  • Supports single and multiple selection through meta-key and shift clicks.
  • Allows a user to reorder the collection by dragging and dropping.
  • Supports changing the currently selected model(s) through up and down arrow key presses.
  • Allows you to filter which models are visible, selectable, and sortable.
  • Integrates with Backbone.Courier out of the box.

Sample Usage

var myCollectionView = new Backbone.CollectionView( {
	el : $( "#listForCollection" ),		// must be a 'ul' (i.e. unordered list) or 'table' element
	modelView : EmployeeView,			// a View class to be used for rendering each model in the collection
	collection : employeeCollection
} );

myCollectionView.render();
myCollectionView.setSelectedModel( employeeCollection.first() );

Initialization Options

  • el : A <ul> or <table> element into which your collection will be rendered. If you supply a <table> element, your modelView must have an element of type of <tr>.
  • collection : The collection of models to be rendered.
  • modelView : A view constructor that will be used to create the views for each individual model.
  • selectable : (default: true) Determines whether models in the CollectionView are selectable.
  • reuseModelViews : (default: true) When true, modelViews are reused instead of being re-created from scratch when the CollectionView is re-rendered.
  • detachedRendering : (default: false) When true, all the modelViews are rendered before being added to the DOM to improve performance. If your modelView rendering relies on its location in the DOM (for sizing or other reasons), use the default value of false.
  • sortable : (default: false) Determines if models can be rearranged by dragging and dropping.
  • sortableOptions : Options passed through to the created jQueryUI sortable. Only applies if sortable.
  • emptyListCaption : A string (or a function returning a string) to be shown when the list is empty.

The following options apply when selectable option is set:

  • clickToSelect : (default: true) Determines whether mouse clicks should automatically select models as would be appropriate in a standard HTML mutli-SELECT element.
  • processKeyEvents : (default: true) Determines if the collection view should respond to arrow key events as would be appropriate in a standard HTML multi-SELECT element.
  • selectMultiple : (default: false) Determines if multiple models can be selected at once.
  • clickToToggle : (default: false) Determines if clicking a model view should toggle its selected / unselected state. Only applies if selectMultiple is set.

The following options expect a filter function that takes a single parameter, the model in question, and returns true or false. They are all optional, defaulting to passing all models.

  • visibleModelsFilter : Determines which models are visible.
  • selectableModelsFilter : In a selectable CollectionView, determines which models are selectable.
  • sortableModelsFilter : In a sortable CollectionView, determines which models are sortable.

Methods and Properties Reference

  • setSelectedModel( modelReference, [options] ) Sets which model(s) are selected. (See below.)
  • getSelectedModel( [options] ) Returns references to the selected model(s). (See below.)
  • setOption( optionName, optionValue ) Updates the value of a configuration option. All constructor options above are valid except el. The CollectionView is automatically re-rendered if necessary.
  • collection The Backbone collection instance that this CollectionView represents.
  • viewManager A Backbone.BabySitter instance that contains the views corresponding to the individual models in the collection. Backbone.Babysitter implements a "view collection" that enables you to, for example, iterate through all the model views, or easily trigger an event on all model views at once. See the Backbone.BabySitter documentation for more information.

setSelectedModel(s) and getSelectedModel(s)

The getSelectedModel(s) and setSelectedModel(s) methods are used to get or set the currently selected models. The methods are able to reference models in a variety of ways using the by option:

// Returns an array of the selected models
myCollectionView.getSelectedModels();

// Returns an array of the ids of the selected models
myCollectionView.getSelectedModels( { by : "id" } );

// Select model id 2 and model id 4
myCollectionView.setSelectedModels( [ 2, 4 ], { by : "id" } );

// Select the model with cid equal to "c21"
myCollectionView.setSelectedModel( "c21", { by : "cid" } );

// Returns the view object that represents the selected model
myCollectionView.getSelectedModel( { by : "view" } );

As shown in the examples, the plural versions of the methods expect / return an array of "model references", whereas the singular versions expect / return just a single "model reference".

There are four valid values for by option which determine the type of "model reference" used.

  • "id" : The id of the model.
  • "cid" : The cid of the model.
  • "offset" : The zero-based index of the model in the collection, only counting visible models.
  • "view" : The view that was created to represent the model when the CollectionView was rendered.

If no by option is provided the model object itself is expected / returned.

Additionally, the setSelectedModel(s) function accepts one additional option, silent, which, when true, will prevent the selectionChanged event from being fired.

##Events Fired CollectionViews trigger the following events on themselves. If Backbone.Courier is available, these events are also "spawned".

  • "selectionChanged" ( newSelectedModels, oldSelectedModels ) Fired whenever the selection is changed, either by the user or by a programmatic call to setSelectedModel(s).
  • "updateDependentControls" ( selectedModels ) Fired whenever controls that are dependent on the selection should be updated (e.g. buttons that should be disabled on no selection). This event is always fired just after selectionChanged is fired. In addition, it is fired after rendering and sorting.
  • "click" ( clickedModel ) Fired when a model view is clicked.
  • "doubleClick" ( clickedModel ) Fired when a model view is double clicked.

In addition, sortable CollectionViews fire these events:

  • "sortStart" Fired just as a model view is starting to be dragged.
  • "sortStop" Fired after a drag is finished and after the collection is reordered.
  • "reorder" Fired when a drag is finished, but before the collection is reordered.

##Styling

How you style the collection view is up to you.

The ul or table element that is used as the collection view's element will be given the collection-list class. Generally you will want to eliminate bullets, etc., from your collection view list elements, which you can do with these "base" styles:

ul.collection-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  outline: none;
  cursor: pointer;
}

When a model is selected, its view's li or tr element will be given the selected class.

You can style the caption created by the emptyListCaption option with the var.empty-list-caption selector. These styles will center the empty list caption text near the top of the collection view.

var.empty-list-caption {
  color: #A0A0A0;
  padding: 30px;
  display: block;
  text-align: center;
  font-style: normal;
  line-height: 1.45;
}

(Both of the above css fragments are included in base.css, which will be included automatically in your css bundles if you are using parcelify or cartero.)

See the the Backbone.CollectionView home page for styling examples.

Contributing

See the the Backbone.CollectionView home page for styling examples.

##Dependencies

  • Backbone.js (tested with v1.0, v0.9.10)
  • jQuery (tested with v1.9.1)
  • jQueryUI - for sorting (tested with v1.10.1)
  • (optional) Backbone.Courier

##License MIT