5

React Image Reordering Grid Drag and Drop (Desktop and Mobile)

 1 year ago
source link: https://hackernoon.com/react-image-reordering-grid-drag-and-drop-desktop-and-mobile
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

React Image Reordering Grid Drag and Drop (Desktop and Mobile)

April 25th 2023 New Story
5min
by @antonkrylov322

Anton Krylov

@antonkrylov322

Frontend developer with taste of beer

Read this story in a terminal
Print this story
Read this story w/o Javascript

Too Long; Didn't Read

Full story of my implementation of the DnD feature on mobile devices with examples on codesandbox.
featured image - React Image Reordering Grid Drag and Drop (Desktop and Mobile)
Your browser does not support theaudio element.
Read by Dr. One (en-US)
Audio Presented by

@antonkrylov322

Anton Krylov

Frontend developer with taste of beer


Receive Stories from @antonkrylov322


Credibility

It all started out very simply: I was asked to make it possible for users to trade photos in the gallery. What surprised me when I learned that mobile phone browsers don't have drag & drop (DnD) built in? When I looked at the source, my project was the only one that used DnD. And I decided, for some reason, that my job was similar to the one already done. But it wasn't quite that easy.

React-beautiful-dnd

The previous implementation was for Y-axis DnD, and it doesn’t work well for the grid.

Y axis DnD

But at the moment when I realized this, it was already necessary to implement the feature. And I decided to do it simply, following the example of react-beautiful-dnd-grid. In fact, it's just splitting a one-dimensional array into chunks, and then the work goes on as with many one-dimensional arrays.

A short intro to react-beautiful-dnd

React's beautiful DND consists of several base components.

  • Dropzone: this is the place where the element is dropped; the component itself is implemented through the render children pattern.
  • Draggable is a dragged element; the component itself is implemented through the render children pattern.
  • DragContext: a context for handlers (possibly handle several drop zones, etc.)

Basic usage is with X-axis DnD.

One-dimensional X axis DnD

My implementation was just an extension of this behavior, split images into chunks, then every chunk is a row (which is Dropzone), and every image is draggable. When I handle the onDragEnd event in DragContext, I just map the row (chunk) index and the index in a row to a one-dimensional array index.:

const originalIndex = destinationChunkIndex * maxItems + indexInChunk + (sourceChunkIndex < destinationChunkIndex ? -1 : 0);

N-X axis rows DnD

Everything was implemented, and the feature has already been under the radar for a couple of weeks, but then it was time for a design review, and they tell me that everything is bullshit. Revert it.

In fact, the main problem was that if such a solution looks good with columns, then there are small problems with rows. For example, the fact that photos fly off the screen and, in general, there is no feeling that this is how it should be

React-beautiful-dnd n-rows trouble

If you want, you can play on my playground. It’s possible that such a solution will be suitable for your case.

So I understand that I need a real grid realization that looks like this, so I decided to continue research.

Real grid DnD

Polyfill realization

Next, I implemented the feature on the desktop, and everything was very easy there because of the browser support for DnD, so I thought, why not use a polyfill?

article preview
NPM

mobile-drag-drop

Polyfill for making HTML5 drag and drop possible in all browsers.. Latest version: 3.0.0-rc.0, last published: 6 months ago. Start using mobile-drag-drop in your project by running `npm i mobile-drag-drop`. There are 20 other projects in the npm registry using mobile-drag-drop.

But then a surprise was waiting for me with the fact that the ondragover event was not supported in this polyfill, and I could not swap the pictures when the user moved them without additional implementation or working with it by hand. So I decided to skip this variant to save time.

DnD kit

It would seem that my existence is in vain and that I will never succeed. But the moment of truth came, and I saw a notification about a wonderful library on one of the channels in Telegram.

article preview
DNDKIT

dnd kit – a modern drag and drop toolkit for React

A modular, lightweight, performant, accessible and extensible drag & drop toolkit for React.

I was happy, looking at the size of the library and how beautifully the examples are implemented in the documentation. I immediately went to look at the examples on the playground. In addition to DnD support for grids, the library also supports accessibility and is very customizable.

A short intro to DnD-kit

I don’t want to observe everything, just the things that are needed for understanding my solution to this problem. I will observe SortableContext, useSortable, DragOverlay, and useSensors, but it is an abstraction over primitives. DndContext, useDroppable, useDraggable (familiar words: it looks the same as react-beautiful-dnd but uses hooks instead of the render children pattern). If you want to know about primitives, look at the docs

  • SortableContextprovides information via context that is consumed by the useSortable hook. To be honest, it’s just items and sorting strategy (to understand when it’s needed to reorder items on the screen).
  • useSortableHook is an abstraction that composes the useDroppable and useDraggable hooks. In my case, I can drop everything everywhere within my image container, and it should be reordered. So here, every rectangle is a place where we can drop an image.
  • DragOverlayis a great thing for UX and animations. In my case, it shows the place where I will drop an image.
  • useSensorshook for working with an abstraction to detect different input methods in order to initiate drag operations, respond to movement, and end or cancel the operation. In fact, it’s a helper for event handling (touch, keyboard, or mouse).

Real-grid DnD implementation

This example was perfect for me, so I could look at the sources.

However, it was long and difficult to mess with the sources, so I went back to the board.

Step 1

According to the docs https://docs.dndkit.com/presets/sortable I made a small example with pictures.

Step 2

Then I realized that the UX without delay is a so-so story and added activation constraints.

Step 3

However, it just didn't take off, and a context menu popped up in Safari.

So I added user-select: none

user-select trouble

Step 4

Then I needed DragOverlay in order for the user to understand where his picture would be.

Step 5

Next, I decided that it's worth trying to describe how, in the examples, to make the component sortable so that you can reuse abstraction instead of primitives. It was quite hard, but right now it’s better than in examples.

Conclusion

I am very glad that you have come this far with me. I hope I was able to save you time (it was not an easy but interesting way). I think the future belongs to libraries like dnd-kit, with their small size, good tree-shaking, and customization. I think libraries like react-dnd and react-beautiful-dnd will become a thing of the past. Thank you for your time!

Useful links

All sandboxes, step by step


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK