mirror of
https://github.com/zen-browser/desktop
synced 2026-04-25 17:15:00 +02:00
204 lines
6.0 KiB
JavaScript
204 lines
6.0 KiB
JavaScript
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import checkForZenUpdates, {
|
|
createWindowUpdateAnimation,
|
|
} from "chrome://browser/content/ZenUpdates.mjs";
|
|
|
|
class ZenStartup {
|
|
#watermarkIgnoreElements = ["zen-toast-container"];
|
|
#hasInitializedLayout = false;
|
|
|
|
isReady = false;
|
|
promiseInitialized = new Promise(resolve => {
|
|
this.promiseInitializedResolve = resolve;
|
|
});
|
|
|
|
init() {
|
|
this.openWatermark();
|
|
this.#changeSidebarLocation();
|
|
this.#zenInitBrowserLayout();
|
|
}
|
|
|
|
get #shouldUseWatermark() {
|
|
return (
|
|
Services.prefs.getBoolPref("zen.watermark.enabled", false) &&
|
|
gZenWorkspaces.shouldHaveWorkspaces
|
|
);
|
|
}
|
|
|
|
#zenInitBrowserLayout() {
|
|
if (this.#hasInitializedLayout) {
|
|
return;
|
|
}
|
|
this.#hasInitializedLayout = true;
|
|
gZenKeyboardShortcutsManager.beforeInit();
|
|
try {
|
|
const kNavbarItems = ["nav-bar", "PersonalToolbar"];
|
|
const kNewContainerId = "zen-appcontent-navbar-container";
|
|
let newContainer = document.getElementById(kNewContainerId);
|
|
for (let id of kNavbarItems) {
|
|
const node = document.getElementById(id);
|
|
if (!node) {
|
|
console.error("Could not find node with id: " + id);
|
|
continue;
|
|
}
|
|
newContainer.appendChild(node);
|
|
}
|
|
// Fix notification deck
|
|
const deckTemplate =
|
|
document.getElementById("tab-notification-deck-template") ||
|
|
document.getElementById("tab-notification-deck");
|
|
|
|
// overlap and interaction issues with vertical tabs
|
|
document.getElementById("browser").prepend(deckTemplate);
|
|
|
|
gZenWorkspaces.init();
|
|
setTimeout(() => {
|
|
gZenUIManager.init();
|
|
this.#checkForWelcomePage();
|
|
}, 0);
|
|
} catch (e) {
|
|
console.error("ZenThemeModifier: Error initializing browser layout", e);
|
|
}
|
|
if (gBrowserInit.delayedStartupFinished) {
|
|
this.delayedStartupFinished();
|
|
} else {
|
|
Services.obs.addObserver(this, "browser-delayed-startup-finished");
|
|
}
|
|
}
|
|
|
|
observe(aSubject, aTopic) {
|
|
// This nsIObserver method allows us to defer initialization until after
|
|
// this window has finished painting and starting up.
|
|
if (aTopic == "browser-delayed-startup-finished" && aSubject == window) {
|
|
Services.obs.removeObserver(this, "browser-delayed-startup-finished");
|
|
this.delayedStartupFinished();
|
|
}
|
|
}
|
|
|
|
delayedStartupFinished() {
|
|
gZenWorkspaces.promiseInitialized.then(async () => {
|
|
await delayedStartupPromise;
|
|
await SessionStore.promiseAllWindowsRestored;
|
|
delete gZenUIManager.promiseInitialized;
|
|
gZenCompactModeManager.init();
|
|
// Fix for https://github.com/zen-browser/desktop/issues/7605, specially in compact mode
|
|
if (gURLBar.hasAttribute("breakout-extend")) {
|
|
gURLBar.focus();
|
|
}
|
|
// A bit of a hack to make sure the tabs toolbar is updated.
|
|
// Just in case we didn't get the right size.
|
|
gZenUIManager.updateTabsToolbar();
|
|
this.closeWatermark();
|
|
document
|
|
.getElementById("tabbrowser-arrowscrollbox")
|
|
.setAttribute("orient", "vertical");
|
|
this.isReady = true;
|
|
this.promiseInitializedResolve();
|
|
delete this.promiseInitializedResolve;
|
|
|
|
setTimeout(() => {
|
|
gZenWorkspaces._invalidateBookmarkContainers();
|
|
});
|
|
});
|
|
}
|
|
|
|
openWatermark() {
|
|
if (!this.#shouldUseWatermark) {
|
|
document.documentElement.removeAttribute("zen-before-loaded");
|
|
return;
|
|
}
|
|
for (let elem of document.querySelectorAll("#browser > *, #urlbar")) {
|
|
elem.style.opacity = 0;
|
|
}
|
|
}
|
|
|
|
closeWatermark() {
|
|
document.documentElement.removeAttribute("zen-before-loaded");
|
|
if (this.#shouldUseWatermark) {
|
|
let elementsToIgnore = this.#watermarkIgnoreElements
|
|
.map(id => "#" + id)
|
|
.join(", ");
|
|
gZenUIManager.motion
|
|
.animate(
|
|
"#browser > *:not(" +
|
|
elementsToIgnore +
|
|
"), #urlbar, #tabbrowser-tabbox > *",
|
|
{
|
|
opacity: [0, 1],
|
|
},
|
|
{
|
|
duration: 0.1,
|
|
}
|
|
)
|
|
.then(() => {
|
|
for (let elem of document.querySelectorAll(
|
|
"#browser > *, #urlbar, #tabbrowser-tabbox > *"
|
|
)) {
|
|
elem.style.removeProperty("opacity");
|
|
}
|
|
});
|
|
}
|
|
window.requestAnimationFrame(() => {
|
|
window.dispatchEvent(new window.Event("resize")); // To recalculate the layout
|
|
});
|
|
}
|
|
|
|
#changeSidebarLocation() {
|
|
const kElementsToAppend = ["sidebar-splitter", "sidebar-box"];
|
|
|
|
const browser = document.getElementById("browser");
|
|
browser.prepend(gNavToolbox);
|
|
|
|
const sidebarPanelWrapper = document.getElementById("tabbrowser-tabbox");
|
|
for (let id of kElementsToAppend) {
|
|
const elem = document.getElementById(id);
|
|
if (elem) {
|
|
sidebarPanelWrapper.prepend(elem);
|
|
}
|
|
}
|
|
}
|
|
|
|
#checkForWelcomePage() {
|
|
const kWelcomeScreenSeenPref = "zen.welcome-screen.seen";
|
|
if (Services.env.get("MOZ_HEADLESS")) {
|
|
Services.prefs.setBoolPref(kWelcomeScreenSeenPref, true);
|
|
return;
|
|
}
|
|
if (!Services.prefs.getBoolPref(kWelcomeScreenSeenPref, false)) {
|
|
Services.prefs.setBoolPref(kWelcomeScreenSeenPref, true);
|
|
Services.prefs.setStringPref(
|
|
"zen.updates.last-build-id",
|
|
Services.appinfo.appBuildID
|
|
);
|
|
Services.prefs.setStringPref(
|
|
"zen.updates.last-version",
|
|
Services.appinfo.version
|
|
);
|
|
Services.scriptloader.loadSubScript(
|
|
"chrome://browser/content/zen-components/ZenWelcome.mjs",
|
|
window
|
|
);
|
|
} else {
|
|
this.#createUpdateAnimation();
|
|
}
|
|
}
|
|
|
|
async #createUpdateAnimation() {
|
|
checkForZenUpdates();
|
|
return await createWindowUpdateAnimation();
|
|
}
|
|
}
|
|
|
|
window.gZenStartup = new ZenStartup();
|
|
|
|
window.addEventListener(
|
|
"MozBeforeInitialXULLayout",
|
|
() => {
|
|
gZenStartup.init();
|
|
},
|
|
{ once: true }
|
|
);
|