Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

drag-drop-stage-component

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drag-drop-stage-component

A component to "drag'n drop"-enable your projects, maintained and simple, light on dependencies

  • 1.0.35
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
50
increased by1566.67%
Maintainers
1
Weekly downloads
 
Created
Source

About this project

This "stage" component enables the user select elements, drag and drop them, resize them.

A component like this will be useful to the developer building any tool which includes a WYSIWYG.

This project is maintained, has very few dependencies and is used in Silex website builder

Here is a very simple example.

Features

  • move and resize elements
  • supports absolute position as well as elements in the flow
  • multi selection
  • shift + resize will keep proportions
  • shift + move to stay aligned
  • drawing mode, which let the user select multiple elements easily or draw a new element on the stage
  • hooks give you full control over what is selectable, draggable, droppable, resizeable, a drop zone
  • events to be notified of every action of the user
  • scroll when the user moves near the border of the stage, or to show a specific element
  • handle the events outside the iframe (the user can drag an element and release the mouse outside the iframe)
  • sticky elements
  • vote and submit feature requests

Here is a list of features which is the current road map (please vote with :+1:s).

Use

See the online demo and its sources: html here and js here.

The component can be initialized like this, which will make it possible to select, move and resize all the elements marked with the .selectable css class.

// All the div in the iframe
const iframe = document.querySelector('#iframe')
const stage = new Stage(iframe, iframe.contentDocument.querySelectorAll('div'))

The iframe is where you add elements with the .selectable, .draggable, .resizeable, .droppable css classes, which can then be moved and resized.

Your application can catch events and store the new style of the elements after a drop.

stage.on('drop', e => {
	console.log('elements have been moved or resized, store their new styles if you wish', e.elements);
});

By default the elements which can be dragged or moved are those with the CSS classes .selectable,.draggable, .resizeable but you can override this as follow. The .droppable CSS class can be overrided too:

const stage = new Stage(iframe, {
	isSelectable: (el) => el.classList.contains('selectable'),
	isDroppable: (el, selection) => el.classList.contains('droppable'),
})

Build

The build requires nodejs and npm, and it produces these files:

  • pub/stage.js, which you need to include in your project
  • pub/stage.css, which will be included in the iframe to draw the UI
  • pub/demo.html, which is a demo page for you to test the component

Run npm install and npm run build to build these files.

Dependencies

This component only depenency is the redux library.

It uses Typescript to compile to Javscript and less to compile to CSS. Also the unit tests are written with Jest.

Contribute

Please vote for the features which matter to you here.

If you want to contribute code, read this readme for an introduction to the source code. And then you can help fixing the issues found in the code by Code Climat or find things to do in these issues which need to be done.

The source code is written in ES2015 with less and jade.

FAQs

Package last updated on 19 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc