当前位置:   article > 正文

React低代码开发——React Dnd_react dnd官网

react dnd官网

React Dnd

React DnD是一组React实用程序,可帮助您构建复杂的拖放接口,同时保持组件解耦。它非常适合Trello和Storify等应用程序,在这些应用程序中,拖动在应用程序的不同部分之间传输数据,组件会根据拖放事件更改其外观和应用程序状态。

拖放本质上是有状态的。要么正在进行拖动操作,要么没有。要么有当前类型和当前项,要么没有。

React DnD通过称为监视器的内部状态存储上的几个微小包装器将此状态暴露给您的组件。监视器允许您更新组件的道具,以响应拖放状态的更改。
使用:

npm install react-dnd react-dnd-html5-backend
  • 1

官网地址:https://react-dnd.github.io/react-dnd/about

简单案例:

本案例使用React技术环境写的,
将box1中可拖拽的元素拖放至box2,box2中也可以拖至box1中。

在这里插入图片描述
在实际开发中 Draggable 组件和 Droppable 组件是在分开文件中,这里只是简单案例,为方便都在一个文件中。

import React from 'react'; 
import { DndProvider, useDrag, useDrop } from 'react-dnd';
import { HTML5Backend } from 'react-dnd-html5-backend';



const Code: React.FC = () => {
	
	// 设置动态拖拽数据
     const [box1, setBox1] = React.useState([
        { id: 1 }, { id: 2 }, { id: 3 },
    ])
    const [box2, setBox2] = React.useState([{ id: 1 }]);
    
    // 可拖拽的元素
    function Draggable({ id }) {
        const [{ isDragging }, drag] = useDrag(() => ({
            type: "card",
            item: { id },
            collect: (monitor) => ({
                isDragging: monitor.isDragging(),
            }),

        }))
        if (isDragging) {
            return <div ref={drag}></div>
        }
        return <div id='drap' style={{ "margin": "8px", "width": "50px", "background": "rgb(118 208 235)" ,"display":"inline-block"}} ref={drag}>{`Drag ${id}`}</div>
    }
	
	// 存放拖拽元素的容器
    function Droppable({ handleDrop, state, text ,children}) {
        const [{ isDver }, drop] = useDrop(() => ({
            accept: "card", // 接收的类型,和useDrag中type对应
            collect: (monitor) => ({
                isDver: monitor.isOver(),
            }),
            drop: (item: any) => {
                handleDrop(item)
                console.log(item)
            }
        }), [state])
        return <div id='drop' ref={drop} style={{ "padding": "10px", "width": "320px", "background": "#fff" }}>
            {text} <br/>
            {children}
            </div>
    }

    const handleDrop1 = (item) =>{
        // 删除box2 
        const arrCopy= [...box2];
        const index = arrCopy.findIndex((each)=>each.id == item.id)
        const copyItem = arrCopy[index];
        arrCopy.splice(index,1);
        setBox2(arrCopy);
        // 在box1中添加
        setBox1((prev) => [...prev,copyItem]);
    }
    const handleDrop2 = (item) =>{
        // 删除box2 
        const arrCopy= [...box1];
        const index = arrCopy.findIndex((each)=>each.id == item.id)
        const copyItem = arrCopy[index];
        arrCopy.splice(index,1);
        setBox1(arrCopy);
        // 在box1中添加
        setBox2((prev) => [...prev,copyItem]);
    }
    return (
        <DndProvider backend={HTML5Backend}>
            {/* <Draggable id={1}></Draggable>
            <Draggable id={2}></Draggable> */}
            <Droppable text={"box1"} state={box1} handleDrop={handleDrop1}>
                {box1.map(drag => <Draggable key={drag.id} id={drag.id} />)}
            </Droppable>
            <Droppable text={"box2"} state={box2} handleDrop={handleDrop2}>
                {box2.map(drag => <Draggable key={drag.id} id={drag.id} />)}
            </Droppable>
        </DndProvider>

    )
};


export default Code;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/572777
推荐阅读
相关标签
  

闽ICP备14008679号