-
-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restricted scrolling beyond the first and last workspaces and fixed bug with Sidebar Switches Multiple Spaces Instead of One #3289
Merged
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
90fe7d8
adds ability to scroll between workspaces as well as fixing the issue…
neurokitti a869e7a
removed my spaces lol mb
neurokitti 2836484
Merge branch 'zen-browser:dev' into dev
neurokitti b4d69de
Merge branch 'zen-browser:dev' into dev
neurokitti f029d50
Merge branch 'zen-browser:dev' into dev
neurokitti 1440534
Merge branch 'zen-browser:dev' into dev
neurokitti 92e1e08
Merge branch 'zen-browser:dev' into dev
neurokitti 7112f77
fix
neurokitti 802a82f
Merge branch 'zen-browser:dev' into dev
neurokitti c1a9034
Update zen-settings.js
mr-cheff df80199
Update ZenWorkspaces.mjs
neurokitti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,27 +121,62 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { | |
this._hoveringSidebar = false; | ||
}); | ||
|
||
const scrollCooldown = 500; // Milliseconds to wait before allowing another scroll | ||
const scrollThreshold = 5; // Minimum scroll delta to trigger workspace change | ||
const scrollCooldown = 200; // Milliseconds to wait before allowing another scroll | ||
const scrollThreshold = 2; // Minimum scroll delta to trigger workspace change | ||
|
||
toolbox.addEventListener('wheel', async (event) => { | ||
if (!this.workspaceEnabled) return; | ||
// Only process horizontal scroll (deltaX) | ||
if (!event.deltaX) return; | ||
|
||
|
||
// Only process non-gesture scrolls | ||
if (event.deltaMode !== 1) return; | ||
|
||
const isVerticalScroll = event.deltaY && !event.deltaX; | ||
const isHorizontalScroll = event.deltaX && !event.deltaY; | ||
|
||
//if the scroll is vertical this checks that a modifier key is used before proceeding | ||
if (isVerticalScroll) { | ||
const activationMethod = Services.prefs.getStringPref('zen.workspaces.scroll-modifier-key', 'ctrl'); | ||
const activationKeyMap = { | ||
ctrl: event.ctrlKey, | ||
alt: event.altKey, | ||
shift: event.shiftKey, | ||
meta: event.metaKey, | ||
}; | ||
|
||
if (activationMethod in activationKeyMap && !activationKeyMap[activationMethod]) { | ||
return; | ||
} | ||
} | ||
|
||
const currentTime = Date.now(); | ||
if (currentTime - this._lastScrollTime < scrollCooldown) { | ||
return; | ||
if (currentTime - this._lastScrollTime < scrollCooldown) return; | ||
|
||
//this decides which delta to use | ||
const delta = isVerticalScroll ? event.deltaY : event.deltaX; | ||
if (Math.abs(delta) < scrollThreshold) return; | ||
|
||
// Determine scroll direction | ||
const direction = delta > 0 ? -1 : 1; | ||
|
||
// Workspace logic | ||
const workspaces = (await this._workspaces()).workspaces; | ||
const currentIndex = workspaces.findIndex(w => w.uuid === this.activeWorkspace); | ||
if (currentIndex === -1) return; // No valid current workspace | ||
|
||
let targetIndex = currentIndex + direction; | ||
|
||
if (Services.prefs.getBoolPref('zen.workspaces.wrap-around-navigation', false)) { | ||
// Add length to handle negative indices and loop | ||
targetIndex = (targetIndex + workspaces.length) % workspaces.length; | ||
} else { | ||
// Clamp within bounds to disable looping | ||
targetIndex = Math.max(0, Math.min(workspaces.length - 1, targetIndex)); | ||
} | ||
|
||
// Only process if the horizontal scroll is significant enough | ||
if (Math.abs(event.deltaX) < scrollThreshold) { | ||
return; | ||
|
||
if (targetIndex !== currentIndex) { | ||
await this.changeWorkspace(workspaces[targetIndex]); | ||
} | ||
|
||
// Change workspace based on scroll direction | ||
const direction = event.deltaX > 0 ? 1 : -1; | ||
await this.changeWorkspaceShortcut(direction); | ||
|
||
this._lastScrollTime = currentTime; | ||
}, { passive: true }); | ||
} | ||
|
@@ -212,7 +247,6 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { | |
|
||
async _handleSwipeEnd(event) { | ||
if (!this.workspaceEnabled || !this._swipeState?.isGestureActive) return; | ||
|
||
event.preventDefault(); | ||
event.stopPropagation(); | ||
|
||
|
@@ -223,15 +257,22 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { | |
if (currentIndex !== -1) { | ||
const isRTL = document.documentElement.matches(':-moz-locale-dir(rtl)'); | ||
const moveForward = (this._swipeState.direction === 'right') !== isRTL; | ||
|
||
let targetIndex; | ||
if (moveForward) { | ||
targetIndex = (currentIndex + 1) % workspaces.length; | ||
|
||
let targetIndex = moveForward | ||
? currentIndex + 1 | ||
: currentIndex - 1; | ||
|
||
if (Services.prefs.getBoolPref('zen.workspaces.wrap-around-navigation', false)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here |
||
// Add length to handle negative indices and clamp within bounds | ||
targetIndex = (targetIndex + workspaces.length) % workspaces.length; | ||
} else { | ||
targetIndex = (currentIndex - 1 + workspaces.length) % workspaces.length; | ||
// Clamp within bounds for to remove looping | ||
targetIndex = Math.max(0, Math.min(workspaces.length - 1, targetIndex)); | ||
} | ||
|
||
if (targetIndex !== currentIndex) { | ||
await this.changeWorkspace(workspaces[targetIndex]); | ||
} | ||
|
||
await this.changeWorkspace(workspaces[targetIndex]); | ||
} | ||
} | ||
|
||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be moved into a lazy preference getter?