c514e4faec
Track menu popup visibility and propagate zoom level to the popup. Add menu_popup_visible_ flag, SendMenuPopupZoom(), and call it when creating/showing the popup and when adjusting zoom. Make CreateNewTab accept an optional URL and route popup/new-tab flows to it. Prevent per-tab child closes from triggering app shutdown by tracking closing_tab_browsers_ and adding ForgetClosingTabBrowser(). Treat MenuPopup role specially when enabling frame hit-testing. Platform: remove usage of ApplyRoundedBrowserRegion and switch menu popup sizing to use resized client_size helpers (consolidate calculations across Win/Mac/Linux). UI: update menu-popup CSS/JS (new styling, font, zoom formatting API via NebulaMenuPopup.setZoomLevel), wire settings to use nebulaNative.postMessage for new-tab, and remove the static menu-popup.html. Misc: small chrome CSS/JS tweaks and ensure chrome state includes zoomLevel.
184 lines
5.5 KiB
JavaScript
184 lines
5.5 KiB
JavaScript
const SEARCH_URL = 'https://www.google.com/search?q=';
|
|
|
|
const state = {
|
|
id: 1,
|
|
url: '',
|
|
title: 'New Tab',
|
|
isLoading: false,
|
|
progress: 0,
|
|
canGoBack: false,
|
|
canGoForward: false,
|
|
favicon: '',
|
|
tabs: []
|
|
};
|
|
|
|
function toNavigationUrl(input) {
|
|
const value = (input || '').trim();
|
|
if (!value) return null;
|
|
if (/^(https?:|file:|data:|blob:|chrome:|nebula:\/\/)/i.test(value)) return value;
|
|
if (value.includes('.') && !/\s/.test(value)) return `https://${value}`;
|
|
return `${SEARCH_URL}${encodeURIComponent(value)}`;
|
|
}
|
|
|
|
function postCommand(command, payload = '') {
|
|
if (window.nebulaNative && typeof window.nebulaNative.postMessage === 'function') {
|
|
window.nebulaNative.postMessage(command, String(payload));
|
|
}
|
|
}
|
|
|
|
function renderFavicon(favicon, tab) {
|
|
const url = (tab.favicon || '').trim();
|
|
favicon.className = 'tab-favicon';
|
|
favicon.textContent = '';
|
|
|
|
if (!url) {
|
|
favicon.classList.add('empty');
|
|
return;
|
|
}
|
|
|
|
const image = document.createElement('img');
|
|
image.alt = '';
|
|
image.decoding = 'async';
|
|
image.draggable = false;
|
|
image.addEventListener('load', () => {
|
|
favicon.classList.add('has-favicon');
|
|
});
|
|
image.addEventListener('error', () => {
|
|
image.remove();
|
|
favicon.classList.remove('has-favicon');
|
|
favicon.classList.add('empty');
|
|
});
|
|
|
|
favicon.append(image);
|
|
image.src = url;
|
|
}
|
|
|
|
function renderTabs() {
|
|
const tabsElement = document.querySelector('.tabs');
|
|
const addButton = tabsElement.querySelector('.tab-add');
|
|
const tabs = state.tabs.length
|
|
? state.tabs
|
|
: [{ id: state.id, title: state.title, isLoading: state.isLoading, favicon: state.favicon }];
|
|
|
|
tabsElement.querySelectorAll('.tab').forEach(tab => tab.remove());
|
|
|
|
tabs.forEach(tab => {
|
|
const button = document.createElement('div');
|
|
const isActive = tab.id === state.id;
|
|
button.className = `tab${isActive ? ' active' : ''}`;
|
|
button.setAttribute('role', 'tab');
|
|
button.setAttribute('aria-selected', String(isActive));
|
|
button.tabIndex = 0;
|
|
button.dataset.tabId = String(tab.id);
|
|
|
|
const favicon = document.createElement('span');
|
|
renderFavicon(favicon, tab);
|
|
|
|
const title = document.createElement('span');
|
|
title.className = 'tab-title';
|
|
title.textContent = tab.title || 'New Tab';
|
|
|
|
const loading = document.createElement('span');
|
|
loading.className = 'tab-loading';
|
|
loading.hidden = !tab.isLoading;
|
|
|
|
const close = document.createElement('button');
|
|
close.className = 'tab-close';
|
|
close.type = 'button';
|
|
close.title = 'Close tab';
|
|
close.setAttribute('aria-label', `Close ${tab.title || 'New Tab'}`);
|
|
close.dataset.tabId = String(tab.id);
|
|
close.innerHTML = '<i data-lucide="x"></i>';
|
|
|
|
button.append(favicon, title, loading, close);
|
|
tabsElement.insertBefore(button, addButton);
|
|
});
|
|
|
|
if (window.lucide) lucide.createIcons({ nodes: [tabsElement] });
|
|
}
|
|
|
|
function applyState(nextState) {
|
|
Object.assign(state, nextState || {});
|
|
|
|
const title = state.title || 'New Tab';
|
|
const url = state.url || '';
|
|
const addressInput = document.getElementById('address-input');
|
|
const backButton = document.getElementById('back-button');
|
|
const forwardButton = document.getElementById('forward-button');
|
|
const reloadButton = document.getElementById('reload-button');
|
|
const progressBar = document.getElementById('progress-bar');
|
|
|
|
document.title = `${title} - Nebula`;
|
|
renderTabs();
|
|
backButton.disabled = !state.canGoBack;
|
|
forwardButton.disabled = !state.canGoForward;
|
|
const reloadIcon = state.isLoading ? 'x' : 'rotate-cw';
|
|
reloadButton.dataset.command = state.isLoading ? 'stop' : 'reload';
|
|
reloadButton.innerHTML = `<i data-lucide="${reloadIcon}"></i>`;
|
|
if (window.lucide) lucide.createIcons({ nodes: [reloadButton] });
|
|
|
|
if (document.activeElement !== addressInput) {
|
|
addressInput.value = url;
|
|
}
|
|
|
|
progressBar.style.width = `${Math.max(0, Math.min(1, state.progress || 0)) * 100}%`;
|
|
progressBar.style.opacity = state.isLoading ? '1' : '0';
|
|
|
|
}
|
|
|
|
function wireCommands() {
|
|
document.querySelector('.tabs').addEventListener('click', event => {
|
|
const close = event.target.closest('.tab-close[data-tab-id]');
|
|
if (close) {
|
|
postCommand('close-tab', close.dataset.tabId);
|
|
return;
|
|
}
|
|
|
|
const tab = event.target.closest('.tab[data-tab-id]');
|
|
if (tab && !tab.classList.contains('active')) {
|
|
postCommand('activate-tab', tab.dataset.tabId);
|
|
}
|
|
});
|
|
|
|
document.querySelector('.tabs').addEventListener('auxclick', event => {
|
|
if (event.button !== 1) return;
|
|
|
|
const tab = event.target.closest('.tab[data-tab-id]');
|
|
if (tab) {
|
|
postCommand('close-tab', tab.dataset.tabId);
|
|
}
|
|
});
|
|
|
|
document.querySelectorAll('[data-command]').forEach(button => {
|
|
button.addEventListener('click', () => {
|
|
postCommand(button.dataset.command);
|
|
});
|
|
});
|
|
|
|
document.querySelectorAll('[data-drag-region]').forEach(region => {
|
|
region.addEventListener('pointerdown', event => {
|
|
const interactive = event.target.closest('button, input, .tab, .address-shell');
|
|
if (event.button === 0 && !interactive) {
|
|
postCommand('drag');
|
|
}
|
|
});
|
|
});
|
|
|
|
document.getElementById('address-form').addEventListener('submit', event => {
|
|
event.preventDefault();
|
|
const input = document.getElementById('address-input');
|
|
const target = toNavigationUrl(input.value);
|
|
if (target) {
|
|
postCommand('navigate', target);
|
|
input.blur();
|
|
}
|
|
});
|
|
}
|
|
|
|
window.NebulaChrome = { applyState, postCommand, toNavigationUrl };
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
wireCommands();
|
|
applyState(state);
|
|
});
|