Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
414 views
in Technique[技术] by (71.8m points)

javascript - React Drag and Drop plugin suggestion

I'm working on with a working model like this:

enter image description here

enter image description here

So here, the left side is a simple list which containse list items. 1. This is not droppable, draggable only 2. After drag, this list remains same all the time.

On the right side, the dragged item will be dropped here.

  1. Once the user dragged an item from left side, the other side/ right side should indicate a placeholders to user where they can drop.
  2. All the dropped items on the right side can be swappable within right side.
  3. Right side area should contain like bootstrap row, column functionality.

I have to achieve something similar to this https://react-email-editor-demo.netlify.com/

Already, I gone through fre react plugins like react dnd and react -beautiful-dnd. I don't get an idea like whether above points are achievable by using these two plugins.

After searched many things,In react-beautiful-dnd, we can't add custom placeholders.

Any help on this, would be grateful.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here I created for you a small example that tries to replicate the drag in a placeholder behavior from the link you shared above.

Keep in mind that you have total freedom to create how many droppable targets as you want and make them accept different types of items, based on what you specify in accept array of useDrop hook.

I hope it helps.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...