fix: dragging a list on mobile Safari
This commit is contained in:
parent
03f448457a
commit
6bf5f6efd4
1 changed files with 8 additions and 3 deletions
|
@ -250,9 +250,14 @@ async function saveListPosition(e: SortableEvent) {
|
||||||
const newNamespaceIndex = parseInt(e.to.dataset.namespaceIndex as string)
|
const newNamespaceIndex = parseInt(e.to.dataset.namespaceIndex as string)
|
||||||
|
|
||||||
const listsActive = activeLists.value[newNamespaceIndex]
|
const listsActive = activeLists.value[newNamespaceIndex]
|
||||||
const list = listsActive[e.newIndex]
|
// If the list was dragged to the last position, Safari will report e.newIndex as the size of the listsActive
|
||||||
const listBefore = listsActive[e.newIndex - 1] ?? null
|
// array instead of using the position. Because the index is wrong in that case, dragging the list will fail.
|
||||||
const listAfter = listsActive[e.newIndex + 1] ?? null
|
// To work around that we're explicitly checking that case here and decrease the index.
|
||||||
|
const newIndex = e.newIndex === listsActive.length ? e.newIndex - 1 : e.newIndex
|
||||||
|
|
||||||
|
const list = listsActive[newIndex]
|
||||||
|
const listBefore = listsActive[newIndex - 1] ?? null
|
||||||
|
const listAfter = listsActive[newIndex + 1] ?? null
|
||||||
listUpdating.value[list.id] = true
|
listUpdating.value[list.id] = true
|
||||||
|
|
||||||
const position = calculateItemPosition(
|
const position = calculateItemPosition(
|
||||||
|
|
Loading…
Reference in a new issue