silexlabs / drag-drop-stage-component

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

Home Page:http://projects.silexlabs.org/drag-drop-stage-component/pub/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 👍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.

About

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

http://projects.silexlabs.org/drag-drop-stage-component/pub/


Languages

Language:TypeScript 53.5%Language:CSS 17.2%Language:SCSS 15.7%Language:HTML 8.9%Language:JavaScript 4.3%Language:Less 0.2%Language:Pug 0.1%