Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/browser/extensions/newtab/lib/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 5 kB image not shown  

Quelle  NewTabMessaging.sys.mjs   Sprache: unbekannt

 
Spracherkennung für: .mjs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

/* 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 https://mozilla.org/MPL/2.0/. */

import {
  actionTypes as at,
  actionCreators as ac,
} from "resource://newtab/common/Actions.mjs";

export class NewTabMessaging {
  constructor() {
    this.initialized = false;
    this.ASRouterDispatch = null;
    this.browserSet = new WeakSet();
  }

  init() {
    if (!this.initialized) {
      this.initialized = true;
      Services.obs.addObserver(this, "newtab-message");
      Services.obs.addObserver(this, "newtab-message-query");
    }
  }

  uninit() {
    Services.obs.removeObserver(this, "newtab-message-query");
    Services.obs.removeObserver(this, "newtab-message");
  }

  observe(subject, topic, _data) {
    if (topic === "newtab-message") {
      let { targetBrowser, message, dispatch } = subject.wrappedJSObject;
      this.ASRouterDispatch = dispatch;
      this.showMessage(targetBrowser, message);
    } else if (topic === "newtab-message-query") {
      let { browser } = subject.wrappedJSObject;
      if (this.browserSet.has(browser.selectedBrowser)) {
        subject.wrappedJSObject.activeNewtabMessage = true;
      }
    }
  }

  async showMessage(targetBrowser, message) {
    if (targetBrowser) {
      let actor =
        targetBrowser.browsingContext.currentWindowGlobal.getActor(
          "AboutNewTab"
        );
      if (actor) {
        let tabDetails = actor.getTabDetails();
        if (tabDetails) {
          // Only send the message for the tab that triggered the message
          this.store.dispatch(
            ac.OnlyToOneContent(
              {
                type: at.MESSAGE_SET,
                // send along portID as well so that the child process can easily just update the single tab
                data: {
                  message,
                  portID: tabDetails.portID,
                },
              },
              tabDetails.portID
            )
          );
          this.store.dispatch(
            ac.OnlyToOneContent(
              {
                type: at.MESSAGE_TOGGLE_VISIBILITY,
                data: {
                  isVisible: true,
                },
              },
              tabDetails.portID
            )
          );
        }
      }
    } else {
      // if targetBrowser is null, send to the preloaded tab / main process
      // This should only run if message is triggered from asrouter during dev
      this.store.dispatch(
        ac.AlsoToPreloaded({
          type: at.MESSAGE_SET,
          data: {
            message,
          },
        })
      );
      // Also force visibility for messages sent from about:asrouter during dev
      this.store.dispatch(
        ac.AlsoToPreloaded({
          type: at.MESSAGE_TOGGLE_VISIBILITY,
          data: {
            isVisible: true,
          },
        })
      );
      // keeping the eager ASRouterDispatch impression, since the intersection observer may not
      // fire reliably when previewing in about:asrouter.
      this.ASRouterDispatch?.({ type: "IMPRESSION", data: message });
    }
  }

  /**
   *
   * @param {string} id ID of message to be blocked
   */
  blockMessage(id) {
    if (id) {
      this.ASRouterDispatch?.({
        type: "BLOCK_MESSAGE_BY_ID",
        data: {
          id,
        },
      });
    }
  }

  /**
   * Called via the IntersectionObserver in MessageWrapper when the message
   * becomes visible in the viewport. Records the ASRouter impression for
   * frequency capping and sends Glean telemetry.
   *
   * @param {object} message
   */
  handleImpression(message) {
    this.sendTelemetry("IMPRESSION", message);
    this.ASRouterDispatch?.({ type: "IMPRESSION", data: message });
  }

  /**
   * Sends telemetry data through ASRouter to
   * match pattern with ASRouterTelemetry
   */
  sendTelemetry(event, message, source = "newtab") {
    const data = {
      action: "newtab_message_user_event",
      event,
      event_context: { source, page: "about:newtab" },
      message_id: message.id,
    };
    this.ASRouterDispatch?.({
      type: "NEWTAB_MESSAGE_TELEMETRY",
      data,
    });
  }

  notifyVisiblity(action) {
    const { browser } = action._target;
    if (browser) {
      // isVisible
      if (action.data) {
        // we dont want to add the browser if it is already part of browserSet
        if (!this.browserSet.has(browser)) {
          this.browserSet.add(browser);
        }
      } else if (this.browserSet.has(browser)) {
        this.browserSet.delete(browser);
      }
    }
  }

  onAction(action) {
    switch (action.type) {
      case at.INIT:
        this.init();
        break;
      case at.UNINIT:
        this.uninit();
        break;
      case at.MESSAGE_IMPRESSION:
        this.handleImpression(action.data);
        break;
      case at.MESSAGE_DISMISS:
        this.sendTelemetry("DISMISS", action.data.message);
        this.store.dispatch(
          ac.AlsoToPreloaded({
            type: at.MESSAGE_TOGGLE_VISIBILITY,
            data: {
              isVisible: false,
            },
          })
        );
        break;
      case at.MESSAGE_CLICK:
        this.sendTelemetry("CLICK", action.data.message, action.data.source);
        break;
      case at.MESSAGE_BLOCK:
        this.blockMessage(action.data);
        break;
      case at.MESSAGE_NOTIFY_VISIBILITY:
        this.notifyVisiblity(action);
        break;
    }
  }
}

[Dauer der Verarbeitung: 0.14 Sekunden, vorverarbeitet 2026-08-25]