How to Drag Drop Material-UI Cards

0 votes
Can i know How to Drag/Drop Material-UI Cards
2 days ago in Node-js by Nidhi
• 13,600 points
10 views

1 answer to this question.

0 votes

You can use the @dnd-kit/core library, which is a lightweight and flexible solution for drag-and-drop interactions. Below is a precise example of how to implement this:

Steps and Code Example

Install Dependencies:

Ensure you have @dnd-kit/core installed along with Material-UI:

npm install @dnd-kit/core @mui/material @emotion/react @emotion/styled

Basic Implementation:

Use DndContext, Draggable, and Droppable from @dnd-kit/core to make MUI Cards draggable and droppable.

import React, { useState } from 'react';

import { DndContext, closestCenter } from '@dnd-kit/core';

import { SortableContext, useSortable, arrayMove, verticalListSortingStrategy } from '@dnd-kit/sortable';

import { CSS } from '@dnd-kit/utilities';

import { Card, CardContent, Typography } from '@mui/material';

const SortableCard = ({ id, title }) => {

  const { attributes, listeners, setNodeRef, transform, transition } = useSortable({ id });

  const style = {

    transform: CSS.Transform.toString(transform),

    transition,

    marginBottom: '8px',

  };

  return (

    <div ref={setNodeRef} style={style} {...attributes} {...listeners}>

      <Card>

        <CardContent>

          <Typography>{title}</Typography>

        </CardContent>

      </Card>

    </div>

  );

};


// Main Component

const App = () => {

  const [items, setItems] = useState([

    { id: '1', title: 'Card 1' },

    { id: '2', title: 'Card 2' },

    { id: '3', title: 'Card 3' },

  ]);

  const handleDragEnd = (event) => {

    const { active, over } = event;

    if (active.id !== over.id) {

      const oldIndex = items.findIndex((item) => item.id === active.id);

      const newIndex = items.findIndex((item) => item.id === over.id);

      setItems((items) => arrayMove(items, oldIndex, newIndex));

    }

  };

  return (

    <DndContext collisionDetection={closestCenter} onDragEnd={handleDragEnd}>

      <SortableContext items={items.map((item) => item.id)} strategy={verticalListSortingStrategy}>

        {items.map((item) => (

          <SortableCard key={item.id} id={item.id} title={item.title} />

        ))}

      </SortableContext>

    </DndContext>

  );

};

export default App;

answered 20 hours ago by anonymous

Related Questions In Node-js

0 votes
1 answer
0 votes
1 answer

How to read environment variables in Node.js?

Hello @kartik, Yes,you can read environment variables in Node.js ...READ MORE

answered Jul 8, 2020 in Node-js by Niroj
• 82,840 points
1,765 views
0 votes
1 answer

How to write files in Node.js?

Hello @kartik, Currently there are three ways to ...READ MORE

answered Jul 8, 2020 in Node-js by Niroj
• 82,840 points
1,023 views
0 votes
1 answer

How to get GET (query string) variables in Express.js on Node.js?

Hello @kartik, Since you've mentioned Express.js in your ...READ MORE

answered Jul 8, 2020 in Node-js by Niroj
• 82,840 points
3,406 views
0 votes
1 answer

How can I implement user authentication with JWT in an Express.js app?

In an Express.js application, you can use ...READ MORE

answered Dec 17, 2024 in Java-Script by Navya
131 views
0 votes
1 answer

Is it possible to handle React events using the Chrome extension?

Yes, it's possible to handle React events ...READ MORE

answered Feb 22 in Node-js by Kavya
59 views
0 votes
1 answer

How can I use all the React events with Material-UI components?

The best approach is to leverage the ...READ MORE

answered Feb 22 in Node-js by Kavya
62 views
0 votes
1 answer

Why won't React events fire, or what could prevent them from firing?

If React events are not firing, several ...READ MORE

answered Feb 22 in Node-js by Kavya
67 views
0 votes
1 answer

How to install popper.js in npm?

To install Popper.js using npm, follow these ...READ MORE

answered Dec 24, 2024 in Node-js by Navya
113 views
0 votes
1 answer

How to add tooltip to div in react?

You can utilize React's state management to ...READ MORE

answered Dec 24, 2024 in Node-js by Navya
95 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP