Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/linux-raw-sys/src/sparc64/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 107 kB image not shown  

Quelle  backup-settings.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 http://mozilla.org/MPL/2.0/. */

import { html, classMap } from "chrome://global/content/vendor/lit.all.mjs";
import { MozLitElement } from "chrome://global/content/lit-utils.mjs";
import { getErrorL10nId } from "chrome://browser/content/backup/backup-errors.mjs";
import { ERRORS } from "chrome://browser/content/backup/backup-constants.mjs";

// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/backup/turn-on-scheduled-backups.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/backup/turn-off-scheduled-backups.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/backup/restore-from-backup.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/backup/enable-backup-encryption.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/backup/disable-backup-encryption.mjs";

/**
 * The widget for managing the BackupService that is embedded within the main
 * document of about:settings / about:preferences.
 */
export default class BackupSettings extends MozLitElement {
  inProgressTimeout = null;
  showInProgress = false;

  // Decides how long the progress message bar persists for
  MESSAGE_BAR_BUFFER = 3000;

  static properties = {
    backupServiceState: { type: Object },
    _enableEncryptionTypeAttr: { type: String },
  };

  static get queries() {
    return {
      scheduledBackupsButtonEl: "#backup-toggle-scheduled-button",
      archiveSectionEl: "#scheduled-backups",
      restoreSectionEl: "#backup-toggle-restore-button",
      triggerBackupButtonEl: "#backup-trigger-button",
      changePasswordButtonEl: "#backup-change-password-button",
      disableBackupEncryptionEl: "disable-backup-encryption",
      disableBackupEncryptionDialogEl: "#disable-backup-encryption-dialog",
      enableBackupEncryptionEl: "enable-backup-encryption",
      enableBackupEncryptionDialogEl: "#enable-backup-encryption-dialog",
      turnOnScheduledBackupsDialogEl: "#turn-on-scheduled-backups-dialog",
      turnOnScheduledBackupsEl: "turn-on-scheduled-backups",
      turnOffScheduledBackupsEl: "turn-off-scheduled-backups",
      turnOffScheduledBackupsDialogEl: "#turn-off-scheduled-backups-dialog",
      restoreFromBackupEl: "restore-from-backup",
      restoreFromBackupButtonEl: "#backup-toggle-restore-button",
      restoreFromBackupDialogEl: "#restore-from-backup-dialog",
      sensitiveDataCheckboxInputEl: "#backup-sensitive-data-checkbox-input",
      passwordControlsEl: "#sensitive-data",
      lastBackupFileNameEl: "#last-backup-filename",
      lastBackupDateEl: "#last-backup-date",
      backupLocationShowButtonEl: "#backup-location-show",
      backupErrorBarEl: "#create-backup-error",
      backupInProgressMessageBarEl: "#backup-in-progress-message",
    };
  }

  get dialogs() {
    return [
      this.disableBackupEncryptionDialogEl,
      this.enableBackupEncryptionDialogEl,
      this.turnOnScheduledBackupsDialogEl,
      this.turnOffScheduledBackupsDialogEl,
      this.restoreFromBackupDialogEl,
    ];
  }

  /**
   * Creates a BackupPreferences instance and sets the initial default
   * state.
   */
  constructor() {
    super();
    this.backupServiceState = {
      backupDirPath: "",
      backupFileToRestore: null,
      backupFileInfo: null,
      defaultParent: {
        fileName: "",
        path: "",
        iconURL: "",
      },
      encryptionEnabled: false,
      scheduledBackupsEnabled: false,
      lastBackupDate: null,
      lastBackupFileName: "",
      supportBaseLink: "",
      backupInProgress: false,
      recoveryInProgress: false,
      recoveryErrorCode: ERRORS.NONE,
      backupErrorCode: ERRORS.NONE,
      archiveEnabledStatus: false,
      restoreEnabledStatus: false,
    };
    this._enableEncryptionTypeAttr = "";
  }

  /**
   * Dispatches the BackupUI:InitWidget custom event upon being attached to the
   * DOM, which registers with BackupUIChild for BackupService state updates.
   */
  connectedCallback() {
    super.connectedCallback();
    this.dispatchEvent(
      new CustomEvent("BackupUI:InitWidget", { bubbles: true })
    );

    this.addEventListener("dialogCancel", this);
    this.addEventListener("restoreFromBackupConfirm", this);
    this.addEventListener("restoreFromBackupChooseFile", this);
  }

