Skip to content

Commit 073f1e4

Browse files
committed
feat: move tab to an existing window by orientation
1 parent 654edf2 commit 073f1e4

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

background_scripts/commands.js

+18
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,10 @@ const Commands = {
346346
"removeTab",
347347
"restoreTab",
348348
"moveTabToNewWindow",
349+
"mergeTabToExistingWindowOnLeft",
350+
"mergeTabToExistingWindowOnRight",
351+
"mergeTabToExistingWindowAbove",
352+
"mergeTabToExistingWindowBelow",
349353
"closeTabsOnLeft",
350354
"closeTabsOnRight",
351355
"closeOtherTabs",
@@ -366,6 +370,10 @@ const Commands = {
366370
"scrollToLeft",
367371
"scrollToRight",
368372
"moveTabToNewWindow",
373+
"mergeTabToExistingWindowOnLeft",
374+
"mergeTabToExistingWindowOnRight",
375+
"mergeTabToExistingWindowAbove",
376+
"mergeTabToExistingWindowBelow",
369377
"goUp",
370378
"goToRoot",
371379
"LinkHints.activateModeWithQueue",
@@ -459,6 +467,10 @@ const defaultKeyMappings = {
459467
"g0": "firstTab",
460468
"g$": "lastTab",
461469
"W": "moveTabToNewWindow",
470+
"wh": "mergeTabToExistingWindowOnLeft",
471+
"wl": "mergeTabToExistingWindowOnRight",
472+
"wk": "mergeTabToExistingWindowAbove",
473+
"wj": "mergeTabToExistingWindowBelow",
462474
"t": "createTab",
463475
"yt": "duplicateTab",
464476
"x": "removeTab",
@@ -552,6 +564,12 @@ const commandDescriptions = {
552564
restoreTab: ["Restore closed tab", { background: true, repeatLimit: 20 }],
553565

554566
moveTabToNewWindow: ["Move tab to new window", { background: true }],
567+
568+
mergeTabToExistingWindowOnLeft : ["Move tab to an existing window on left, if exists", {background: true}],
569+
mergeTabToExistingWindowOnRight : ["Move tab to an existing window on right, if exists", {background: true}],
570+
mergeTabToExistingWindowAbove : ["Move tab to an existing window above, if exists", {background: true}],
571+
mergeTabToExistingWindowBelow : ["Move tab to an existing window below, if exists", {background: true}],
572+
555573
togglePinTab: ["Pin or unpin current tab", { background: true }],
556574
toggleMuteTab: ["Mute or unmute current tab", { background: true, noRepeat: true }],
557575

background_scripts/main.js

+42
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,35 @@ function nextZoomLevel(currentZoom, steps) {
210210
}
211211
}
212212

213+
const moveTabToExistingWindow = function(orientation, currentTab) {
214+
chrome.windows.getCurrent({}, currentWindow => {
215+
chrome.windows.getAll({populate: true}, windows => {
216+
const filteredWindows = windows.filter(window => {
217+
if (window.id !== currentWindow.id) {
218+
if (orientation === 'left') {
219+
return window.left < currentWindow.left;
220+
} else if (orientation === 'right') {
221+
return window.left > currentWindow.left;
222+
} else if (orientation === 'top') {
223+
return window.top < currentWindow.top;
224+
} else if (orientation === 'bottom') {
225+
return window.top > currentWindow.top;
226+
}
227+
}
228+
});
229+
if (filteredWindows.length > 0) {
230+
const destinationWindow = filteredWindows[0];
231+
chrome.tabs.move(currentTab.id, { windowId: destinationWindow.id, index: -1 }).then(() => {
232+
chrome.windows.get(destinationWindow.id, {populate: true}, newWindow => {
233+
const newTab = newWindow.tabs.slice(-1)[0];
234+
selectSpecificTab({ id: newTab.id });
235+
});
236+
});
237+
}
238+
});
239+
});
240+
};
241+
213242
// These are commands which are bound to keystrokes which must be handled by the background page.
214243
// They are mapped in commands.js.
215244
const BackgroundCommands = {
@@ -291,6 +320,19 @@ const BackgroundCommands = {
291320
});
292321
},
293322

323+
mergeTabToExistingWindowOnLeft(request) {
324+
moveTabToExistingWindow("left", request.tab);
325+
},
326+
mergeTabToExistingWindowOnRight(request) {
327+
moveTabToExistingWindow("right", request.tab);
328+
},
329+
mergeTabToExistingWindowAbove(request) {
330+
moveTabToExistingWindow("top", request.tab);
331+
},
332+
mergeTabToExistingWindowBelow(request) {
333+
moveTabToExistingWindow("bottom", request.tab);
334+
},
335+
294336
nextTab(request) {
295337
return selectTab("next", request);
296338
},

0 commit comments

Comments
 (0)