国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

使用React DND 完成一個簡單的卡片排序功能

edgardeng / 1090人閱讀

摘要:簡介在公司初學其中一個要求讓我實現拖拽排序的功能完成之后記錄一下實現方法,采用和來實現這個功能。一環境搭建首先,使用腳手架創建一個最基本的項目。

簡介

在公司初學react,其中一個要求讓我實現拖拽排序的功能,完成之后記錄一下實現方法,采用antd和reactDND來實現這個功能。

一、環境搭建

首先,使用 create-react-app 腳手架創建一個最基本的react項目。

npm install -g create-react-app
create-react-app my-app
cd my-app

OK,構建好了react項目,然后我們引入antd,和react-dnd

$ yarn add antd
$ yarn add react-dnd
$ yarn add react-dnd-html5-backend

引用完antd后可以按照antd官網上的方法完成按需加載。

二、功能實現

我們先使用antd寫出一個簡單的卡片列表,修改項目目錄的APP.js和App.css文件,新建一個文件CardItem.js

//App.js

import React, { Component } from "react";
import CardItem from "./CardItem"
import "./App.css";

const CardList = [{ //定義卡片內容
    title:"first Card",
    id:1,
    content:"this is first Card"
  },{
    title:"second Card",
    id:2,
    content:"this is second Card"
  },{
    title:"Third Card",
    id:3,
    content:"this is Third Card"
  }
];
class App extends Component {
  state = {
    CardList
  }; 
  render() {
    return (
        
{CardList.map((item,index) => { return( ) })}
); } } export default App; //App.css .card{ display: flex; margin: 50px; } .card div{ margin-right: 20px; } //CardItem.js import React, { Component } from "react"; import {Card} from "antd" class CardItem extends Component{ render(){ return(

{this.props.content}

) } } export default CardItem

好了,卡片編寫完成了,現在運行一下我們的項目,看一下效果

$ npm start or yarn start

OK,編寫完成,我們現在要做的就是使用react-dnd完成卡片的拖拽排序,使得firstCard,secondCard,thirdCard可以隨意的交換。

react-dnd中提供了DragDropContext,DragSource,DropTarget 3種API;

DragDropContext 用于包裝拖拽根組件,DragSourceDropTarget 都需要包裹在DragDropContex

DropTarget 用于包裝你需要拖動的組件,使組件能夠被拖拽

DragSource 用于包裝接收拖拽元素的組件,使組件能夠放置

理解了這些API的作用,一個卡片排序的構建思路大體就浮現出來了,怎么樣實現一個卡片排序,其實很簡單,就是把卡片列表中的每一個卡片都設置為DropTargetDragSource,最后在拖拽結束的時候進行卡片之間的重排序,完成這一功能的實現。下面我們就來一步一步的實現它。

首先設定DragDropContext,在App.js中引入 react-dndreact-dnd-html5-backend(先npm install這個插件)

//App.js

import React, { Component } from "react";
import CardItem from "./CardItem"
+ import {DragDropContext} from "react-dnd"
+ import HTML5Backend from "react-dnd-html5-backend"
import "./App.css";

/*..
..*/

- export default App;
+ export default DragDropContext(HTML5Backend)(App);

好了,現在被App.js所包裹的子組件都可以使用DropTargetDragSource了,我們現在在子組件CardItem中設定react-dnd使得卡片現在能夠有拖動的效果。

//CardItem.js

import React, { Component } from "react";
import {Card} from "antd"
+ import { //引入react-dnd
    DragSource,
    DropTarget,
} from "react-dnd"


const Types = { // 設定類型,只有DragSource和DropTarget的類型相同時,才能完成拖拽和放置
    CARD: "CARD"
};

//DragSource相關設定
const CardSource = {  //設定DragSource的拖拽事件方法
    beginDrag(props,monitor,component){ //拖拽開始時觸發的事件,必須,返回props相關對象
        return {
            index:props.index
        }
    },
    endDrag(props, monitor, component){
      //拖拽結束時的事件,可選
    },
    canDrag(props, monitor){
      //是否可以拖拽的事件。可選
    },
    isDragging(props, monitor){
      // 拖拽時觸發的事件,可選
    }
};

