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

dragon-drop

v1.0.6

Published

Drag and Drop for AngularJS, a fork of Brian Ford's module.

Downloads

10

Readme

angular-dragon-drop

"Drag and drop" directives for AngularJS. Work in progress.

Install

bower install dragon-drop

or

npm install dragon-drop

Usage

  1. Include the dist/dragon-drop.min.js script provided by this component into your app.
  2. Add dragon-drop as a module dependency to your app.

For example:

<script src="dist/dragon-drop.min.js"></script>
<script>
    angular.module('ExampleApp', ['dragon-drop']).
            controller('MainCtrl', function ($scope, $log) {
            });
</script>

Repeats a template inside the dragon over a list.

<div data-dragon="item in list">
  {{item.name}}
</div>
<div data-dragon="item in otherList">
  {{item.name}}
</div>

You can drag from one dragon onto another, and the models will be updated accordingly.

It also works on objects:

<div data-dragon="(key, value) in list">
  {{key}}: {{value}}
</div>
<div data-dragon="(key, value) in otherList">
  {{key}}: {{value}}
</div>

Config

This is not a kitchen sink every-option-you-can-think-of module. This is a starting point. Configure by forking and editing the code according to your needs. Send a PR if you think your additions are widely useful. :)

data-dragon-duplicate

Instead of removing values from the array this dragon is bound to, the values are duplicated. Add the data-dragon-duplicate attribute to an element with the data-dragon attribute to get the behavior.

Example:

<h2>These get copied</h2>
<div data-dragon="item in list" data-dragon-duplicate>
  {{item.name}}
</div>
<h2>These get moved</h2>
<div data-dragon="item in otherList">
  {{item.name}}
</div>

data-dragon-accepts

Makes the dragon only accepts items that pass the truth test function given by this argument. Add the data-dragon-accepts attribute to an element to get the behavior.

Example:

<h2>You can only put shiny objects here</h2>h2>
<div data-dragon="item in list" data-dragon-accepts="shinyThings">
  {{item.name}}
</div>
<h2>This takes anything</h2>
<div data-dragon="item in otherList">
  {{item.name}}
</div>
// in a Ctrl...
$scope.shinyThings = function (item) {
  return !!item.shiny;
};

data-dragon-eliminate

Makes it so that the item is eliminated if it is not dropped inside of another dragon. Add the data-dragon-eliminate attribute to an element to get the behavior.

Example:

<h2>These get copied</h2>
<div data-dragon="item in list" data-dragon-duplicate>
  {{item.name}}
</div>
<h2>These get moved or eliminated</h2>
<div data-dragon="item in otherList" data-dragon-eliminate>
  {{item.name}}
</div>

data-dragon-base / data-dragon-container

Makes it so the drop zone and template container can be separated. Add data-dragon-base to the dragon and data-dragon-container to any child of the dragon.

Example:

<div data-dragon="item in list">
  {{item.name}}
</div>
<h2>Here they are separate so you can drop anywhere under the base</h2>
<div data-dragon="item in otherList" data-dragon-base>
  <h1>Drop On Me</h1>
  <div data-dragon-container>
    {{item.name}}
  </div>
</div>

Example

See example.html.

License

MIT