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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
/* 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/. */
const { ContextualIdentityService } = ChromeUtils.importESModule(
"resource://gre/modules/ContextualIdentityService.sys.mjs"
);
/**
* We want to set the window title immediately to prevent flickers.
*/
function setTitle() {
let params = window.arguments[0] || {};
let winElem = document.documentElement;
if (params.userContextId) {
document.l10n.setAttributes(winElem, "containers-window-update-settings2", {
name: params.identity.name,
});
} else {
document.l10n.setAttributes(winElem, "containers-window-new2");
}
}
setTitle();
let gContainersManager = {
icons: [
"fingerprint",
"briefcase",
"dollar",
"cart",
"vacation",
"gift",
"food",
"fruit",
"pet",
"tree",
"chill",
"circle",
"fence",
],
colors: [
"blue",
"turquoise",
"green",
"yellow",
"orange",
"red",
"pink",
"purple",
"toolbar",
],
onLoad() {
let params = window.arguments[0] || {};
this.init(params);
},
init(aParams) {
this._dialog = document.querySelector("dialog");
this.userContextId = aParams.userContextId || null;
this.identity = aParams.identity;
const iconWrapper = document.getElementById("iconWrapper");
iconWrapper.appendChild(this.createIconButtons());
const colorWrapper = document.getElementById("colorWrapper");
colorWrapper.appendChild(this.createColorSwatches());
const name = document.getElementById("name");
name.addEventListener("input", () => this.checkForm());
if (this.identity.name) {
name.value = this.identity.name;
this.checkForm();
}
document
.getElementById("key_close")
.addEventListener("command", () => window.close());
document.addEventListener("dialogaccept", () => this.onApplyChanges());
// This is to prevent layout jank caused by the svgs and outlines rendering at different times
document.getElementById("containers-content").removeAttribute("hidden");
},
// Check if name is provided to determine if the form can be submitted
checkForm() {
const name = document.getElementById("name");
this._dialog.setAttribute("buttondisabledaccept", !name.value.trim());
},
createIconButtons() {
let radiogroup = document.createXULElement("radiogroup");
radiogroup.setAttribute("id", "icon");
radiogroup.className = "icon-buttons radio-buttons";
for (let icon of this.icons) {
let iconSwatch = document.createXULElement("radio");
iconSwatch.id = "iconbutton-" + icon;
iconSwatch.name = "icon";
iconSwatch.type = "radio";
iconSwatch.value = icon;
if (this.identity.icon && this.identity.icon == icon) {
iconSwatch.setAttribute("selected", true);
}
document.l10n.setAttributes(iconSwatch, `containers-icon-${icon}`);
let iconElement = document.createXULElement("hbox");
iconElement.className = "userContext-icon";
iconElement.classList.add("identity-icon-" + icon);
iconSwatch.appendChild(iconElement);
radiogroup.appendChild(iconSwatch);
}
return radiogroup;
},
createColorSwatches() {
let radiogroup = document.createXULElement("radiogroup");
radiogroup.setAttribute("id", "color");
radiogroup.className = "radio-buttons";
for (let color of this.colors) {
let colorSwatch = document.createXULElement("radio");
colorSwatch.id = "colorswatch-" + color;
colorSwatch.name = "color";
colorSwatch.type = "radio";
colorSwatch.value = color;
if (this.identity.color && this.identity.color == color) {
colorSwatch.setAttribute("selected", true);
}
document.l10n.setAttributes(colorSwatch, `containers-color-${color}`);
let iconElement = document.createXULElement("hbox");
iconElement.className = "userContext-icon";
iconElement.classList.add("identity-icon-circle");
iconElement.classList.add("identity-color-" + color);
colorSwatch.appendChild(iconElement);
radiogroup.appendChild(colorSwatch);
}
return radiogroup;
},
onApplyChanges() {
let icon = document.getElementById("icon").value;
let color = document.getElementById("color").value;
let name = document.getElementById("name").value;
if (!this.icons.includes(icon)) {
throw new Error("Internal error. The icon value doesn't match.");
}
if (!this.colors.includes(color)) {
throw new Error("Internal error. The color value doesn't match.");
}
if (this.userContextId) {
ContextualIdentityService.update(this.userContextId, name, icon, color);
} else {
ContextualIdentityService.create(name, icon, color);
}
window.parent.location.reload();
},
};
window.addEventListener("load", () => gContainersManager.onLoad());
|