function collect(connect,monitor) { //通過這個函數可以通過this.props獲取這個函數所返回的所有屬性
    return{
        connectDragSource:connect.dragSource(),
        isDragging:monitor.isDragging()
    }
}

//DropTarget相關設定
const CardTarget = {
    drop(props, monitor, component){ //組件放下時觸發的事件
        //...
    },
    canDrop(props,monitor){ //組件可以被放置時觸發的事件,可選
        //...
    },
    hover(props,monitor,component){ //組件在target上方時觸發的事件,可選
        //...
    },
    
};

function collect1(connect,monitor) {//同DragSource的collect函數
    return{
        connectDropTarget:connect.dropTarget(),
        isOver:monitor.isOver(), //source是否在Target上方
        isOverCurrent: monitor.isOver({ shallow: true }), 
        canDrop: monitor.canDrop(),//能否被放置
        itemType: monitor.getItemType(),//獲取拖拽組件type
    }
}

class CardItem extends Component{

    render(){
        const { isDragging, connectDragSource, connectDropTarget} = this.props;
        let opacity = isDragging ? 0.1 : 1; //當被拖拽時呈現透明效果

        return connectDragSource( //使用DragSource 和 DropTarget
            connectDropTarget( 

{this.props.content}

) ) } } // 使組件連接DragSource和DropTarget let flow = require("lodash.flow"); export default flow( DragSource(Types.CARD,CardSource,collect), DropTarget(Types.CARD,CardTarget,collect1) )(CardItem)

最后這個連接方法我參考了 reactDND官網 的說明,你可以去 lodash.flow的官網 進行查看并下載。
當然你也可以選擇構造器的方法進行引用,如@DragSource(type, spec, collect)@DropTarget(types, spec, collect).

Even if you don"t plan to use decorators, the partial application can
still be handy, because you can combine several DragSource and
DropTarget declarations in JavaScript using a functional composition
helper such as _.flow. With decorators, you can just stack the
decorators to achieve the same effect.
import { DragSource, DropTarget } from "react-dnd";
import flow from "lodash/flow";

class YourComponent {
  render() {
    const { connectDragSource, connectDropTarget } = this.props
    return connectDragSource(connectDropTarget(
      /* ... */
    ))
  }
}

export default flow(
  DragSource(/* ... */),
  DropTarget(/* ... */)
)(YourComponent);

現在我們已經完成了一個拖拽效果的實現,現在我們來看一下效果

可以很明顯的看到拖拽帶來的效果,接下來我們要完成拖拽放置后的排序函數。
我們將排序函數放在App.js當中,在CardItem.js中的CardTarget構造方法中的hover函數中進行調用,接下來看具體的實現方法.

//CardItem.js

const CardTarget = {
    hover(props,monitor,component){
        if(!component) return null; //異常處理判斷
        const dragIndex = monitor.getItem().index;//拖拽目標的Index
        const hoverIndex = props.index; //放置目標Index
        if(dragIndex === hoverIndex) return null;// 如果拖拽目標和放置目標相同的話,停止執行
        
        //如果不做以下處理,則卡片移動到另一個卡片上就會進行交換,下方處理使得卡片能夠在跨過中心線后進行交換.
        const hoverBoundingRect = (findDOMNode(component)).getBoundingClientRect();//獲取卡片的邊框矩形
        const hoverMiddleX = (hoverBoundingRect.right - hoverBoundingRect.left) / 2;//獲取X軸中點
        const clientOffset = monitor.getClientOffset();//獲取拖拽目標偏移量
        const hoverClientX = (clientOffset).x - hoverBoundingRect.left;
        if (dragIndex < hoverIndex && hoverClientX < hoverMiddleX) { // 從前往后放置
            return null
        }
        if (dragIndex > hoverIndex && hoverClientX > hoverMiddleX) { // 從后往前放置
            return null
        }
        props.DND(dragIndex,hoverIndex); //調用App.js中方法完成交換
        monitor.getItem().index = hoverIndex; //重新賦值index,否則會出現無限交換情況
    }
}
//App.js

    handleDND = (dragIndex,hoverIndex) => {
        let CardList = this.state.CardList;
        let tmp = CardList[dragIndex] //臨時儲存文件
        CardList.splice(dragIndex,1) //移除拖拽項
        CardList.splice(hoverIndex,0,tmp) //插入放置項
        this.setState({
            CardList
        })
    };
    
    
    /* ...
           */
           
    //添加傳遞參數傳遞函數
    

