Skip to content

Commit

Permalink
Refactor tab close handling and maintain scrollbar state
Browse files Browse the repository at this point in the history
  • Loading branch information
mauro-balades committed Jan 31, 2025
1 parent 7b41eb7 commit d81745e
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 28 deletions.
22 changes: 20 additions & 2 deletions src/browser/base/content/ZenUIManager.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var gZenUIManager = {
this._hasLoadedDOM = true;
});

window.addEventListener('TabClose', this.updateTabsToolbar.bind(this));
window.addEventListener('TabClose', this.onTabClose.bind(this));
},

updateTabsToolbar() {
Expand Down Expand Up @@ -56,6 +56,24 @@ var gZenUIManager = {
tabs.style.maxHeight = height + 'px';
},

get tabsWrapper() {
if (this._tabsWrapper) {
return this._tabsWrapper;
}
this._tabsWrapper = document.getElementById('zen-browser-tabs-wrapper');
return this._tabsWrapper;
},

saveScrollbarState() {
this._scrollbarState = this.tabsWrapper.scrollTop;
},

onTabClose(event) {
this.updateTabsToolbar();
this.tabsWrapper.scrollTop = this._scrollbarState;
this._scrollbarState = 0;
},

openAndChangeToTab(url, options) {
if (window.ownerGlobal.parent) {
const tab = window.ownerGlobal.parent.gBrowser.addTrustedTab(url, options);
Expand Down Expand Up @@ -248,7 +266,7 @@ var gZenVerticalTabsManager = {
aTab.style.removeProperty('opacity');
});
gZenUIManager.motion
.animate(aTab.querySelector('.tab-stack'), {
.animate(aTab.querySelector('.tab-content'), {
filter: ['blur(1px)', 'blur(0px)'],
})
.then(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@
position: fixed;
z-index: 1000;
background: var(--zen-drag-indicator-bg);
transition: top 0.1s ease;
transition: top 0.1s ease-out;
pointer-events: none;
left: calc(var(--indicator-left) + 2 * var(--zen-drag-indicator-height) + 4px);
border-radius: 5px;
Expand Down
58 changes: 33 additions & 25 deletions src/browser/components/tabbrowser/content/tabs-js.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/browser/components/tabbrowser/content/tabs.js b/browser/components/tabbrowser/content/tabs.js
index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96eccdd9bbbc4 100644
index 8aeb244ffca9f48661805f5b7d860b5896055562..a6fae3e317afc9b681f818506c7f34a325e43df4 100644
--- a/browser/components/tabbrowser/content/tabs.js
+++ b/browser/components/tabbrowser/content/tabs.js
@@ -94,7 +94,7 @@
Expand All @@ -20,7 +20,15 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
event.composedTarget.localName == "toolbarbutton"
) {
return;
@@ -659,7 +659,7 @@
@@ -411,6 +411,7 @@
// Reset the "ignored click" flag
target._ignoredCloseButtonClicks = false;
}
+ gZenUIManager.saveScrollbarState();
}

/* Protects from close-tab-button errant doubleclick:
@@ -659,7 +660,7 @@
if (this.#isContainerVerticalPinnedExpanded(tab)) {
// In expanded vertical mode, the max number of pinned tabs per row is dynamic
// Set this before adjusting dragged tab's position
Expand All @@ -29,7 +37,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
let tabsPerRow = 0;
let position = 0;
for (let pinnedTab of pinnedTabs) {
@@ -859,6 +859,9 @@
@@ -859,6 +860,9 @@
}
let draggedTab = event.dataTransfer.mozGetDataAt(TAB_DROP_TYPE, 0);
Expand All @@ -39,7 +47,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
if (
(effects == "move" || effects == "copy") &&
this == draggedTab.container &&
@@ -972,6 +975,14 @@
@@ -972,6 +976,14 @@
this._tabDropIndicator.hidden = true;
event.stopPropagation();
Expand All @@ -54,7 +62,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
if (draggedTab && dropEffect == "copy") {
// copy the dropped tab (wherever it's from)
let newIndex = this._getDropIndex(event);
@@ -1010,7 +1021,7 @@
@@ -1010,7 +1022,7 @@
}
} else {
let pinned = draggedTab.pinned;
Expand All @@ -63,7 +71,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
let tabs = this.visibleTabs.slice(
pinned ? 0 : numPinned,
pinned ? numPinned : undefined
@@ -1090,7 +1101,7 @@
@@ -1090,7 +1102,7 @@
let postTransitionCleanup = () => {
tab.removeAttribute("tabdrop-samewindow");
Expand All @@ -72,7 +80,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
if (dropIndex !== false) {
gBrowser.moveTabTo(tab, dropIndex);
if (!directionForward) {
@@ -1100,7 +1111,7 @@
@@ -1100,7 +1112,7 @@
gBrowser.syncThrobberAnimations(tab);
};
Expand All @@ -81,7 +89,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
postTransitionCleanup();
} else {
let onTransitionEnd = transitionendEvent => {
@@ -1263,7 +1274,8 @@
@@ -1263,7 +1275,8 @@
if (
dt.mozUserCancelled ||
dt.dropEffect != "none" ||
Expand All @@ -91,7 +99,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
) {
delete draggedTab._dragData;
return;
@@ -1512,7 +1524,7 @@
@@ -1512,7 +1525,7 @@
}
this.#allTabs = [
Expand All @@ -100,15 +108,15 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
...children,
];
return this.#allTabs;
@@ -1593,6 +1605,7 @@
@@ -1593,6 +1606,7 @@
}
this.#focusableItems = [
+ ...document.getElementById("zen-essentials-container").children,
...verticalPinnedTabsContainer.children,
...focusableItems,
];
@@ -1617,8 +1630,8 @@
@@ -1617,8 +1631,8 @@
#isContainerVerticalPinnedExpanded(tab) {
return (
this.verticalMode &&
Expand All @@ -119,7 +127,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
);
}
@@ -1816,7 +1829,7 @@
@@ -1816,7 +1830,7 @@
let rect = ele => {
return window.windowUtils.getBoundsWithoutFlushing(ele);
};
Expand All @@ -128,15 +136,15 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
if (tab && rect(tab).width <= this._tabClipWidth) {
this.setAttribute("closebuttons", "activetab");
} else {
@@ -1832,6 +1845,7 @@
@@ -1832,6 +1846,7 @@
this.arrowScrollbox.ensureElementIsVisible(selectedTab, aInstant);
}
+ gZenCompactModeManager.flashSidebarIfNecessary(aInstant);
selectedTab._notselectedsinceload = false;
}
@@ -1879,7 +1893,7 @@
@@ -1879,7 +1894,7 @@
if (isEndTab && !this._hasTabTempMaxWidth) {
return;
}
Expand All @@ -145,7 +153,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
// Force tabs to stay the same width, unless we're closing the last tab,
// which case we need to let them expand just enough so that the overall
// tabbar width is the same.
@@ -1894,7 +1908,7 @@
@@ -1894,7 +1909,7 @@
let tabsToReset = [];
for (let i = numPinned; i < tabs.length; i++) {
let tab = tabs[i];
Expand All @@ -154,7 +162,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
if (!isEndTab) {
// keep tabs the same width
tab.style.transition = "none";
@@ -1963,13 +1977,13 @@
@@ -1963,13 +1978,13 @@
let verticalTabsContainer = document.getElementById(
"vertical-pinned-tabs-container"
);
Expand All @@ -171,7 +179,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
}
}
@@ -1993,7 +2007,7 @@
@@ -1993,7 +2008,7 @@
_positionPinnedTabs() {
let tabs = this.visibleTabs;
Expand All @@ -180,7 +188,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
let absPositionHorizontalTabs =
this.overflowing && tabs.length > numPinned && numPinned > 0;
@@ -2074,7 +2088,7 @@
@@ -2074,7 +2089,7 @@
return;
}
Expand All @@ -189,7 +197,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
let directionX = screenX > dragData.animLastScreenX;
let directionY = screenY > dragData.animLastScreenY;
@@ -2257,9 +2271,9 @@
@@ -2257,9 +2272,9 @@
}
let pinned = draggedTab.pinned;
Expand All @@ -201,7 +209,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
pinned ? numPinned : undefined
);
@@ -2502,8 +2516,9 @@
@@ -2502,8 +2517,9 @@
);
}
Expand All @@ -213,7 +221,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
return;
}
@@ -2668,9 +2683,9 @@
@@ -2668,9 +2684,9 @@
function newIndex(aTab, index) {
// Don't allow mixing pinned and unpinned tabs.
if (aTab.pinned) {
Expand All @@ -225,7 +233,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
}
}
@@ -2754,7 +2769,7 @@
@@ -2754,7 +2770,7 @@
}
_notifyBackgroundTab(aTab) {
Expand All @@ -234,7 +242,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
return;
}
@@ -2772,12 +2787,14 @@
@@ -2772,12 +2788,14 @@
selectedTab = {
left: selectedTab.left,
right: selectedTab.right,
Expand All @@ -250,7 +258,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
selectedTab,
];
})
@@ -2794,8 +2811,11 @@
@@ -2794,8 +2812,11 @@
delete this._lastTabToScrollIntoView;
// Is the new tab already completely visible?
if (
Expand All @@ -264,7 +272,7 @@ index 8aeb244ffca9f48661805f5b7d860b5896055562..35f5562d60d70ac4e117c7f098d96ecc
) {
return;
}
@@ -2803,21 +2823,29 @@
@@ -2803,21 +2824,29 @@
if (this.arrowScrollbox.smoothScroll) {
// Can we make both the new tab and the selected tab completely visible?
if (
Expand Down

0 comments on commit d81745e

Please sign in to comment.