summaryrefslogtreecommitdiffstats
path: root/comm/mail/base/content/compactFoldersDialog.js
blob: b0ac027266044acfea42cfa73acd4f991628f0ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* 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/. */

var propBag, args;

document.addEventListener("DOMContentLoaded", compactDialogOnDOMContentLoaded);
// Bug 1720540: Call sizeToContent only after the entire window has been loaded,
// including the shadow DOM and the updated fluent strings.
window.addEventListener("load", window.sizeToContent);

function compactDialogOnDOMContentLoaded() {
  propBag = window.arguments[0]
    .QueryInterface(Ci.nsIWritablePropertyBag2)
    .QueryInterface(Ci.nsIWritablePropertyBag);

  // Convert to a JS object.
  args = {};
  for (let prop of propBag.enumerator) {
    args[prop.name] = prop.value;
  }

  // We're deliberately adding the data-l10n-args attribute synchronously to
  // avoid race issues for window.sizeToContent later on.
  document
    .getElementById("compactFoldersText")
    .setAttribute("data-l10n-args", JSON.stringify({ data: args.compactSize }));

  document.addEventListener("dialogaccept", function () {
    args.buttonNumClicked = 0;
    args.checked = document.getElementById("neverAskCheckbox").checked;
  });

  document.addEventListener("dialogcancel", function () {
    args.buttonNumClicked = 1;
  });

  document.addEventListener("dialogextra1", function () {
    // Open the support article URL and leave the dialog open.
    let uri = Services.io.newURI(
      "https://support.mozilla.org/kb/compacting-folders"
    );
    Cc["@mozilla.org/uriloader/external-protocol-service;1"]
      .getService(Ci.nsIExternalProtocolService)
      .loadURI(uri);
  });
}

function compactDialogOnUnload() {
  // Convert args back into property bag.
  for (let propName in args) {
    propBag.setProperty(propName, args[propName]);
  }
}