-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: exclude items from drag image for large scrollers (#8028)
* fix: exclude items from drag image for large scrollers * refactor: apply for all browsers * refactor: add and remove listener on connected and disconnected * refactor: rename and move into constructor * test: update tests to observe whether browser crashes * fix: set overflow hidden temporarily to hide the scroll bar on drag
- Loading branch information
1 parent
5ec5830
commit 6d4a78d
Showing
6 changed files
with
215 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import '../vaadin-lit-virtual-list.js'; | ||
import './drag-and-drop.common.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import '../vaadin-virtual-list.js'; | ||
import './drag-and-drop.common.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { expect } from '@vaadin/chai-plugins'; | ||
import { fixtureSync, nextFrame } from '@vaadin/testing-helpers'; | ||
import { resetMouse, sendMouse } from '@web/test-runner-commands'; | ||
import { hover } from '@vaadin/button/test/visual/helpers.js'; | ||
|
||
describe('drag and drop', () => { | ||
let virtualList; | ||
let container; | ||
let items; | ||
|
||
beforeEach(async () => { | ||
container = fixtureSync(` | ||
<div style="width: 300px; height: 300px;"> | ||
<vaadin-virtual-list draggable="true"></vaadin-virtual-list> | ||
</div> | ||
`); | ||
virtualList = container.querySelector('vaadin-virtual-list'); | ||
virtualList.renderer = (root, _, { item }) => { | ||
root.innerHTML = `<div>${item.label}</div>`; | ||
}; | ||
document.body.appendChild(container); | ||
await nextFrame(); | ||
items = virtualList.shadowRoot.querySelector('#items'); | ||
}); | ||
|
||
async function setVirtualListItems(count) { | ||
virtualList.items = Array.from({ length: count }).map((_, i) => { | ||
return { label: `Item ${i}` }; | ||
}); | ||
await nextFrame(); | ||
} | ||
|
||
async function dragElement(element) { | ||
await resetMouse(); | ||
await hover(element); | ||
await sendMouse({ type: 'down' }); | ||
await sendMouse({ type: 'move', position: [100, 100] }); | ||
await sendMouse({ type: 'up' }); | ||
} | ||
|
||
async function assertDragSucceeds(draggedElement) { | ||
// maxHeight and overflow are temporarily updated in the related fix | ||
const initialItemsMaxHeight = items.style.maxHeight; | ||
const initialVirtualListOverflow = virtualList.style.overflow; | ||
await dragElement(draggedElement); | ||
expect(items.style.maxHeight).to.equal(initialItemsMaxHeight); | ||
expect(virtualList.style.overflow).to.equal(initialVirtualListOverflow); | ||
} | ||
|
||
['5000', '50000'].forEach((count) => { | ||
it(`should not crash when dragging a virtual list with ${count} items`, async () => { | ||
await setVirtualListItems(count); | ||
await assertDragSucceeds(virtualList); | ||
}); | ||
|
||
it(`should not crash when dragging a container that has a virtual list with ${count} items`, async () => { | ||
virtualList.removeAttribute('draggable'); | ||
container.setAttribute('draggable', true); | ||
await setVirtualListItems(count); | ||
await assertDragSucceeds(container); | ||
}); | ||
}); | ||
}); |