fix(panel): queue panel close after peek animation ends if no longer hovering

This commit is contained in:
dragonwocky 2024-01-18 16:20:18 +11:00
parent 493db7aa2e
commit 69eb2866d5
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8

View File

@ -301,6 +301,12 @@ function Panel({
if (isPeeked() || !panelViews.length) return;
if (isClosed()) Object.assign(animationState, peekAnimation);
animatePanel({ ...openWidth, ...peekAnimation });
// closing on mouseout is disabled mid-animation,
// queue close in case mouse is no longer peeking
// after the initial animation is complete
setTimeout(() => {
if (!isDragging() && !$panel.matches(":hover")) $panel.close();
}, transitionDuration);
$panel.removeAttribute("data-pinned");
$panel.dataset.peeked = true;
setInteractive(true);