Giter Site home page Giter Site logo

nishant8bits / angular-dragdrop Goto Github PK

View Code? Open in Web Editor NEW

This project forked from codef0rmer/angular-dragdrop

1.0 1.0 0.0 1.28 MB

Implementing jQueryUI Drag and Drop functionality in AngularJS (with Animation) is easier than ever

Home Page: http://codef0rmer.github.com/angular-dragdrop/#/

License: MIT License

HTML 73.60% JavaScript 26.40%

angular-dragdrop's Introduction

#Drag and Drop for AngularJS (with Animation) Build Status


Implementing jQueryUI Drag and Drop functionality in AngularJS is easier than ever which is a wrapper for jQueryUI draggable/droppable components.

###v1.0.9 - breaking change

  1. Draggable and Droppable will not be deep copied by default unlike previous versions. Use deepCopy option if prototypical inheritance is not required.
  2. Callbacks will not be executed forcefully within the context of scope which requires an extra digest loop for each event (start, stop, over, out, etc), especially drag that fires many times and running a digest loop is performance intensive in such scenario. Call scope.$apply() within callback, if needed.

##How to Use

  • bower install angular-dragdrop (or sudo bower install angular-dragdrop --allow-root)

  • Reference angular-dragdrop.min.js in your application as:

<script src="components/angular-dragdrop/src/angular-dragdrop.min.js"></script>
 * Resolve the dependency in the main module of your application as:

angular.module('myApp', ['ngDragDrop'])


 * Drag anything as:

So you think you can drag

* Finally, check out [the cool demos](http://codef0rmer.github.io/angular-dragdrop/#/)

##Angular Draggable options
* **jqyoui-draggable** – A custom angular attribute to make any element draggable. It holds more settings such as:
   * **index** – number – $index of an item of a model (if it is an array) associated with it
   * **placeholder** – boolean/string – If true, the place will be occupied even though a dragggable is moved/dropped somewhere else. If 'keep' is supplied, the original item won't be removed from the draggable.
   * **animate** – boolean – If true, draggable will be animated towards droppable when dropped. If multiple is not set to true on droppable then its draggable will swap its position.
   * **onStart** – string – callback method to be invoked (has to be defined in a controller) when dragging starts
   * **onStop** – string – callback method to be invoked when dragging stops
   * **onDrag** – string – callback method to be invoked while the mouse is moved during the dragging
   * **applyFilter** - string - applies AngularJS $filter on the list before swapping items. Only applicable, if ngRepeat has any filter (such as orderBy, limitTo) associated with it.
   * **containment** – string - position/offset. Offset by default. This forces to use jQuery.position() or jQuery.offset() to calculate proper position with respect to parent element or document respectively. 
   * **deepCopy** - boolean (optional) – If true, makes a deep copy of draggable that looses prototypical inheritance.
   * **beforeDrop** – promise (optional) – Ask for confirmation before swapping. Works with both window.confirm and custom popup. 
* **data-drag** – boolean – If true, element can be draggable. Disabled otherwise.
* **data-jqyoui-options** – object – should hold all the valid options supported by [jQueryUI Draggable](http://api.jqueryui.com/draggable)
* **ng-model** – string – An angular model defined in a controller. Should be a JS array or object

##Angular Droppable options
* **jqyoui-droppable** – A custom angular attribute to make any element droppable. It holds more settings such as:
   * **index** – number – $index of an item of a model (if it is an array) associated with it
   * **multiple** – boolean – Requires to be true only if animate is set to true for draggable and to avoid swapping.
   * **stack** – boolean – Requires if animate is set to true on draggable and if multiple draggables positioned one below the other
   * **onDrop** – string – callback method to be invoked a draggable is dropped into the droppable
   * **onOver** – string – callback method to be invoked when an accepted draggable is dragged over the droppable
   * **onOut** – string – callback method to be invoked when an accepted draggable is dragged out of the droppable
   * **applyFilter** - string - requires if both droppable as well as draggable share the same ngModel.
   * **containment** – string - position/offset. Offset by default. This forces to use jQuery.position() or jQuery.offset() to calculate proper position with respect to parent element or document respectively. 
   * **deepCopy** – boolean (optional) – If true, makes a deep copy of droppable that looses prototypical inheritance.
   * **beforeDrop** – promise (optional) – Ask for confirmation before dropping. Works with both window.confirm and custom popup. 
* **data-drop** – boolean – If true, element can be droppable. Disabled otherwise.
* **data-jqyoui-options** – object – should hold all the valid options supported by [jQueryUI Droppable](http://api.jqueryui.com/droppable)
* **ng-model** – string – An angular model defined in a controller. Should be a JS array or object.

##How to Contribute
* $ git clone https://github.com/codef0rmer/angular-dragdrop.git
* $ cd angular-dragdrop
* $ npm install --quiet -g karma-cli bower
* $ sudo npm install
* $ sudo bower install --force-latest
* $ npm test

##Demo
Demo is [here](http://codef0rmer.github.io/angular-dragdrop/#/)


###v1.0.5 - breaking change
Do not pass evaluated expressions in callbacks. For example, 
####Before:
{{item.title}}
``` ####After: ```
{{item.title}}
```

Support

If you're having problems with using the project, use the support forum at CodersClan.

angular-dragdrop's People

Contributors

bbonamin avatar bipinshashi avatar codef0rmerz avatar domir avatar domoritz avatar finalclass avatar grom-s avatar osadler avatar robinboehm avatar snappedtogrid avatar stiang avatar tommybananas avatar tp7 avatar urigo avatar wesleycho avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.