Git Product home page Git Product logo

auto-arrange's Introduction

auto-arrange

Automatically arranges nodes while dragging them.

Context

There is a Context class that represents a space shared by draggable nodes. The Context interface is meant to be the primary externally useful abstraction. Typical usage is demonstrated by index.js.

Relevant steps are:
  • construct a context, providing a method for locating the draggable nodes (getNodes)
  • call the start method on drag start
  • call the move method on drag move
  • call the end method on drag end

Internals

The context class maintains a series of Maps and methods used for repel and revert logic while dragging. The Maps are not exposed/useful externally (with the exception of the positions Map which has an accessor).

The format of the positions map is:

node ==> {
  id: [node identifier],
  rect: {
    width: [width],
    height: [height],
    top: [top],
    left: [left],
    bottom: [bottom],
    right: [right]
  }
}
Extras
  • uses es6 via babel transpilation
  • airbnb linter rule are applied
  • bundle is created via webpack

Known Bugs:

  • the dragging nodes disappear on a page that is scrolled vertically
TODO:
  • add jsdoc
  • write tests
  • remove getNodes as a dependency from attract, repel, and revert actions
  • possibly move actions into Context class directly, eliminating the long argument lists

TO USE:

Shortcut: Just grab bundle.js. Caution, it includes the interact library.

auto-arrange's People

Contributors

eric-smiling avatar

Watchers

James Cloos avatar  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.