  handleErrorBarDismiss = () => {
    // Reset the pref and reactive state; Lit will re-render without the bar.
    this.dispatchEvent(
      new CustomEvent("BackupUI:ErrorBarDismissed", { bubbles: true })
    );
  };

  handleEvent(event) {
    switch (event.type) {
      case "dialogCancel":
        for (let dialog of this.dialogs) {
          dialog?.close();
        }
        break;
      case "restoreFromBackupConfirm":
        this.dispatchEvent(
          new CustomEvent("BackupUI:RestoreFromBackupFile", {
            bubbles: true,
            composed: true,
            detail: {
              backupPassword: event.detail.backupPassword,
              source: "preferences",
            },
          })
        );
        break;
      case "restoreFromBackupChooseFile":
        this.dispatchEvent(
          new CustomEvent("BackupUI:RestoreFromBackupChooseFile", {
            bubbles: true,
            composed: true,
          })
        );
        break;
    }
  }

  handleBackupTrigger() {
    this.dispatchEvent(
      new CustomEvent("BackupUI:TriggerCreateBackup", {
        bubbles: true,
      })
    );
  }

  handleShowScheduledBackups() {
    if (
      !this.backupServiceState.scheduledBackupsEnabled &&
      this.turnOnScheduledBackupsDialogEl
    ) {
      this.turnOnScheduledBackupsDialogEl.showModal();
    } else if (
      this.backupServiceState.scheduledBackupsEnabled &&
      this.turnOffScheduledBackupsDialogEl
    ) {
      this.turnOffScheduledBackupsDialogEl.showModal();
    }
  }

  async handleToggleBackupEncryption(event) {
    if (event.target.slot) {
      return;
    }

    event.stopPropagation();
    event.preventDefault();

    // User is trying to uncheck the checkbox, meaning encryption is already
    // enabled and should be disabled.
    let toggledToDisable =
      event.target.checked && this.backupServiceState.encryptionEnabled;

    if (toggledToDisable && this.disableBackupEncryptionDialogEl) {
      this.disableBackupEncryptionDialogEl.showModal();
    } else {
      this._enableEncryptionTypeAttr = "set-password";
      await this.updateComplete;
      this.enableBackupEncryptionDialogEl.showModal();
    }
  }

  async handleChangePassword() {
    if (this.enableBackupEncryptionDialogEl) {
      this._enableEncryptionTypeAttr = "change-password";
      await this.updateComplete;
      this.enableBackupEncryptionDialogEl.showModal();
    }
  }

  turnOnScheduledBackupsDialogTemplate() {
    let { fileName, path, iconURL } = this.backupServiceState.defaultParent;
    return html`<dialog
      id="turn-on-scheduled-backups-dialog"
      class="backup-dialog"
      @close=${this.handleTurnOnScheduledBackupsDialogClose}
    >
      <turn-on-scheduled-backups
        source="preferences"
        defaultlabel=${fileName}
        defaultpath=${path}
        defaulticonurl=${iconURL}
        .supportBaseLink=${this.backupServiceState.supportBaseLink}
      ></turn-on-scheduled-backups>
    </dialog>`;
  }

  turnOffScheduledBackupsDialogTemplate() {
    return html`<dialog id="turn-off-scheduled-backups-dialog">
      <turn-off-scheduled-backups
        source="preferences"
      ></turn-off-scheduled-backups>
    </dialog>`;
  }

  restoreFromBackupDialogTemplate() {
    return html`<dialog id="restore-from-backup-dialog">
      <restore-from-backup></restore-from-backup>
    </dialog>`;
  }

  restoreFromBackupTemplate() {
    let restoreL10nID = this.backupServiceState.scheduledBackupsEnabled
      ? "settings-data-backup-restore-scheduled-on"
      : "settings-data-backup-restore-scheduled-off";

    return html`<moz-box-button
        id="backup-toggle-restore-button"
        @click=${this.handleShowRestoreDialog}
        data-l10n-id=${restoreL10nID}
      ></moz-box-button>
      ${this.restoreFromBackupDialogTemplate()}`;
  }

  handleShowRestoreDialog() {
    if (this.restoreFromBackupDialogEl) {
      this.dispatchEvent(
        new CustomEvent("BackupUI:FindBackupsInWellKnownLocations", {
          bubbles: true,
          composed: true,
          detail: { source: "preferences" },
        })
      );
      this.restoreFromBackupDialogEl.showModal();
      this.restoreFromBackupEl.resizeTextarea();
    }
  }

