Files
tubestation/browser/components/screenshots/content/screenshots.js
Sam Foster c20c018e69 Bug 1845796 - Rework the flow in ScreenshotsUtils to make exit an explicit outcome rather than a side-effect. r=niklas
* Add a UIPhases / getUIPhase to figure out where we are in the flow, and get the UI into the right state
* Refactor to get rid of a bunch of implicit side-effects:
  - Separate out getting the panel from creating it
  - closePanel only closes the buttons panel
  - Add a closeOverlay so we do that and only that when needed
* When the preview dialog closes, we expect to exit unless exitOnPreviewClose was set false
* Keep some state for each browser using a weakmap so we can better handle re-entry (and later, re-focusing)

Differential Revision: https://phabricator.services.mozilla.com/D185379
2023-09-19 00:14:27 +00:00

94 lines
2.8 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/. */
/* eslint-env mozilla/browser-window */
"use strict";
ChromeUtils.defineESModuleGetters(this, {
Downloads: "resource://gre/modules/Downloads.sys.mjs",
FileUtils: "resource://gre/modules/FileUtils.sys.mjs",
ScreenshotsUtils: "resource:///modules/ScreenshotsUtils.sys.mjs",
});
class ScreenshotsUI extends HTMLElement {
constructor() {
super();
// we get passed the <browser> as a param via TabDialogBox.open()
this.openerBrowser = window.arguments[0];
}
async connectedCallback() {
this.initialize();
}
initialize() {
if (this._initialized) {
return;
}
this._initialized = true;
let template = this.ownerDocument.getElementById(
"screenshots-dialog-template"
);
let templateContent = template.content;
this.appendChild(templateContent.cloneNode(true));
this._retryButton = this.querySelector("#retry");
this._retryButton.addEventListener("click", this);
this._cancelButton = this.querySelector("#cancel");
this._cancelButton.addEventListener("click", this);
this._copyButton = this.querySelector("#copy");
this._copyButton.addEventListener("click", this);
this._downloadButton = this.querySelector("#download");
this._downloadButton.addEventListener("click", this);
}
close() {
URL.revokeObjectURL(document.getElementById("placeholder-image").src);
window.close();
}
async handleEvent(event) {
if (event.type == "click" && event.currentTarget == this._cancelButton) {
this.close();
ScreenshotsUtils.recordTelemetryEvent("canceled", "preview_cancel", {});
} else if (
event.type == "click" &&
event.currentTarget == this._copyButton
) {
this.saveToClipboard(
this.ownerDocument.getElementById("placeholder-image").src
);
} else if (
event.type == "click" &&
event.currentTarget == this._downloadButton
) {
await this.saveToFile(
this.ownerDocument.getElementById("placeholder-image").src
);
} else if (
event.type == "click" &&
event.currentTarget == this._retryButton
) {
ScreenshotsUtils.scheduleRetry(this.openerBrowser, "preview_retry");
this.close();
}
}
async saveToFile(dataUrl) {
await ScreenshotsUtils.downloadScreenshot(
null,
dataUrl,
this.openerBrowser
);
ScreenshotsUtils.recordTelemetryEvent("download", "preview_download", {});
this.close();
}
saveToClipboard(dataUrl) {
ScreenshotsUtils.copyScreenshot(dataUrl, this.openerBrowser);
ScreenshotsUtils.recordTelemetryEvent("copy", "preview_copy", {});
this.close();
}
}
customElements.define("screenshots-ui", ScreenshotsUI);