好了,現在我們已經完成了一個卡片排序功能的小demo,讓我們來看一下效果吧!

END

本人初學前端不久,剛接觸react相關,這篇文章也是用于記錄一下自己工作時用到的一些小功能,本文參考了

強大的拖拽組件:React DnD 的使用

和 reactDND 官網上的相關例子,一些更復雜的情況大家也可以去reactDND的官網上查看.

源代碼地址:https://github.com/wzb0709/Ca...

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/108662.html

相關文章

  • 使用 Drag and Drop 給Web應用提升交互體驗

    摘要:注意點在鼠標操作拖放期間,有一些事件可能觸發多次,比如和。可拖拽元素,建議使用,設定可拖拽元素的鼠標游標,提升交互。在中使用拖拽中使用可以直接綁定到組件上。 什么是 Drag and Drop (拖放)? 簡單來說,HTML5 提供了 Drag and Drop API,允許用戶用鼠標選中一個可拖動元素,移動鼠標拖放到一個可放置到元素的過程。 我相信每個人都或多或少接觸過拖放,比如瀏覽...

    legendmohe 評論0 收藏0
  • 頁面搭建工具總結及架構思考

    摘要:在初步完成了在線流程圖編輯工具之后又接到了在線搭建頁面工具的需求剛開始其實并不想接項目因為從歷史以及現實原因來看個性化及動態渲染都是很難解決的痛點各種頁面搭建工具的不溫不火早已說明了這條路并沒有這么好走但從另一個方面來說既然有了這樣的需求那 在初步完成了在線流程圖編輯工具之后,又接到了在線搭建頁面工具的需求,剛開始其實并不想接項目,因為從歷史以及現實原因來看,個性化及動態渲染都是很難解決的痛...

    William_Sang 評論0 收藏0
  • React-sortable-hoc 結合 hook 實現 Draggin 和 Droppin

    摘要:啟動項目教程最終的目的是構建一個帶有趣的應用程序來自,可以在視口周圍拖動。創建組件,添加樣式和數據為簡單起見,我們將在文件中編寫所有樣式。可以看出,就是在當前的外層包裹我們所需要實現的功能。現在已經知道如何在項目中實現拖放 翻譯:https://css-tricks.com/draggi... React 社區提供了許多的庫來實現拖放的功能,例如 react-dnd, react-b...

    molyzzx 評論0 收藏0
  • 寫了一個簡單、靈活React標簽組件

    摘要:最近的項目里需要實現一個標簽組件,內部標簽可任意拖動排序。網上搜了一圈發現幾乎沒有現成的基于的組件能很好的滿足需求。 最近的項目里需要實現一個標簽組件,內部標簽可任意拖動排序。網上搜了一圈發現幾乎沒有現成的基于react的組件能很好的滿足需求。 較為知名的是react-dnd,然而它似乎只支持把一個元素移到固定的位置,我需要的是一個標簽可以移動到任意位置的兩個標簽之間(每個標簽長度不固...

    arashicage 評論0 收藏0
  • React-dnd實現拖拽,最簡單代碼,直接可以跑

    摘要:不多說,直接上代碼需要版本貌似與方法有關類似的高階組件包裹被拖的元素高階組件包裹被釋放的元素這個庫是必須的,類似于的合成事件解決瀏覽器差異,抽象事件操作為可以處理的 不多說,直接上代碼 react-dnd 需要react版本 > 16.6 ,貌似與react.memo方法有關 import React from react // DragDropContext 類似React的Co...

    xiaokai 評論0 收藏0

發表評論

0條評論

edgardeng

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<