  handleLocationPickerClick(e) {
    // Let clicks on the "show" button through.
    let showButton = this.shadowRoot?.querySelector("#backup-location-show");
    if (showButton && e.composedPath().includes(showButton)) {
      return;
    }

    // Override the built-in moz-input-folder file picker with our own in the
    // parent process to avoid propogating the picked path between actors.
    e.stopPropagation();
    this.handleEditBackupLocation();
  }

  handleShowBackupLocation() {
    this.dispatchEvent(
      new CustomEvent("BackupUI:ShowBackupLocation", {
        bubbles: true,
      })
    );
  }

  handleEditBackupLocation() {
    this.dispatchEvent(
      new CustomEvent("BackupUI:ShowFilepicker", {
        bubbles: true,
        detail: {
          win: window.browsingContext,
          alsoDeleteLastBackup: true,
        },
      })
    );
  }

  handleTurnOnScheduledBackupsDialogClose() {
    this.turnOnScheduledBackupsEl.reset();
  }

  handleEnableBackupEncryptionDialogClose() {
    this.enableBackupEncryptionEl.reset();
  }

  enableBackupEncryptionDialogTemplate() {
    return html`<dialog
      id="enable-backup-encryption-dialog"
      class="backup-dialog"
      @close=${this.handleEnableBackupEncryptionDialogClose}
    >
      <enable-backup-encryption
        type=${this._enableEncryptionTypeAttr}
        .supportBaseLink=${this.backupServiceState.supportBaseLink}
      ></enable-backup-encryption>
    </dialog>`;
  }

  disableBackupEncryptionDialogTemplate() {
    return html`<dialog id="disable-backup-encryption-dialog">
      <disable-backup-encryption></disable-backup-encryption>
    </dialog>`;
  }

  lastBackupInfoTemplate() {
    // The lastBackupDate is stored in preferences, which only accepts
    // 32-bit signed values, so we automatically divide it by 1000 before
    // storing it. We need to re-multiply it by 1000 to get Fluent to render
    // the right time.
    let backupDateArgs = {
      date: this.backupServiceState.lastBackupDate * 1000,
    };
    let backupFileNameArgs = {
      fileName: this.backupServiceState.lastBackupFileName,
    };

    return html`
      <div id="last-backup-info" slot="description">
        <div
          id="last-backup-date"
          data-l10n-id="settings-data-backup-last-backup-date"
          data-l10n-args=${JSON.stringify(backupDateArgs)}
        ></div>
        <div
          id="last-backup-filename"
          data-l10n-id="settings-data-backup-last-backup-filename"
          data-l10n-args=${JSON.stringify(backupFileNameArgs)}
        ></div>
      </div>
    `;
  }

  backupLocationTemplate() {
    let { backupDirPath } = this.backupServiceState;

    return html`
      <moz-input-folder
        id="last-backup-location"
        data-l10n-id="settings-data-backup-last-backup-location2"
        .value=${backupDirPath}
        @click=${{
          handleEvent: e => this.handleLocationPickerClick(e),
          capture: true,
        }}
      >
        <moz-button
          id="backup-location-show"
          @click=${this.handleShowBackupLocation}
          data-l10n-id="settings-data-backup-last-backup-location-show-in-folder"
          slot="actions"
        ></moz-button>
      </moz-input-folder>
    `;
  }

  sensitiveDataTemplate() {
    return html`
      <moz-fieldset data-l10n-id="settings-sensitive-data" id="sensitive-data">
        <moz-checkbox
          id="backup-sensitive-data-checkbox-input"
          data-l10n-id="settings-data-toggle-encryption-label2"
          @click=${{
            handleEvent: e => this.handleToggleBackupEncryption(e),
            capture: true,
          }}
          .checked=${this.backupServiceState.encryptionEnabled}
        >
          <a
            slot="support-link"
            is="moz-support-link"
            support-page="firefox-backup"
            data-l10n-id="settings-data-toggle-encryption-support-link"
            utm-content="encryption"
          ></a>
          <moz-box-button
            id="backup-change-password-button"
            @click=${this.handleChangePassword}
            data-l10n-id="settings-data-change-password2"
            slot="nested"
          ></moz-box-button>
        </moz-checkbox>
      </moz-fieldset>
    `;
  }

