2020-09-17 16:14:42 +08:00
|
|
|
---
|
|
|
|
order: 13
|
|
|
|
title:
|
|
|
|
zh-CN: 上传列表拖拽排序
|
|
|
|
en-US: Drag sorting of uploadList
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `itemRender` ,我们可以集成 react-dnd 来实现对上传列表拖拽排序。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
By using `itemRender`, we can integrate upload with react-dnd to implement drag sorting of uploadList.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import React, { useState, useCallback, useRef } from 'react';
|
|
|
|
import { Upload, Button, Tooltip } from 'antd';
|
|
|
|
import { DndProvider, useDrag, useDrop, createDndContext } from 'react-dnd';
|
|
|
|
import { HTML5Backend } from 'react-dnd-html5-backend';
|
|
|
|
import update from 'immutability-helper';
|
|
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
|
|
|
|
|
|
const RNDContext = createDndContext(HTML5Backend);
|
|
|
|
|
|
|
|
const type = 'DragableUploadList';
|
|
|
|
|
|
|
|
const DragableUploadListItem = ({ originNode, moveRow, file, fileList }) => {
|
|
|
|
const ref = React.useRef();
|
|
|
|
const index = fileList.indexOf(file);
|
|
|
|
const [{ isOver, dropClassName }, drop] = useDrop({
|
|
|
|
accept: type,
|
|
|
|
collect: monitor => {
|
|
|
|
const { index: dragIndex } = monitor.getItem() || {};
|
|
|
|
if (dragIndex === index) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
isOver: monitor.isOver(),
|
|
|
|
dropClassName: dragIndex < index ? ' drop-over-downward' : ' drop-over-upward',
|
|
|
|
};
|
|
|
|
},
|
|
|
|
drop: item => {
|
|
|
|
moveRow(item.index, index);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const [, drag] = useDrag({
|
|
|
|
item: { type, index },
|
|
|
|
collect: monitor => ({
|
|
|
|
isDragging: monitor.isDragging(),
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
drop(drag(ref));
|
|
|
|
const errorNode = (
|
|
|
|
<Tooltip title="Upload Error" getPopupContainer={() => document.body}>
|
|
|
|
{originNode.props.children}
|
|
|
|
</Tooltip>
|
|
|
|
);
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
ref={ref}
|
|
|
|
className={`ant-upload-draggable-list-item ${isOver ? dropClassName : ''}`}
|
|
|
|
style={{ cursor: 'move' }}
|
|
|
|
>
|
|
|
|
{file.status === 'error' ? errorNode : originNode}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const DragSortingUpload: React.FC = () => {
|
|
|
|
const [fileList, setFileList] = useState([
|
|
|
|
{
|
|
|
|
uid: '-1',
|
|
|
|
name: 'image1.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '-2',
|
|
|
|
name: 'image2.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '-3',
|
|
|
|
name: 'image3.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '-4',
|
|
|
|
name: 'image4.png',
|
|
|
|
status: 'done',
|
|
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
uid: '-5',
|
|
|
|
name: 'image.png',
|
|
|
|
status: 'error',
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
|
|
|
|
const moveRow = useCallback(
|
|
|
|
(dragIndex, hoverIndex) => {
|
|
|
|
const dragRow = fileList[dragIndex];
|
|
|
|
setFileList(
|
|
|
|
update(fileList, {
|
|
|
|
$splice: [
|
|
|
|
[dragIndex, 1],
|
|
|
|
[hoverIndex, 0, dragRow],
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
[fileList],
|
|
|
|
);
|
|
|
|
|
|
|
|
const manager = useRef(RNDContext);
|
|
|
|
|
|
|
|
const onChange = ({ fileList: newFileList }) => {
|
|
|
|
setFileList(newFileList);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<DndProvider manager={manager.current.dragDropManager}>
|
|
|
|
<Upload
|
|
|
|
action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
|
|
|
|
fileList={fileList}
|
|
|
|
onChange={onChange}
|
2020-12-09 17:12:32 +08:00
|
|
|
itemRender={(originNode, file, currFileList) => (
|
|
|
|
<DragableUploadListItem
|
|
|
|
originNode={originNode}
|
|
|
|
file={file}
|
|
|
|
fileList={currFileList}
|
|
|
|
moveRow={moveRow}
|
|
|
|
/>
|
|
|
|
)}
|
2020-09-17 16:14:42 +08:00
|
|
|
>
|
|
|
|
<Button>
|
|
|
|
<UploadOutlined /> Click to Upload
|
|
|
|
</Button>
|
|
|
|
</Upload>
|
|
|
|
</DndProvider>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(<DragSortingUpload />, mountNode);
|
|
|
|
```
|
|
|
|
|
|
|
|
```css
|
|
|
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item {
|
|
|
|
border-top: 2px dashed rgba(0, 0, 0, 0);
|
|
|
|
border-bottom: 2px dashed rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item.drop-over-downward {
|
|
|
|
border-bottom-color: #1890ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#components-upload-demo-drag-sorting .ant-upload-draggable-list-item.drop-over-upward {
|
|
|
|
border-top-color: #1890ff;
|
|
|
|
}
|
|
|
|
```
|