当前位置: 首页 > wzjs >正文

电子商务网站业务流程网站怎么做是满屏

电子商务网站业务流程,网站怎么做是满屏,网站制作公司有没有版权,济南网站备案流程使用dnd-kit实现拖拽排序 效果展示 实现源码 安装依赖 dad-kit github地址 yarn add dnd-kit/core dnd-kit/sortable dnd-kit/utilities dnd-kit/modifiers这几个包的作用 dnd-kit/core:核心库,提供基本的拖拽功能。dnd-kit/sortable:扩…

使用dnd-kit实现拖拽排序

效果展示

gifimg4

实现源码

安装依赖

dad-kit github地址

yarn add @dnd-kit/core @dnd-kit/sortable @dnd-kit/utilities @dnd-kit/modifiers

这几个包的作用

  • @dnd-kit/core:核心库,提供基本的拖拽功能。
  • @dnd-kit/sortable:扩展库,提供排序功能和工具。
  • @dnd-kit/modifiers:修饰库,提供拖拽行为的限制和修饰功能。
  • @dnd-kit/utilities:工具库,提供 CSS 和实用工具函数。上述演示的平滑移动的样式就是来源于这个包。

实现代码

最外层使用 DndContext 组件,然后内层使用 SortableContext,并且传入列表信息,SortableContext 内层正常显示循环出来的DOM元素

import React, { ChangeEvent, FC, useState } from 'react'
import useGetComponentInfo from '../../hooks/useGetComponentInfo'
import { Button, Flex, Input, message, Space } from 'antd'
import style from './Layerlib.module.scss'
import { EyeInvisibleOutlined, LockOutlined, DragOutlined } from '@ant-design/icons'
import classNames from 'classnames'
import { useDispatch } from 'react-redux'
import {changeSelectedId,changeComponentTitle,componentInfoType,hiddenComponent,toogleLock,reorderComponents
} from '../../store/componentsReducer'import type { DragEndEvent, DragMoveEvent } from '@dnd-kit/core'
import { DndContext } from '@dnd-kit/core'
import { arrayMove, SortableContext, rectSortingStrategy, useSortable } from '@dnd-kit/sortable'
import { restrictToParentElement } from '@dnd-kit/modifiers'
import { CSS } from '@dnd-kit/utilities'export default function Layerlib() {// 记录当前正在修改的idconst [changingId, setChangingId] = useState('')const { componentsList, selectedId } = useGetComponentInfo()const dispatch = useDispatch()// 点击组件function handleClick(component: componentInfoType) {const { _id, isHidden } = componentif (isHidden) {message.error('不能选中被隐藏的组件')return}if (_id !== selectedId) {dispatch(changeSelectedId(_id))setChangingId('')} else {setChangingId(_id)}}// 修改组件标题function handleChangeTitle(event: ChangeEvent<HTMLInputElement>, id: string) {const value = event.target.value.trim()if (!value) returndispatch(changeComponentTitle({ _id: id, title: value }))}// 切换组件隐藏和显示function handleToggleHidden(component: componentInfoType) {const { _id, isHidden } = componentdispatch(hiddenComponent({ _id, isHidden: !isHidden }))}// 切换锁定function handleToggleLock(component: componentInfoType) {const { _id } = componentdispatch(toogleLock({ _id }))}// 拖动排序const getMoveIndex = (array: componentInfoType[], dragItem: DragMoveEvent) => {const { active, over } = dragItemconst activeIndex = array.findIndex(item => item._id === active.id)const overIndex = array.findIndex(item => item._id === over?.id)// 处理未找到索引的情况return {activeIndex: activeIndex !== -1 ? activeIndex : 0,overIndex: overIndex !== -1 ? overIndex : activeIndex}}// 拖动结束const dragEndEvent = (dragItem: DragEndEvent) => {const { active, over } = dragItemif (!active || !over) return // 处理边界情况const moveDataList = [...componentsList]const { activeIndex, overIndex } = getMoveIndex(moveDataList, dragItem)if (activeIndex !== overIndex) {const newDataList = arrayMove(moveDataList, activeIndex, overIndex)// 关键:更新一下最新的组件数据dispatch(reorderComponents(newDataList))}}type DraggableItemProps = {component: componentInfoType}// 拖拽的子组件const DraggableItem: FC<DraggableItemProps> = ({ component }) => {const { _id, isLock, isHidden } = componentconst { setNodeRef, attributes, listeners, transform, transition } = useSortable({id: _id,transition: {duration: 500,easing: 'cubic-bezier(0.25, 1, 0.5, 1)'}})const styles = {transform: CSS.Transform.toString(transform),transition}// 动态样式const componentClass = classNames({[style.check]: _id === selectedId,[style.hidden]: isHidden})return (<Flexkey={_id}align="center"justify="space-between"gap={10}className={style.layerItem}ref={setNodeRef}style={styles}><div className={componentClass} style={{ flex: 1 }} onClick={() => handleClick(component)}>{changingId === _id ? (<Inputvalue={component.title}autoFocusonChange={event => handleChangeTitle(event, component._id)}onPressEnter={() => setChangingId('')}onBlur={() => setChangingId('')}/>) : (component.title)}</div><Space>{/* 拖动排序 */}<Buttonsize="small"shape="circle"icon={<DragOutlined />}type="text"style={{cursor: 'move'}}{...attributes}{...listeners}/><Buttonsize="small"shape="circle"icon={<EyeInvisibleOutlined />}type={isHidden ? 'primary' : 'text'}onClick={() => handleToggleHidden(component)}/><Buttonsize="small"shape="circle"icon={<LockOutlined />}type={isLock ? 'primary' : 'text'}onClick={() => handleToggleLock(component)}/></Space></Flex>)}return (<DndContext onDragEnd={dragEndEvent} modifiers={[restrictToParentElement]}><SortableContext items={componentsList.map(item => item._id)} strategy={rectSortingStrategy}><div className="drag-container">{componentsList.map(component => (<DraggableItem key={component._id} component={component} />))}</div></SortableContext></DndContext>)
}

