Dragula-rs

GitHub GitHub Workflow Status

Drag and drop so simple it hurts

Wrapper for the Dragula Javascript library.

Usage

Dragula provides the easiest possible API to make drag and drop a breeze in your applications. ```rust use dragula::*;

let doc = websys::window().unwrap().document().unwrap(); let element = doc.getelementbyid("drag-container").unwrap();

let drake = dragula(&[element]);

```

You can also provide an Options instance to specify behaviour of certain drag-and-drop features. ```rust use dragula::*; use dragula::options::Direction; use web_sys::Element;

//--snip--

let options = Options { iscontainer: Box::new(|el| { Element::from(el).classlist().contains("drag-container") }), direction: Direction::Horizontal, revertonspill: true, ..Options::default() };

let drake = dragula_options(&[element], options);

//--snip--

```

cargo Features