diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /browser/components/newtab/lib/Spotlight.jsm | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/newtab/lib/Spotlight.jsm')
-rw-r--r-- | browser/components/newtab/lib/Spotlight.jsm | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/browser/components/newtab/lib/Spotlight.jsm b/browser/components/newtab/lib/Spotlight.jsm new file mode 100644 index 0000000000..b194929c64 --- /dev/null +++ b/browser/components/newtab/lib/Spotlight.jsm @@ -0,0 +1,117 @@ +/* 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/. */ +"use strict"; + +const { XPCOMUtils } = ChromeUtils.importESModule( + "resource://gre/modules/XPCOMUtils.sys.mjs" +); + +const lazy = {}; + +XPCOMUtils.defineLazyModuleGetters(lazy, { + AboutWelcomeTelemetry: + "resource://activity-stream/aboutwelcome/lib/AboutWelcomeTelemetry.jsm", + RemoteImages: "resource://activity-stream/lib/RemoteImages.jsm", + SpecialMessageActions: + "resource://messaging-system/lib/SpecialMessageActions.jsm", +}); + +XPCOMUtils.defineLazyGetter( + lazy, + "AWTelemetry", + () => new lazy.AboutWelcomeTelemetry() +); + +const Spotlight = { + sendUserEventTelemetry(event, message, dispatch) { + const message_id = + message.template === "multistage" ? message.content.id : message.id; + const ping = { + message_id, + event, + }; + dispatch({ + type: "SPOTLIGHT_TELEMETRY", + data: { action: "spotlight_user_event", ...ping }, + }); + }, + + defaultDispatch(message) { + if (message.type === "SPOTLIGHT_TELEMETRY") { + const { message_id, event } = message.data; + lazy.AWTelemetry.sendTelemetry({ message_id, event }); + } + }, + + /** + * Shows spotlight tab or window modal specific to the given browser + * @param browser The browser for spotlight display + * @param message Message containing content to show + * @param dispatchCFRAction A function to dispatch resulting actions + * @return boolean value capturing if spotlight was displayed + */ + async showSpotlightDialog(browser, message, dispatch = this.defaultDispatch) { + const win = browser.ownerGlobal; + if (win.gDialogBox.isOpen) { + return false; + } + const spotlight_url = "chrome://browser/content/spotlight.html"; + + const dispatchCFRAction = + // This also blocks CFR impressions, which is fine for current use cases. + message.content?.metrics === "block" ? () => {} : dispatch; + let params = { primaryBtn: false, secondaryBtn: false }; + + // There are two events named `IMPRESSION` the first one refers to telemetry + // while the other refers to ASRouter impressions used for the frequency cap + this.sendUserEventTelemetry("IMPRESSION", message, dispatchCFRAction); + dispatchCFRAction({ type: "IMPRESSION", data: message }); + + const unload = await lazy.RemoteImages.patchMessage(message.content.logo); + + if (message.content?.modal === "tab") { + let { closedPromise } = win.gBrowser.getTabDialogBox(browser).open( + spotlight_url, + { + features: "resizable=no", + allowDuplicateDialogs: false, + }, + [message.content, params] + ); + await closedPromise; + } else { + await win.gDialogBox.open(spotlight_url, [message.content, params]); + } + + if (unload) { + unload(); + } + + // If dismissed report telemetry and exit + if (!params.secondaryBtn && !params.primaryBtn) { + this.sendUserEventTelemetry("DISMISS", message, dispatchCFRAction); + return true; + } + + if (params.secondaryBtn) { + this.sendUserEventTelemetry("DISMISS", message, dispatchCFRAction); + lazy.SpecialMessageActions.handleAction( + message.content.body.secondary.action, + browser + ); + } + + if (params.primaryBtn) { + this.sendUserEventTelemetry("CLICK", message, dispatchCFRAction); + lazy.SpecialMessageActions.handleAction( + message.content.body.primary.action, + browser + ); + } + + return true; + }, +}; + +const EXPORTED_SYMBOLS = ["Spotlight"]; |