gpt4 book ai didi

Angular 拖放绝对位置元素选择了错误的索引

转载 作者:行者123 更新时间:2023-12-04 04:11:59 25 4
gpt4 key购买 nike

我正在尝试将项目拖到两个列表中。底部列表是一个典型的排序列表(如“库存”),但我希望顶部项目未排序并可放置在任何地方(如“游戏板”)。

我基本上可以正常工作,但是当放入顶部框时 event.currentIndex 始终为 0。但是当从那里拖出时,我得到不同的 event.previousIndex 值,这意味着模型和 DOM 元素并不总是匹配。

这是一个 stackblitz表明我的意思。将一些项目拖到顶部框中并进行操作,您会发现有时会移动错误的项目。

当您以相反的顺序进行交互时,这一点最为明显,例如:

  1. 将项目“一”、“二”、“三”拖到顶部框中(按顺序)
  2. 尝试将项目“三”、“二”、“一”放回底盒(按此顺序)

enter image description here

最佳答案

cdkDropListSortingDisabled 选项仅在同一容器内移动项目时有效。如果你从一个容器移动到另一个容器,那么 Angular sorts block 的位置:

this._itemPositions = this._activeDraggables.map(drag => {
const elementToMeasure = drag.getVisibleElement();
return {drag, offset: 0, clientRect: getMutableClientRect(elementToMeasure)};
}).sort((a, b) => {
return isHorizontal ? a.clientRect.left - b.clientRect.left :
a.clientRect.top - b.clientRect.top;
});

因为您没有提供方向并且默认是垂直的,所以它按顶部位置排序。

顶部框 event.currentIndex 始终为 0,因为您使用绝对定位并且占位符始终位于顶部。

尝试添加以下样式以查看占位符的显示位置:

.cdk-drag-placeholder {
opacity: 1;
background: red;
}

enter image description here

要修复它,您可以自己计算 currentIndex,例如像这样:

const isWithinSameContainer = event.previousContainer === event.container;

let toIndex = event.currentIndex;
if (event.container.sortingDisabled) {
const arr = event.container.data.sort((a, b) => a.top - b.top);
const targetIndex = arr.findIndex(item => item.top > top);

toIndex =
targetIndex === -1
? isWithinSameContainer
? arr.length - 1
: arr.length
: targetIndex;
}

const item = event.previousContainer.data[event.previousIndex];
item.top = top;
item.left = left;

if (isWithinSameContainer) {
moveItemInArray(event.container.data, event.previousIndex, toIndex);
} else {
transferArrayItem(
event.previousContainer.data,
event.container.data,
event.previousIndex,
toIndex
);
}

Forked Stackblitz

关于Angular 拖放绝对位置元素选择了错误的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61569666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com