December 2019
Intermediate to advanced
474 pages
10h 3m
English
One of the things that usually gives project management boards great user interaction is the ability to drag and drop tickets from one lane into another. This is something that can easily be accomplished using the HTML5 Drag and Drop API, which is available in every modern browser, including IE11.
The HTML5 Drag and Drop API makes it possible for us to drag and drop elements across our project management board. To make this possible, it uses drag events. onDragStart, onDragOver, and onDrop will be used for this application. These events should be placed on both the Lane and the Ticket components. Let's get started:
First, we need to make the Board component a class component instead of a functional component. We're ...