Skip to content

feat: move tab to an existing window by orientation #4417

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions background_scripts/all_commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,38 @@ const allCommands = [
background: true,
},

{
name: "mergeTabToExistingWindowOnLeft",
desc: "Move tab to an existing window on left, if exists",
group: "tabs",
advanced: true,
background: true,
},

{
name: "mergeTabToExistingWindowOnRight",
desc: "Move tab to an existing window on right, if exists",
group: "tabs",
advanced: true,
background: true,
},

{
name: "mergeTabToExistingWindowAbove",
desc: "Move tab to an existing window above, if exists",
group: "tabs",
advanced: true,
background: true,
},

{
name: "mergeTabToExistingWindowBelow",
desc: "Move tab to an existing window below, if exists",
group: "tabs",
advanced: true,
background: true,
},

{
name: "closeTabsOnLeft",
desc: "Close tabs on the left",
Expand Down
4 changes: 4 additions & 0 deletions background_scripts/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,10 @@ const defaultKeyMappings = {
"g0": "firstTab",
"g$": "lastTab",
"W": "moveTabToNewWindow",
"wh": "mergeTabToExistingWindowOnLeft",
"wl": "mergeTabToExistingWindowOnRight",
"wk": "mergeTabToExistingWindowAbove",
"wj": "mergeTabToExistingWindowBelow",
"t": "createTab",
"yt": "duplicateTab",
"x": "removeTab",
Expand Down
42 changes: 42 additions & 0 deletions background_scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,35 @@ function nextZoomLevel(currentZoom, steps) {
}
}

const moveTabToExistingWindow = function(orientation, currentTab) {
chrome.windows.getCurrent({}, currentWindow => {
chrome.windows.getAll({populate: true}, windows => {
const filteredWindows = windows.filter(window => {
if (window.id !== currentWindow.id) {
if (orientation === 'left') {
return window.left < currentWindow.left;
} else if (orientation === 'right') {
return window.left > currentWindow.left;
} else if (orientation === 'top') {
return window.top < currentWindow.top;
} else if (orientation === 'bottom') {
return window.top > currentWindow.top;
}
}
});
if (filteredWindows.length > 0) {
const destinationWindow = filteredWindows[0];
chrome.tabs.move(currentTab.id, { windowId: destinationWindow.id, index: -1 }).then(() => {
chrome.windows.get(destinationWindow.id, {populate: true}, newWindow => {
const newTab = newWindow.tabs.slice(-1)[0];
selectSpecificTab({ id: newTab.id });
});
});
}
});
});
};

// These are commands which are bound to keystrokes which must be handled by the background page.
// They are mapped in commands.js.
const BackgroundCommands = {
Expand Down Expand Up @@ -313,6 +342,19 @@ const BackgroundCommands = {
});
},

mergeTabToExistingWindowOnLeft(request) {
moveTabToExistingWindow("left", request.tab);
},
mergeTabToExistingWindowOnRight(request) {
moveTabToExistingWindow("right", request.tab);
},
mergeTabToExistingWindowAbove(request) {
moveTabToExistingWindow("top", request.tab);
},
mergeTabToExistingWindowBelow(request) {
moveTabToExistingWindow("bottom", request.tab);
},

nextTab(request) {
return selectTab("next", request);
},
Expand Down