Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonyshort/backbone.collectionsubset
Create sub-collections from other collections and keep them in sync
https://github.com/anthonyshort/backbone.collectionsubset
Last synced: 24 days ago
JSON representation
Create sub-collections from other collections and keep them in sync
- Host: GitHub
- URL: https://github.com/anthonyshort/backbone.collectionsubset
- Owner: anthonyshort
- License: mit
- Created: 2012-09-13T12:45:42.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-10T13:52:50.000Z (over 9 years ago)
- Last Synced: 2024-10-08T18:43:10.085Z (about 1 month ago)
- Language: JavaScript
- Size: 411 KB
- Stars: 72
- Watchers: 6
- Forks: 17
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# backbone.collectionsubset
[![Build Status](https://secure.travis-ci.org/anthonyshort/backbone.collectionsubset.png)](http://travis-ci.org/anthonyshort/backbone.collectionsubset)
Create sub-collections of other collections and keep them in sync. This library allows you create child collections that are subsets of larger collections based on a filter function. These children can then be further subset into even smaller collections. This creates a tree of collections with a single parent collection at the top. Adding a model to the root collection will automatically push the model down the tree and into subsets that match that model.
Each subset is its own independent collection. It can have its own URL for fetching which will add all the models to the parent collection and refilter the subset.
Imagine you have a collection of tasks. You can create a subset for "today". If you add a model to the parent collection it will be pushed into the "today" collection. You can further subset the "today" collection into subsets for assigned users.
## Features
* Create subsets of large collections
* Subsets are independent collections and can have their own URL and properties.
* Subsets will be reset when the parent is reset
* Adding a model to a parent pushes it down into all subsets it belongs to firing add events in each
* Adding a model to a child pushes it up to the top which will then move in into matching subsets
* Models in subsets point to the object## Example
```coffee
tasks = new TaskCollection# Create a subset of our main collection
today = tasks.subcollection
filter: (task) -> task.isToday()
today.url = '/tasks/today'# Create a new task in the main collection...
tasks.create id: 200, today: true# ...and it's automatically pushed to all subsets
today.get(200) is tasks.get(200) # true# Model changes are pushed upwards
today.get(200).destroy()# Create models in subsets and they are pushed to the parent collection
today.create id: 201
today.get(201) is tasks.get(2001) # true# And they will update on fetch
tasks.fetch()# When subsets are fetched, all the models are pushed to the parent collection
today.fetch()
```## Getting Started
### Browser
Download the [production version][min] or the [development version][max].
[min]: https://raw.github.com/anthonyshort/backbone.collectionsubset/master/backbone.collectionsubset.min.js
[max]: https://raw.github.com/anthonyshort/backbone.collectionsubset/master/backbone.collectionsubset.js```html
```
### Bower
```
bower install backbone.collectionsubset
```### NPM
```
npm install backbone.collectionsubset
```## Usage
You have two methods for creating subsets (or subcollections).
### Collection::subcollection
The easiest way to create a subset is to use `Collection::subcollection`
```js
var TaskCollection = Backbone.Collection.extend();
var tasks = new TaskCollection;
var today = tasks.subcollection({
filter: function(task) {
return task.isToday();
}
});
````today` will be an instance of `tasks.constructor`, in this case, `TaskCollection`.
### Backbone.CollectionSubset
If you need access to the subset object itself (you might want to modify the filter) you can create a subset directly.
```js
var allTasks = new Backbone.Collection;
var subset = new Backbone.CollectionSubset({
parent: allTasks,
filter: function(task) {
return task.isToday();
}
});var todayTasks = subset.child;
subset.setFilter(function(model){
return task.isYesterday();
});
```## Documentation
Depending on how you create the subset you have different interface. Creating a subcollection via `Backbone.Collection::subcollection` you will only have
access to the child collection and the Backbone.CollectionSubset instance is completely transparent. However, you may need some extra flexibility so you can
also create `Backbone.CollectionSubset` instances manually```coffee
subset = new Backbone.CollectionSubet parent: tasks
```vs.
```coffee
new_collection = tasks.subcollection
filter: (model) -> model.isToday()
```### Options
* `refresh` - Whether to refresh the collection from the parent immediately. Defaults to `true`
* `triggers` - Set which model attribute changes to watch for. This is important for performance. Defaults to `null`
* `filter` - The default filter. By default lets all models pass
* `child` - The collection to use for the child. This isn't required and will be automatically created. Defaults to `null`
* `parent` - *required* The collection to base the subset on. Must be a Backbone.Collection.### Methods
If you create a Backbone.CollectionSubset instance directly you will have access to these methods.
`setParent`
Set the parent collection. Will unbind any events on the collection that the subset current has and setup all the events for syncing with the child collection
`setChild`
Same as the previous option, but with the child collection.
`setFilter`
Set the filter used on the parent collection. This does not automatically refresh the child collection.
`refresh`
Refreshes the child collection with models from the parent. Clears out the child collection and refilters the parent. Triggers a 'refresh' event on the child.
`dispose`
Clean up the subset. Removes the child collection completely and removes all events from the parent child. Triggers a `dispose` event on the subset.
## Todo
* Add url option to `subcollection` that will prepend the parent collection url
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt](https://github.com/cowboy/grunt)._Also, please don't edit files in the "dist" subdirectory as they are generated via grunt. You'll find source code in the "lib" subdirectory!_
## Release History
_(Nothing yet)_## License
Copyright (c) 2012 Anthony Short
Licensed under the MIT license.