Skip to content
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

chore: select the tab if the window is open w/o flashing the window #55

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
79 changes: 38 additions & 41 deletions src/list-tabs-webkit.js
Original file line number Diff line number Diff line change
@@ -1,51 +1,48 @@
#!/usr/bin/env osascript -l JavaScript

function run(args) {
let browser = args[0];
if (!Application(browser).running()) {
return JSON.stringify({
items: [
{
title: `${browser} is not running`,
subtitle: `Press enter to launch ${browser}`,
},
],
});
}
ObjC.import("stdlib");
let browser = $.getenv("browser");
let app = Application(browser);
let query = args[0];
let [windowIndex, url] = query.split(",");
let windows = app.windows;

let chrome = Application(browser);
chrome.includeStandardAdditions = true;
let windowCount = chrome.windows.length;
let tabsTitle = chrome.windows.tabs.name();
let tabsUrl = chrome.windows.tabs.url();
let tabsMap = {};
function getTab(window) {
if (!window) return null;
for (let index in window.tabs) {
let tab = window.tabs[index];
let tabURL = tab.url() || tab.name();
if (tabURL && tabURL.startsWith(url)) {
return tab;
}
}
return null;
}

for (let w = 0; w < windowCount; w++) {
for (let t = 0; t < tabsTitle[w].length; t++) {
let url = tabsUrl[w][t] || "";
let matchUrl = url.replace(/(^\w+:|^)\/\//, "");
let title = tabsTitle[w][t] || matchUrl;
let targetWindow = null;
let targetTab = null;

tabsMap[url] = {
title,
url,
subtitle: url,
windowIndex: w,
tabIndex: t,
quicklookurl: url,
arg: `${w},${url || title}`,
match: `${title} ${decodeURIComponent(matchUrl).replace(
/[^\w]/g,
" ",
)}`,
};
// Look for the target tab in any window
for (let i = 0; i < windows.length; i++) {
let win = windows[i];
let tab = getTab(win);
if (tab) {
targetWindow = win;
targetTab = tab;
break;
}
}

let items = Object.keys(tabsMap).reduce((acc, url) => {
acc.push(tabsMap[url]);
return acc;
}, []);

return JSON.stringify({ items });
// If tab is found, switch to it without toggling visibility
if (targetTab) {
targetWindow.currentTab = targetTab;
app.activate(); // Bring the browser to the front
} else {
// Open new tab if the target tab doesn't exist
let newWindow = windows[windowIndex]();
newWindow.tabs.push({ url: url });
newWindow.currentTab = newWindow.tabs[newWindow.tabs.length - 1];
app.activate();
}
}