HTML5 Sortable jQuery Plugin
============================
![Build Status](https://img.shields.io/travis/voidberg/html5sortable/master.svg?style=flat-square) ![Coverage Status](https://img.shields.io/coveralls/voidberg/html5sortable/master.svg?style=flat-square) ![Git Release](https://img.shields.io/github/release/voidberg/html5sortable.svg?style=flat-square) ![Bower](https://img.shields.io/bower/v/html.sortable.svg?style=flat-square) ![NPM](https://img.shields.io/npm/v/html5sortable.svg?style=flat-square)
> **Lightweight jQuery plugin to create sortable lists and grids using native HTML5 drag and drop API.**
## Features
* Less than 1KB (minified and gzipped).
* Built using native HTML5 drag and drop API.
* Supports both list and grid style layouts.
* Supported Browsers: Current versions of all major browsers (Chrome, Firefox, Safari, Opera), IE9+
* Supports exports as AMD, CommonJS or global
* Comes with an AngularJS directive [help wanted](#angularjs-usage)
**Demo:** Check out the **[examples](http://lukasoppermann.github.io/html5sortable/examples/index.html)**
# Installation
### The recommended way, using [Bower](http://bower.io):
```
bower install html.sortable --save
```
### The non-Bower way:
include `html.sortable.x.y.z.js` or the minified version, `html.sortable.min.x.y.z.js`.
### Install via [NPM](https://github.com/npm/npm#super-easy-install):
```
npm install html5sortable --save
```
# Examples
You can find the **[examples online](http://lukasoppermann.github.io/html5sortable/examples/index.html)** or test locally.
```shell
# To get the local examples to work do the following:
git clone https://github.com/voidberg/html5sortable
cd html5sortable
bower install
```
# Build it / Hack it
**1. Node package manager (npm)**
You will need `npm`, choose any way you like to [install npm](https://github.com/npm/npm#super-easy-install).
**2. Clone and install the project**
```
git clone https://github.com/voidberg/html5sortable
cd html5sortable
npm install && bower install
```
**3. Commit**
If you send a *pull request* make sure it passes the tests & linting. Please do **NOT** bump the version number.
```
npm test
```
> *Note: At the moment you will get the following warnings, if your PR does not add any other warning, it is considered to have passed:*
- 2x This function has too many statements. (for src/html.sortable.js)
- 2x Line must be at most 80 characters (for src/html.sortable.js)
> *We are going to fix those linting issues in the near future.*
**4. Merging PRs and building (only if you have commit rights)**
After merging a PR run the following command to build the minified versions and bump the version number.
```
npm run build
```
# Usage
Use `sortable` method to create a sortable list:
``` javascript
$('.sortable').sortable();
```
## Styling
Use `.sortable-placeholder` CSS selectors to change the styles of the placeholder. You may change the class by setting the `sortableClass` option in the config object.
``` javascript
$('.sortable').sortable({
sortableClass: 'my-placeholder fade'
});
```
## Events
### sortstart
Use `sortstart` event if you want to do something when sorting starts:
``` javascript
$('.sortable').sortable().bind('sortstart', function(e, ui) {
/*
This event is triggered when the user starts sorting and the DOM position has not yet changed.
ui.item contains the current dragged element
ui.placeholder contains the placeholder element
ui.startparent contains the element that the dragged item comes from
*/
});
```
### sortstop
Use the `sortstop` event if you want to do something when sorting stops:
``` javascript
$('.sortable').sortable().bind('sortstop', function(e, ui) {
/*
This event is triggered when the user stops sorting. The DOM position may have changed.
ui.item contains the element that was dragged.
ui.startparent contains the element that the dragged item came from.
*/
});
```
### sortupdate
Use `sortupdate` event if you want to do something when the order changes (e.g. storing the new order):
``` javascript
$('.sortable').sortable().bind('sortupdate', function(e, ui) {
/*
This event is triggered when the user stopped sorting and the DOM position has changed.
ui.item contains the current dragged element.
ui.index contains the new index of the dragged element (considering only list items)
ui.oldindex contains the old index of the dragged element (considering only list items)
ui.elementIndex contains the new index of the dragged element (considering all items within sortable)
ui.oldElementIndex contains the old index of the dragged element (considering all items within sortable)
ui.startparent contains the element that the dragged item comes from
ui.endparent contains the element that the dragged item was added to (new parent)
*/
});
```
## Options
### items
Use `items` option to specifiy which items inside the element should be sortable:
``` javascript
$('.sortable').sortable({
items: ':not(.disabled)'
});
```
### handle
Use `handle` option to restrict drag start to the specified element:
``` javascript
$('.sortable').sortable({
handle: 'h2'
});
```
### forcePlaceholderSize
Setting `forcePlaceholderSize` option to true, forces the placeholder to have a height:
``` javascript
$('.sortable').sortable({
forcePlaceholderSize: true
});
```
### connectWith
Use `connectWith` option to create connected lists:
``` javascript
$('.js-sortable, .js-second-sortable').sortable({
connectWith: 'connected' // unique string, which is not used for other connectWith sortables
});
```
### placeholder
Use `placeholder` option to specify the markup of the placeholder:
``` javascript
$('.sortable').sortable({
items: 'tr' ,
placeholder: '
|
'
});
```
### hoverClass
Use `hoverClass` option to specify applying a css class to the hovered element rather than relying on `:hover`. This can eliminate some potential drag and drop issues where another element thinks it is being hovered over.
``` javascript
$('.sortable').sortable({
hoverClass: 'is-hovered' // Defaults to false
});
```
## Methods
### destroy
To remove the sortable functionality completely:
``` javascript
$('.sortable').sortable('destroy');
```
### disable
To disable the sortable temporarily:
``` javascript
$('.sortable').sortable('disable');
```
### enable
To enable a disabled sortable:
``` javascript
$('.sortable').sortable('enable');
```
### reload
When you add a new item to a sortable, it will not automatically be a draggable item, so you will need to reinit the sortable. Your previously added options will be preserved.
``` javascript
$('.sortable').sortable();
```
## AngularJS usage
**HELP WANTED:** If you know angular and want to help get this package up to date and cleaned up, please contact me ([lukasoppermann](https://github.com/lukasoppermann)) or start submitting PRs.
Make your app use the `htmlSortable` module. Assign html sortable options to the `html-sortable` tag, specify an ng-model and, optionally, specify a callback using `html-sortable-callback`.
``` javascript
$scope.sortableOptions = {
placeholder: '',
forcePlaceholderSize: true
};
$scope.sortableCallback = function (startModel, destModel, start, end) {
// ...
};
```
``` html
```
See the [examples](#examples) for more information.
## Authors
Original code by Ali Farhadi. This version is mantained by [Alexandru Badiu](http://ctrlz.ro) & [Lukas Oppermann](http://vea.re).
## Contributors
Thanks to all the people who contributed fixed and improvments. To get a full list of contributors, check out the [AUTHORS file](/AUTHORS).
## Contributing
When sending pull requests make sure to only include changes that directly relate to the fix/feature you are adding and also start a pull request from a freshly cloned copy of the repo to make it easy to merge.
Please always rebase to a single commit with a descriptive name and an explanation of why what was changed.
If you sent a pull request and it got merged, your name will automatically be added to the `AUTHORS` file with the next release.
**NOTE:** Please do **NOT** add your name to the `AUTHORS` file and **do NOT bump the version** as this will be done automatically.
## Comment your code
Your code should be as self-documenting as possible, but because this is an open source project with multiple contributors please add comments whenever possible.
### Docblocks for functions
Every function should have a docblock above stating what the function does and what parameters it is supposed to get.
```javascript
/*
* remove event handlers from sortable
* @param: {jQuery collection} sortable
*/
```
### Comment on individual lines
You do not need to comment on everything you do, but if you make a decision that could be confusion or something could be potentially seen as an error (e.g. because it is not the default way or not the most obvious way) please comment on why you did this. This prevents people from “fixing” stuff that is not broken and maybe breaking things because of this.
## Add tests
Please add tests using mocha and jsdom, to verify & test your changes. Make sure to make your test fail first, so you are sure they work.
Since tests are very important, your PR is going to be failed by coveralls, if you do not include tests.
If something is hard to test, you probably need to refactor it into multiple small functions. This is one of the good effects of testing, it improves your code quality.
Just add a new `.js` file to the `test` folder, or add a test to one of the files that already exist.
## Styleguide
> *While the code does not pass the linking yet, we are working on it. Please ensure your code does pass our linting.*
Take care to maintain the existing coding style. Lint and test your code using `npm test`.
### Keep lines as short as possible (max. 80 characters)
Keeping your lines short makes it much more easy to spot errors and for other developers to scan the code.
Keeping to an 80 character limit makes you think more about how to code something and often forces you to refactor and simplify your code.
Lastly, less character per line, mean less potential merge conflicts.
### Don’t use multiple var declaration (except for-loop)
```javascript
BAD:
var $sortable = $(this), index, placeholder;
Good:
var $sortable = $(this);
var index;
var placeholder;
```
While a little verbose, declaring one variable per line makes the code much more easy to scan.
Additionally this helps when merging PRs.
### Don’t use chaining
```javascript
BAD:
var $item = $(this).attr(‘draggable’, method === ‘enable’);
Good:
var $item = $(this);
$item.attr(‘draggable’, method === ‘enable’);
```
jQuery makes it easy to chain things together, while this can be a nice feature it makes the code less maintainable, harder to read and harder to understand. **Don’t use chaining**.
### jQuery Collections should be prefix with a $
```javascript
var $sortable = $(this);
```
The prefixing of variables that store jQuery collection ensures that developers have an easy time differentiating between jQuery collections and other variables.
### Don’t use else if, try to avoid else
```javascript
// This:
if( a === b){
…
} else if ( a === c){
…
}
// Actually means this:
if( a === b){
…
} else {
if ( a === c){
…
}
}
```
**else if** does not exists in javascript, so do not use it.
If at all possible, also try to refrain from using else.
```javascript
if( a === b){
return …
} else {
return …
}
// Could be refactor to
if( a === b){
return …
}
return …
```
### Reduce parameters (max. 3)
Never use more than 3 parameters, this will keep you from falling into bad habits. If you need complex configuration (which you should try to avoid), use an object.
### Reduce nesting depth (max. 3)
Do not nest to deeply. This will make the code confusing, hard to read and again, make merging hard.
If your code gets to complex, try to refactor parts out into individual functions.
# Roadmap
If you want to help us by working on any of the points below, please let me know and I add you and your branch to the list.
- [ ] clean up & add comments (wip)
- [ ] mocha tests (wip)
- [ ] Refactor & break code into functions (wip)
- [ ] Nesting via drag & drop
- [ ] refactor to have gulp create
- [ ] jQuery version
- [ ] plain js version
- [x] ~~use css framework for examples~~
- [x] ~~make this compatible with~~
- [x] ~~plain js~~
- [x] ~~amd~~
- [x] ~~commonjs~~
# License
Released under the MIT license.