/* 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/. */ const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { BrowserUtils: "resource://gre/modules/BrowserUtils.sys.mjs", SyncedTabs: "resource://services-sync/SyncedTabs.sys.mjs", }); const { SyncedTabsErrorHandler } = ChromeUtils.importESModule( "resource:///modules/firefox-view-synced-tabs-error-handler.sys.mjs" ); const { TabsSetupFlowManager } = ChromeUtils.importESModule( "resource:///modules/firefox-view-tabs-setup-manager.sys.mjs" ); import { html, ifDefined, when, } from "chrome://global/content/vendor/lit.all.mjs"; import { ViewPage } from "./viewpage.mjs"; const SYNCED_TABS_CHANGED = "services.sync.tabs.changed"; const TOPIC_SETUPSTATE_CHANGED = "firefox-view.setupstate.changed"; const UI_OPEN_STATE = "browser.tabs.firefox-view.ui-state.tab-pickup.open"; class SyncedTabsInView extends ViewPage { constructor() { super(); this.boundObserve = (...args) => this.observe(...args); this._currentSetupStateIndex = -1; this.errorState = null; this._id = Math.floor(Math.random() * 10e6); this.currentSyncedTabs = []; if (this.overview) { this.maxTabsLength = 6; // 5 tabs plus the device row } else { // Setting maxTabsLength to -1 for no max this.maxTabsLength = -1; } this.devices = []; this.fullyUpdated = false; } static properties = { ...ViewPage.properties, errorState: { type: Number }, currentSyncedTabs: { type: Array }, _currentSetupStateIndex: { type: Number }, devices: { type: Array }, }; connectedCallback() { super.connectedCallback(); this.addEventListener("click", this); this.ownerDocument.addEventListener("visibilitychange", this); Services.obs.addObserver(this.boundObserve, TOPIC_SETUPSTATE_CHANGED); Services.obs.addObserver(this.boundObserve, SYNCED_TABS_CHANGED); this.updateStates(); this.onVisibilityChange(); } cleanup() { TabsSetupFlowManager.updateViewVisibility(this._id, "unloaded"); this.ownerDocument?.removeEventListener("visibilitychange", this); Services.obs.removeObserver(this.boundObserve, TOPIC_SETUPSTATE_CHANGED); Services.obs.removeObserver(this.boundObserve, SYNCED_TABS_CHANGED); } disconnectedCallback() { this.cleanup(); } handleEvent(event) { if (event.type == "click" && event.target.dataset.action) { const { ErrorType } = SyncedTabsErrorHandler; switch (event.target.dataset.action) { case `${ErrorType.SYNC_ERROR}`: case `${ErrorType.NETWORK_OFFLINE}`: case `${ErrorType.PASSWORD_LOCKED}`: { TabsSetupFlowManager.tryToClearError(); break; } case `${ErrorType.SIGNED_OUT}`: case "sign-in": { TabsSetupFlowManager.openFxASignup(event.target.ownerGlobal); break; } case "add-device": { TabsSetupFlowManager.openFxAPairDevice(event.target.ownerGlobal); break; } case "sync-tabs-disabled": { TabsSetupFlowManager.syncOpenTabs(event.target); break; } case `${ErrorType.SYNC_DISCONNECTED}`: { const win = event.target.ownerGlobal; const { switchToTabHavingURI } = win.docShell.chromeEventHandler.ownerGlobal; switchToTabHavingURI( "about:preferences?action=choose-what-to-sync#sync", true, {} ); break; } } } if (event.type == "change") { TabsSetupFlowManager.syncOpenTabs(event.target); } // Returning to fxview seems like a likely time for a device check if (event.type == "visibilitychange") { this.onVisibilityChange(); } } onVisibilityChange() { const isVisible = document.visibilityState == "visible"; const isOpen = this.open; if (isVisible && isOpen) { this.update(); TabsSetupFlowManager.updateViewVisibility(this._id, "visible"); } else { TabsSetupFlowManager.updateViewVisibility( this._id, isVisible ? "closed" : "hidden" ); } } async observe(subject, topic, errorState) { if (topic == TOPIC_SETUPSTATE_CHANGED) { this.updateStates({ errorState }); } if (topic == SYNCED_TABS_CHANGED) { this.getSyncedTabData(); } } updateStates({ stateIndex = TabsSetupFlowManager.uiStateIndex, errorState = SyncedTabsErrorHandler.getErrorType(), } = {}) { if (stateIndex == 4 && this._currentSetupStateIndex !== stateIndex) { // trigger an initial request for the synced tabs list this.getSyncedTabData(); } this._currentSetupStateIndex = stateIndex; this.errorState = errorState; } actionMappings = { "sign-in": { header: "firefoxview-syncedtabs-signin-header", description: "firefoxview-syncedtabs-signin-description", buttonLabel: "firefoxview-syncedtabs-signin-primarybutton", }, "add-device": { header: "firefoxview-syncedtabs-adddevice-header", description: "firefoxview-syncedtabs-adddevice-description", buttonLabel: "firefoxview-syncedtabs-adddevice-primarybutton", descriptionLink: { name: "url", url: "https://support.mozilla.org/kb/how-do-i-set-sync-my-computer#w_connect-additional-devices-to-sync", }, }, "sync-tabs-disabled": { header: "firefoxview-syncedtabs-synctabs-header", description: "firefoxview-syncedtabs-synctabs-description", checkboxLabel: "firefoxview-syncedtabs-synctabs-checkbox", }, }; generateMessageCard({ error = false, action, errorState }) { errorState = errorState || this.errorState; let header, description, descriptionLink, buttonLabel, checkboxLabel, headerIconUrl, mainImageUrl; let descriptionArray; if (error) { let link; ({ header, description, link, buttonLabel } = SyncedTabsErrorHandler.getFluentStringsForErrorType(errorState)); action = `${errorState}`; headerIconUrl = "chrome://global/skin/icons/info-filled.svg"; mainImageUrl = "chrome://browser/content/firefoxview/synced-tabs-error.svg"; descriptionArray = [description]; if (errorState == "password-locked") { descriptionLink = {}; // This is ugly, but we need to special case this link so we can // coexist with the old view. descriptionArray.push("firefoxview-syncedtab-password-locked-link"); descriptionLink.name = "syncedtab-password-locked-link"; descriptionLink.url = link.href; } } else { header = this.actionMappings[action].header; description = this.actionMappings[action].description; buttonLabel = this.actionMappings[action].buttonLabel; checkboxLabel = this.actionMappings[action].checkboxLabel; descriptionLink = this.actionMappings[action].descriptionLink; mainImageUrl = "chrome://browser/content/firefoxview/synced-tabs-error.svg"; descriptionArray = [description]; } return html`
`; } onOpenLink(event) { let currentWindow = this.getWindow(); if (currentWindow.openTrustedLinkIn) { let where = lazy.BrowserUtils.whereToOpenLink( event.detail.originalEvent, false, true ); if (where == "current") { where = "tab"; } currentWindow.openTrustedLinkIn(event.originalTarget.url, where); } } onContextMenu(e) { this.triggerNode = e.originalTarget; e.target.querySelector("panel-list").toggle(e.detail.originalEvent); } panelListTemplate() { return html`
`; } noDeviceTabsTemplate(deviceName, deviceType) { if (this.overview) { return html` ${this.deviceTemplate(deviceName, deviceType, [])}
`; } return html`

${deviceName}

`; } deviceTemplate(deviceName, deviceType, tabs) { let tabItems = this.getTabItems(tabs); if (this.overview) { /* Insert device at the beginning of the tabs array */ let icon; switch (deviceType) { case "phone": icon = "chrome://browser/skin/device-phone.svg"; break; case "desktop": icon = "chrome://browser/skin/device-desktop.svg"; break; case "tablet": icon = "chrome://browser/skin/device-tablet.svg"; break; } tabItems.unshift({ icon, title: deviceName, }); } return html`${when( !this.overview, () => html`

${deviceName}

` )} ${when( this.overview, () => html`

${deviceName}

` )} ${this.panelListTemplate()}
`; } generateTabList() { let renderArray = []; let renderInfo = {}; for (let tab of this.currentSyncedTabs) { if (!(tab.client in renderInfo)) { renderInfo[tab.client] = { name: tab.device, deviceType: tab.deviceType, tabs: [], }; } renderInfo[tab.client].tabs.push(tab); } // Add devices without tabs for (let device of this.devices) { if (!(device.id in renderInfo)) { renderInfo[device.id] = { name: device.name, deviceType: device.clientType, tabs: [], }; } } for (let id in renderInfo) { if (renderInfo[id].tabs.length) { if (this.overview) { renderArray.push( this.deviceTemplate( renderInfo[id].name, renderInfo[id].deviceType, renderInfo[id].tabs ) ); } else { renderArray.push( html`${this.deviceTemplate( renderInfo[id].name, renderInfo[id].deviceType, renderInfo[id].tabs )}` ); } } else { renderArray.push( this.noDeviceTabsTemplate( renderInfo[id].name, renderInfo[id].deviceType ) ); } } return renderArray; } generateCardContent() { switch (this._currentSetupStateIndex) { case 0 /* error-state */: if (this.errorState) { return this.generateMessageCard({ error: true }); } break; case 1 /* not-signed-in */: if (Services.prefs.prefHasUserValue("services.sync.lastversion")) { // If this pref is set, the user has signed out of sync. // This path is also taken if we are disconnected from sync. See bug 1784055 return this.generateMessageCard({ error: true, errorState: "signed-out", }); } return this.generateMessageCard({ action: "sign-in" }); case 2 /* connect-secondary-device*/: return this.generateMessageCard({ action: "add-device" }); case 3 /* disabled-tab-sync */: return this.generateMessageCard({ action: "sync-tabs-disabled" }); case 4 /* synced-tabs-loaded*/: return this.generateTabList(); } return html``; } render() { this.open = !TabsSetupFlowManager.isTabSyncSetupComplete || Services.prefs.getBoolPref(UI_OPEN_STATE, true); let renderArray = []; renderArray.push(html` `); renderArray.push(html` `); if (!this.overview) { renderArray.push(html`
`); } if (this.overview) { renderArray.push( html` >

${this.generateCardContent()}
` ); } else { renderArray.push(this.generateCardContent()); } return renderArray; } async onReload() { await TabsSetupFlowManager.syncOnPageReload(); } getTabItems(tabs) { tabs = tabs || this.tabs; return tabs?.map(tab => ({ icon: tab.icon, title: tab.title, time: tab.lastUsed * 1000, url: tab.url, primaryL10nId: "firefoxview-tabs-list-tab-button", primaryL10nArgs: JSON.stringify({ targetURI: tab.url }), secondaryL10nId: "firefoxview-close-button", })); } updateTabsList(syncedTabs) { if (!syncedTabs.length) { this.currentSyncedTabs = syncedTabs; this.sendTabTelemetry(0); } const tabsToRender = syncedTabs; // Return early if new tabs are the same as previous ones if ( JSON.stringify(tabsToRender) == JSON.stringify(this.currentSyncedTabs) ) { return; } this.currentSyncedTabs = tabsToRender; // Record the full tab count this.sendTabTelemetry(syncedTabs.length); } async getSyncedTabData() { this.devices = await lazy.SyncedTabs.getTabClients(); let tabs = await lazy.SyncedTabs.getRecentTabs(50, { removeAllDupes: false, removeDeviceDupes: true, }); this.updateTabsList(tabs); } updated() { this.fullyUpdated = true; } sendTabTelemetry(numTabs) { /* Services.telemetry.recordEvent( "firefoxview-next", "synced_tabs", "tabs", null, { count: numTabs.toString(), } ); */ } } customElements.define("view-syncedtabs", SyncedTabsInView);