  inProgressMessageBarTemplate() {
    return html`
      <moz-message-bar
        type="info"
        id="backup-in-progress-message"
        data-l10n-id="settings-data-backup-in-progress-message"
      ></moz-message-bar>
    `;
  }

  errorBarTemplate() {
    const l10nId = getErrorL10nId(this.backupServiceState.backupErrorCode);
    return html`
      <moz-message-bar
        type="error"
        id="create-backup-error"
        dismissable
        data-l10n-id=${l10nId}
        @message-bar:user-dismissed=${this.handleErrorBarDismiss}
      >
        <a
          id="create-backup-error-learn-more-link"
          slot="support-link"
          is="moz-support-link"
          support-page="firefox-backup"
          data-l10n-id="settings-data-toggle-encryption-support-link"
          utm-content="backup-error"
        ></a>
      </moz-message-bar>
    `;
  }

  render() {
    let scheduledBackupsEnabledState =
      this.backupServiceState.scheduledBackupsEnabled;

    let scheduledBackupsEnabledL10nID = scheduledBackupsEnabledState
      ? "settings-data-backup-scheduled-backups-on2"
      : "settings-data-backup-scheduled-backups-off2";

    let backupToggleL10nID = scheduledBackupsEnabledState
      ? "settings-data-backup-toggle-off2"
      : "settings-data-backup-toggle-on2";

    let scheduledBackupsIcon = scheduledBackupsEnabledState
      ? "chrome://global/skin/icons/check-filled.svg"
      : "chrome://global/skin/icons/warning.svg";

    if (this.backupServiceState.backupInProgress) {
      if (!this.showInProgress) {
        this.showInProgress = true;
        // Keep the in progress message bar visible for at least 3 seconds
        clearTimeout(this.inProgressTimeout);
        this.inProgressTimeout = setTimeout(() => {
          this.showInProgress = false;
          this.requestUpdate();
        }, this.MESSAGE_BAR_BUFFER);
      }
    }

    return html`<link
        rel="stylesheet"
        href="chrome://browser/skin/preferences/preferences.css"
      />
      <link
        rel="stylesheet"
        href="chrome://browser/content/backup/backup-settings.css"
      />
      ${this.backupServiceState.backupErrorCode
        ? this.errorBarTemplate()
        : null}
      ${this.showInProgress ? this.inProgressMessageBarTemplate() : null}
      ${this.turnOnScheduledBackupsDialogTemplate()}
      ${this.turnOffScheduledBackupsDialogTemplate()}
      ${this.enableBackupEncryptionDialogTemplate()}
      ${this.disableBackupEncryptionDialogTemplate()}
      <moz-box-group>
        ${this.backupServiceState.archiveEnabledStatus
          ? html`<moz-box-item
                id="scheduled-backups"
                class=${classMap({
                  "scheduled-backups-enabled": scheduledBackupsEnabledState,
                  "scheduled-backups-disabled": !scheduledBackupsEnabledState,
                })}
                data-l10n-id=${scheduledBackupsEnabledL10nID}
                iconsrc=${scheduledBackupsIcon}
              >
                ${this.backupServiceState.lastBackupDate
                  ? this.lastBackupInfoTemplate()
                  : null}
                ${scheduledBackupsEnabledState
                  ? html`
                      <moz-button
                        id="backup-trigger-button"
                        @click=${this.handleBackupTrigger}
                        data-l10n-id="settings-data-backup-trigger-button"
                        ?disabled=${this.showInProgress}
                        slot="actions"
                      ></moz-button>
                    `
                  : null}
              </moz-box-item>
              <moz-box-button
                id="backup-toggle-scheduled-button"
                @click=${this.handleShowScheduledBackups}
                data-l10n-id=${backupToggleL10nID}
              ></moz-box-button>`
          : null}
        ${this.backupServiceState.restoreEnabledStatus
          ? this.restoreFromBackupTemplate()
          : null}
      </moz-box-group>
      ${this.backupServiceState.archiveEnabledStatus &&
      this.backupServiceState.scheduledBackupsEnabled
        ? html`${this.backupLocationTemplate()}${this.sensitiveDataTemplate()}`
        : null}`;
  }
}

customElements.define("backup-settings", BackupSettings);

[zur Elbe Produktseite wechseln0.94Quellennavigators]