зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1129896 - Part 2 of 2 - Convert the shared front-end code to a JavaScript code module. r=mak
--HG-- rename : browser/components/downloads/content/downloadsViewCommon.js => browser/components/downloads/DownloadsViewUI.jsm
This commit is contained in:
Родитель
640e8f8b8a
Коммит
cd4b3c7397
|
@ -7,7 +7,6 @@
|
|||
<script type="application/javascript" src="chrome://global/content/viewZoomOverlay.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/places/browserPlacesViews.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/browser.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/downloads/downloadsViewCommon.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/downloads/downloads.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/downloads/indicator.js"/>
|
||||
<script type="application/javascript" src="chrome://browser/content/customizableui/panelUI.js"/>
|
||||
|
|
|
@ -323,6 +323,17 @@ this.DownloadsCommon = {
|
|||
return nsIDM.DOWNLOAD_NOTSTARTED;
|
||||
},
|
||||
|
||||
/**
|
||||
* Helper function required because the Downloads Panel and the Downloads View
|
||||
* don't share the controller yet.
|
||||
*/
|
||||
removeAndFinalizeDownload(download) {
|
||||
Downloads.getList(Downloads.ALL)
|
||||
.then(list => list.remove(download))
|
||||
.then(() => download.finalize(true))
|
||||
.catch(Cu.reportError);
|
||||
},
|
||||
|
||||
/**
|
||||
* Given an iterable collection of Download objects, generates and returns
|
||||
* statistics about that collection.
|
||||
|
@ -334,7 +345,6 @@ this.DownloadsCommon = {
|
|||
*
|
||||
* numActive : The total number of downloads.
|
||||
* numPaused : The total number of paused downloads.
|
||||
* numScanning : The total number of downloads being scanned.
|
||||
* numDownloading : The total number of downloads being downloaded.
|
||||
* totalSize : The total size of all downloads once completed.
|
||||
* totalTransferred: The total amount of transferred data for these
|
||||
|
@ -348,7 +358,6 @@ this.DownloadsCommon = {
|
|||
let summary = {
|
||||
numActive: 0,
|
||||
numPaused: 0,
|
||||
numScanning: 0,
|
||||
numDownloading: 0,
|
||||
totalSize: 0,
|
||||
totalTransferred: 0,
|
||||
|
@ -658,7 +667,7 @@ DownloadsDataCtor.prototype = {
|
|||
* True if there are finished downloads that can be removed from the list.
|
||||
*/
|
||||
get canRemoveFinished() {
|
||||
for (let download of this.oldDownloadStates.keys()) {
|
||||
for (let download of this.downloads) {
|
||||
// Stopped, paused, and failed downloads with partial data are removed.
|
||||
if (download.stopped && !(download.canceled && download.hasPartialData)) {
|
||||
return true;
|
||||
|
@ -805,7 +814,7 @@ DownloadsDataCtor.prototype = {
|
|||
|
||||
// Sort backwards by start time, ensuring that the most recent
|
||||
// downloads are added first regardless of their state.
|
||||
let downloadsArray = [...this.oldDownloadStates.keys()];
|
||||
let downloadsArray = [...this.downloads];
|
||||
downloadsArray.sort((a, b) => b.startTime - a.startTime);
|
||||
downloadsArray.forEach(download => aView.onDownloadAdded(download, false));
|
||||
|
||||
|
@ -1208,7 +1217,7 @@ DownloadsIndicatorDataCtor.prototype = {
|
|||
* to generate statistics about the downloads we care about - in this case,
|
||||
* it's all active downloads.
|
||||
*/
|
||||
_activeDownloads() {
|
||||
* _activeDownloads() {
|
||||
let downloads = this._isPrivate ? PrivateDownloadsData.downloads
|
||||
: DownloadsData.downloads;
|
||||
for (let download of downloads) {
|
||||
|
@ -1404,7 +1413,7 @@ DownloadsSummaryData.prototype = {
|
|||
* it's the downloads in this._downloads after the first few to exclude,
|
||||
* which was set when constructing this DownloadsSummaryData instance.
|
||||
*/
|
||||
_downloadsForSummary() {
|
||||
* _downloadsForSummary() {
|
||||
if (this._downloads.length > 0) {
|
||||
for (let i = this._numToExclude; i < this._downloads.length; ++i) {
|
||||
yield this._downloads[i];
|
||||
|
|
|
@ -3,16 +3,17 @@
|
|||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
/*
|
||||
* This file is loaded in every window that uses the "download.xml" binding, and
|
||||
* This module is imported by code that uses the "download.xml" binding, and
|
||||
* provides prototypes for objects that handle input and display information.
|
||||
*
|
||||
* This file lazily imports common JavaScript modules in the window scope. Most
|
||||
* of these modules are generally already declared before this file is included.
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
let { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
this.EXPORTED_SYMBOLS = [
|
||||
"DownloadsViewUI",
|
||||
];
|
||||
|
||||
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
|
||||
|
@ -20,22 +21,10 @@ XPCOMUtils.defineLazyModuleGetter(this, "DownloadUtils",
|
|||
"resource://gre/modules/DownloadUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadsCommon",
|
||||
"resource:///modules/DownloadsCommon.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "FileUtils",
|
||||
"resource://gre/modules/FileUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "NetUtil",
|
||||
"resource://gre/modules/NetUtil.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
||||
"resource://gre/modules/osfile.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "PlacesUtils",
|
||||
"resource://gre/modules/PlacesUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "PrivateBrowsingUtils",
|
||||
"resource://gre/modules/PrivateBrowsingUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Promise",
|
||||
"resource://gre/modules/Promise.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Services",
|
||||
"resource://gre/modules/Services.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Task",
|
||||
"resource://gre/modules/Task.jsm");
|
||||
|
||||
this.DownloadsViewUI = {};
|
||||
|
||||
/**
|
||||
* A download element shell is responsible for handling the commands and the
|
||||
|
@ -50,9 +39,9 @@ XPCOMUtils.defineLazyModuleGetter(this, "Task",
|
|||
* HistoryDownloadElementShell and the DownloadsViewItem for the panel. The
|
||||
* history view may use a HistoryDownload object in place of a Download object.
|
||||
*/
|
||||
function DownloadElementShell() {}
|
||||
this.DownloadsViewUI.DownloadElementShell = function () {}
|
||||
|
||||
DownloadElementShell.prototype = {
|
||||
this.DownloadsViewUI.DownloadElementShell.prototype = {
|
||||
/**
|
||||
* The richlistitem for the download, initialized by the derived object.
|
||||
*/
|
||||
|
@ -96,8 +85,10 @@ DownloadElementShell.prototype = {
|
|||
get _progressElement() {
|
||||
if (!this.__progressElement) {
|
||||
// If the element is not available now, we will try again the next time.
|
||||
this.__progressElement = document.getAnonymousElementByAttribute(
|
||||
this.element, "anonid", "progressmeter");
|
||||
this.__progressElement =
|
||||
this.element.ownerDocument.getAnonymousElementByAttribute(
|
||||
this.element, "anonid",
|
||||
"progressmeter");
|
||||
}
|
||||
return this.__progressElement;
|
||||
},
|
||||
|
@ -143,7 +134,7 @@ DownloadElementShell.prototype = {
|
|||
|
||||
// Dispatch the ValueChange event for accessibility, if possible.
|
||||
if (this._progressElement) {
|
||||
let event = document.createEvent("Events");
|
||||
let event = this.element.ownerDocument.createEvent("Events");
|
||||
event.initEvent("ValueChange", true, true);
|
||||
this._progressElement.dispatchEvent(event);
|
||||
}
|
||||
|
@ -173,26 +164,28 @@ DownloadElementShell.prototype = {
|
|||
let tip = "";
|
||||
|
||||
if (!this.download.stopped) {
|
||||
let total = this.download.hasProgress ? this.download.totalBytes : -1;
|
||||
let totalBytes = this.download.hasProgress ? this.download.totalBytes
|
||||
: -1;
|
||||
// By default, extended status information including the individual
|
||||
// download rate is displayed in the tooltip. The history view overrides
|
||||
// the getter and displays the detials in the main area instead.
|
||||
// the getter and displays the datails in the main area instead.
|
||||
[text] = DownloadUtils.getDownloadStatusNoRate(
|
||||
this.download.currentBytes,
|
||||
total,
|
||||
totalBytes,
|
||||
this.download.speed,
|
||||
this.lastEstimatedSecondsLeft);
|
||||
let newEstimatedSecondsLeft;
|
||||
[tip, newEstimatedSecondsLeft] = DownloadUtils.getDownloadStatus(
|
||||
this.download.currentBytes,
|
||||
total,
|
||||
totalBytes,
|
||||
this.download.speed,
|
||||
this.lastEstimatedSecondsLeft);
|
||||
this.lastEstimatedSecondsLeft = newEstimatedSecondsLeft;
|
||||
} else if (this.download.canceled && this.download.hasPartialData) {
|
||||
let total = this.download.hasProgress ? this.download.totalBytes : -1;
|
||||
let totalBytes = this.download.hasProgress ? this.download.totalBytes
|
||||
: -1;
|
||||
let transfer = DownloadUtils.getTransferTotal(this.download.currentBytes,
|
||||
total);
|
||||
totalBytes);
|
||||
|
||||
// We use the same XUL label to display both the state and the amount
|
||||
// transferred, for example "Paused - 1.1 MB".
|
||||
|
@ -206,8 +199,8 @@ DownloadElementShell.prototype = {
|
|||
if (this.download.succeeded) {
|
||||
// For completed downloads, show the file size (e.g. "1.5 MB").
|
||||
if (this.download.target.size !== undefined) {
|
||||
let [size, unit] = DownloadUtils.convertByteUnits(
|
||||
this.download.target.size);
|
||||
let [size, unit] =
|
||||
DownloadUtils.convertByteUnits(this.download.target.size);
|
||||
stateLabel = s.sizeWithUnits(size, unit);
|
||||
} else {
|
||||
// History downloads may not have a size defined.
|
|
@ -2,8 +2,30 @@
|
|||
* 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/. */
|
||||
|
||||
let { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadUtils",
|
||||
"resource://gre/modules/DownloadUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadsCommon",
|
||||
"resource:///modules/DownloadsCommon.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadsViewUI",
|
||||
"resource:///modules/DownloadsViewUI.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "FileUtils",
|
||||
"resource://gre/modules/FileUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "NetUtil",
|
||||
"resource://gre/modules/NetUtil.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
||||
"resource://gre/modules/osfile.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "PlacesUtils",
|
||||
"resource://gre/modules/PlacesUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Promise",
|
||||
"resource://gre/modules/Promise.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "RecentWindow",
|
||||
"resource:///modules/RecentWindow.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Services",
|
||||
"resource://gre/modules/Services.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Task",
|
||||
"resource://gre/modules/Task.jsm");
|
||||
|
||||
const nsIDM = Ci.nsIDownloadManager;
|
||||
|
||||
|
@ -20,11 +42,8 @@ const DOWNLOAD_VIEW_SUPPORTED_COMMANDS =
|
|||
* Represents a download from the browser history. It implements part of the
|
||||
* interface of the Download object.
|
||||
*
|
||||
* @param url
|
||||
* URI string for the download source.
|
||||
* @param endTime
|
||||
* Timestamp with the end time for the download, used if there is no
|
||||
* additional metadata available.
|
||||
* @param aPlacesNode
|
||||
* The Places node from which the history download should be initialized.
|
||||
*/
|
||||
function HistoryDownload(aPlacesNode) {
|
||||
// TODO (bug 829201): history downloads should get the referrer from Places.
|
||||
|
@ -115,11 +134,14 @@ HistoryDownload.prototype = {
|
|||
/**
|
||||
* This method mimicks the "start" method of session downloads, and is called
|
||||
* when the user retries a history download.
|
||||
*
|
||||
* At present, we always ask the user for a new target path when retrying a
|
||||
* history download. In the future we may consider reusing the known target
|
||||
* path if the folder still exists and the file name is not already used,
|
||||
* except when the user preferences indicate that the target path should be
|
||||
* requested every time a new download is started.
|
||||
*/
|
||||
start() {
|
||||
// In future we may try to download into the same original target uri, when
|
||||
// we have it. Though that requires verifying the path is still valid and
|
||||
// may surprise the user if he wants to be requested every time.
|
||||
let browserWin = RecentWindow.getMostRecentBrowserWindow();
|
||||
let initiatingDoc = browserWin ? browserWin.document : document;
|
||||
|
||||
|
@ -150,7 +172,7 @@ HistoryDownload.prototype = {
|
|||
* displayed data for a single download view element.
|
||||
*
|
||||
* The shell may contain a session download, a history download, or both. When
|
||||
* both a history and a current download are present, the current download gets
|
||||
* both a history and a session download are present, the session download gets
|
||||
* priority and its information is displayed.
|
||||
*
|
||||
* On construction, a new richlistitem is created, and can be accessed through
|
||||
|
@ -181,7 +203,7 @@ function HistoryDownloadElementShell(aSessionDownload, aHistoryDownload) {
|
|||
}
|
||||
|
||||
HistoryDownloadElementShell.prototype = {
|
||||
__proto__: DownloadElementShell.prototype,
|
||||
__proto__: DownloadsViewUI.DownloadElementShell.prototype,
|
||||
|
||||
/**
|
||||
* Manages the "active" state of the shell. By default all the shells without
|
||||
|
@ -340,10 +362,7 @@ HistoryDownloadElementShell.prototype = {
|
|||
}
|
||||
case "cmd_delete": {
|
||||
if (this._sessionDownload) {
|
||||
Downloads.getList(Downloads.ALL)
|
||||
.then(list => list.remove(this.download))
|
||||
.then(() => this.download.finalize(true))
|
||||
.catch(Cu.reportError);
|
||||
DownloadsCommon.removeAndFinalizeDownload(this.download);
|
||||
}
|
||||
if (this._historyDownload) {
|
||||
let uri = NetUtil.newURI(this.download.source.url);
|
||||
|
@ -404,8 +423,8 @@ HistoryDownloadElementShell.prototype = {
|
|||
}
|
||||
return "";
|
||||
}
|
||||
let command = getDefaultCommandForState(
|
||||
DownloadsCommon.stateOfDownload(this.download));
|
||||
let state = DownloadsCommon.stateOfDownload(this.download);
|
||||
let command = getDefaultCommandForState(state);
|
||||
if (command && this.isCommandEnabled(command)) {
|
||||
this.doCommand(command);
|
||||
}
|
||||
|
@ -456,7 +475,7 @@ HistoryDownloadElementShell.prototype = {
|
|||
|
||||
/**
|
||||
* A Downloads Places View is a places view designed to show a places query
|
||||
* for history downloads alongside the current "session"-downloads.
|
||||
* for history downloads alongside the session downloads.
|
||||
*
|
||||
* As we don't use the places controller, some methods implemented by other
|
||||
* places views are not implemented by this view.
|
||||
|
|
|
@ -34,8 +34,6 @@
|
|||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<script type="application/javascript"
|
||||
src="chrome://browser/content/downloads/downloadsViewCommon.js"/>
|
||||
<script type="application/javascript"
|
||||
src="chrome://browser/content/downloads/allDownloadsViewOverlay.js"/>
|
||||
<script type="application/javascript"
|
||||
|
|
|
@ -64,6 +64,21 @@
|
|||
|
||||
"use strict";
|
||||
|
||||
let { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadsCommon",
|
||||
"resource:///modules/DownloadsCommon.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "DownloadsViewUI",
|
||||
"resource:///modules/DownloadsViewUI.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "FileUtils",
|
||||
"resource://gre/modules/FileUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "NetUtil",
|
||||
"resource://gre/modules/NetUtil.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "PlacesUtils",
|
||||
"resource://gre/modules/PlacesUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "Services",
|
||||
"resource://gre/modules/Services.jsm");
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//// DownloadsPanel
|
||||
|
||||
|
@ -994,7 +1009,7 @@ function DownloadsViewItem(download, aElement) {
|
|||
}
|
||||
|
||||
DownloadsViewItem.prototype = {
|
||||
__proto__: DownloadElementShell.prototype,
|
||||
__proto__: DownloadsViewUI.DownloadElementShell.prototype,
|
||||
|
||||
/**
|
||||
* The XUL element corresponding to the associated richlistbox item.
|
||||
|
@ -1169,10 +1184,7 @@ DownloadsViewItemController.prototype = {
|
|||
*/
|
||||
commands: {
|
||||
cmd_delete() {
|
||||
Downloads.getList(Downloads.ALL)
|
||||
.then(list => list.remove(this.download))
|
||||
.then(() => this.download.finalize(true))
|
||||
.catch(Cu.reportError);
|
||||
DownloadsCommon.removeAndFinalizeDownload(this.download);
|
||||
PlacesUtils.bhistory.removePage(
|
||||
NetUtil.newURI(this.download.source.url));
|
||||
},
|
||||
|
|
|
@ -7,7 +7,6 @@ browser.jar:
|
|||
content/browser/downloads/download.css (content/download.css)
|
||||
content/browser/downloads/downloads.css (content/downloads.css)
|
||||
* content/browser/downloads/downloads.js (content/downloads.js)
|
||||
content/browser/downloads/downloadsViewCommon.js (content/downloadsViewCommon.js)
|
||||
* content/browser/downloads/downloadsOverlay.xul (content/downloadsOverlay.xul)
|
||||
content/browser/downloads/indicator.js (content/indicator.js)
|
||||
content/browser/downloads/indicatorOverlay.xul (content/indicatorOverlay.xul)
|
||||
|
|
|
@ -13,4 +13,5 @@ EXTRA_JS_MODULES += [
|
|||
'DownloadsCommon.jsm',
|
||||
'DownloadsLogger.jsm',
|
||||
'DownloadsTaskbar.jsm',
|
||||
'DownloadsViewUI.jsm',
|
||||
]
|
||||
|
|
Загрузка…
Ссылка в новой задаче