代码解释

modifiers

标识符,传入一个标识符数组以限制在父组件进行拖曳的行为。我们代码中使用 restrictToParentElement,限制在父元素内的标识符,主要可选的一些标识符如下:

  • restrictToParentElement:限制在父元素内。
  • restrictToFirstScrollableAncestor:限制在第一个可滚动祖先元素。
  • restrictToVerticalAxis:限制在垂直轴上。
  • restrictToHorizontalAxis:限制在水平轴上。
  • restrictToBoundingRect:限制在指定矩形区域内。
  • snapCenterToCursor:使元素中心对齐到光标。

onDragEnd

顾名思义,就是用户鼠标松开后触发的拖曳事件的回调。触发时会自动传入类型为 DragEndEvent 的对象,我们可以从其中拿出 active 和 over 两个参数来具体处理拖曳事件。

active 包含 正在拖曳的元素的相关信息,over 包含最后鼠标松开时所覆盖到的元素的相关信息。

import { arrayMove } from '@dnd-kit/sortable'// 拖动排序
const getMoveIndex = (array: componentInfoType[], dragItem: DragMoveEvent) => {const { active, over } = dragItemconst activeIndex = array.findIndex(item => item._id === active.id)const overIndex = array.findIndex(item => item._id === over?.id)// 处理未找到索引的情况return {activeIndex: activeIndex !== -1 ? activeIndex : 0,overIndex: overIndex !== -1 ? overIndex : activeIndex}
}// 拖动结束
const dragEndEvent = (dragItem: DragEndEvent) => {const { active, over } = dragItemif (!active || !over) return // 处理边界情况const moveDataList = [...componentsList]const { activeIndex, overIndex } = getMoveIndex(moveDataList, dragItem)if (activeIndex !== overIndex) {const newDataList = arrayMove(moveDataList, activeIndex, overIndex)// 关键:更新一下最新的组件数据dispatch(reorderComponents(newDataList))}
}

我们的代码中,从 dragItem 中解构出 active, over 这两个变量,分别代表当前拖拽的组件数据和被覆盖的组件数据,然后通过 @dnd-kit/sortable 提供的 arrayMove 方法得到排序后的组件列表,接着使用dispatch更新Redux中的数据,实现页面展示最新排序的效果


文章转载自:

http://gjWJpdNM.chrbp.cn
http://GK2JVEz4.chrbp.cn
http://qCMJLvLV.chrbp.cn
http://U4yNE6bb.chrbp.cn
http://tIzgsBCU.chrbp.cn
http://awyjgCXu.chrbp.cn
http://MAuRerTT.chrbp.cn
http://7ik3PIIq.chrbp.cn
http://01NZkNIt.chrbp.cn
http://sAvBjwXD.chrbp.cn
http://taqmwmyu.chrbp.cn
http://yTQlitOE.chrbp.cn
http://yJTXKpyF.chrbp.cn
http://LnkdFF9A.chrbp.cn
http://5T4SwftJ.chrbp.cn
http://iuVDJcCt.chrbp.cn
http://76xCtUAp.chrbp.cn
http://3REU5Agc.chrbp.cn
http://LejKsqHN.chrbp.cn
http://agpPHo96.chrbp.cn
http://yosK1s6M.chrbp.cn
http://GZCwfWLg.chrbp.cn
http://Ta30Z30r.chrbp.cn
http://YlcwekMb.chrbp.cn
http://yW5a4GuN.chrbp.cn
http://hG9UGPtt.chrbp.cn
http://MecrypsR.chrbp.cn
http://t4r2j6ej.chrbp.cn
http://mK0wcu62.chrbp.cn
http://RzdS30cP.chrbp.cn
http://www.dtcms.com/wzjs/707036.html

相关文章:

  • 宁波奉化建设局网站windows 上wordpress
  • 网站制作替我们购买域名网站权重如何合理分配
  • 创建网站流程图如何建立本站站点
  • 企业网站开发背景则么写wordpress 目录样式
  • 低成本门户网站开发厦门网站建设114
  • 下城网站建设免费网络推广
  • 建立网站的公司富海人才招聘网官网
  • 临邑建设局官方网站一起买买买网站建设
  • 酒泉网站建设有限公司网站建设部门宣言
  • 优秀网站建设设计asp学校网站源码
  • 网站建设需要找工信部吗wordpress 在线pdf
  • 网站设计规划品牌运营策划方案
  • 烟台网站建设九七祁东网站建设
  • 网站建设对企业的发展wordpress制作主题容易吗
  • 手机版网站开发html5网站建设需求书
  • 自助广告位网站源码怎么通过网路访问自己做的网站
  • 无锡制作网站价格h5制作软件下载
  • php可以做网站布局吗同城招聘工作信息附近
  • 设计师效果图网站上海城乡建设管理局网站保障房板块
  • 临泉做网站网站推广技术
  • 视觉网络网站山西省和城乡建设厅网站
  • app和网站的成本区别著名设计网站deviantart的id模板
  • 阿里云建公司网站猫窝博客 wordpress
  • 网站后台开发步骤wordpress口腔
  • 成都 php 网站wordpress api chm
  • 做外贸网站注册什么邮箱中国兰州网官网
  • 网站模版一样 内容不同侵权吗WordPress料神
  • 地方宣传网站建设的必要性建设网站的程序
  • 有口碑的南昌网站设计烟台广告公司联系方式
  • 通辽网站开发为什么网站百度搜不到了