summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/compose/content/dialogs/EdColorPicker.js
blob: ef03a1d10bbe660a2ff392cc45b4e77a079fd316 (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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/* 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-globals-from ../editorUtilities.js */
/* import-globals-from EdDialogCommon.js */

// Cancel() is in EdDialogCommon.js

var insertNew = true;
var tagname = "TAG NAME";
var gColor = "";
var LastPickedColor = "";
var ColorType = "Text";
var TextType = false;
var HighlightType = false;
var TableOrCell = false;
var LastPickedIsDefault = true;
var NoDefault = false;
var gColorObj;

// dialog initialization code

document.addEventListener("dialogaccept", onAccept);
document.addEventListener("dialogcancel", onCancelColor);

function Startup() {
  if (!window.arguments[1]) {
    dump("EdColorPicker: Missing color object param\n");
    return;
  }

  // window.arguments[1] is object to get initial values and return color data
  gColorObj = window.arguments[1];
  gColorObj.Cancel = false;

  gDialog.ColorPicker = document.getElementById("ColorPicker");
  gDialog.ColorInput = document.getElementById("ColorInput");
  gDialog.LastPickedButton = document.getElementById("LastPickedButton");
  gDialog.LastPickedColor = document.getElementById("LastPickedColor");
  gDialog.CellOrTableGroup = document.getElementById("CellOrTableGroup");
  gDialog.TableRadio = document.getElementById("TableRadio");
  gDialog.CellRadio = document.getElementById("CellRadio");
  gDialog.ColorSwatch = document.getElementById("ColorPickerSwatch");
  gDialog.Ok = document.querySelector("dialog").getButton("accept");

  // The type of color we are setting:
  //  text: Text, Link, ActiveLink, VisitedLink,
  //  or background: Page, Table, or Cell
  if (gColorObj.Type) {
    ColorType = gColorObj.Type;
    // Get string for dialog title from passed-in type
    //   (note constraint on editor.properties string name)
    let IsCSSPrefChecked = Services.prefs.getBoolPref("editor.use_css");

    if (GetCurrentEditor()) {
      if (ColorType == "Page" && IsCSSPrefChecked && IsHTMLEditor()) {
        document.title = GetString("BlockColor");
      } else {
        document.title = GetString(ColorType + "Color");
      }
    }
  }

  gDialog.ColorInput.value = "";
  var tmpColor;
  var haveTableRadio = false;

  switch (ColorType) {
    case "Page":
      tmpColor = gColorObj.PageColor;
      if (tmpColor && tmpColor.toLowerCase() != "window") {
        gColor = tmpColor;
      }
      break;
    case "Table":
      if (gColorObj.TableColor) {
        gColor = gColorObj.TableColor;
      }
      break;
    case "Cell":
      if (gColorObj.CellColor) {
        gColor = gColorObj.CellColor;
      }
      break;
    case "TableOrCell":
      TableOrCell = true;
      document.getElementById("TableOrCellGroup").collapsed = false;
      haveTableRadio = true;
      if (gColorObj.SelectedType == "Cell") {
        gColor = gColorObj.CellColor;
        gDialog.CellOrTableGroup.selectedItem = gDialog.CellRadio;
        gDialog.CellRadio.focus();
      } else {
        gColor = gColorObj.TableColor;
        gDialog.CellOrTableGroup.selectedItem = gDialog.TableRadio;
        gDialog.TableRadio.focus();
      }
      break;
    case "Highlight":
      HighlightType = true;
      if (gColorObj.HighlightColor) {
        gColor = gColorObj.HighlightColor;
      }
      break;
    default:
      // Any other type will change some kind of text,
      TextType = true;
      tmpColor = gColorObj.TextColor;
      if (tmpColor && tmpColor.toLowerCase() != "windowtext") {
        gColor = gColorObj.TextColor;
      }
      break;
  }

  // Set initial color in input field and in the colorpicker
  SetCurrentColor(gColor);
  gDialog.ColorPicker.value = gColor;

  // Use last-picked colors passed in, or those persistent on dialog
  if (TextType) {
    if (!("LastTextColor" in gColorObj) || !gColorObj.LastTextColor) {
      gColorObj.LastTextColor =
        gDialog.LastPickedColor.getAttribute("LastTextColor");
    }
    LastPickedColor = gColorObj.LastTextColor;
  } else if (HighlightType) {
    if (!("LastHighlightColor" in gColorObj) || !gColorObj.LastHighlightColor) {
      gColorObj.LastHighlightColor =
        gDialog.LastPickedColor.getAttribute("LastHighlightColor");
    }
    LastPickedColor = gColorObj.LastHighlightColor;
  } else {
    if (
      !("LastBackgroundColor" in gColorObj) ||
      !gColorObj.LastBackgroundColor
    ) {
      gColorObj.LastBackgroundColor = gDialog.LastPickedColor.getAttribute(
        "LastBackgroundColor"
      );
    }
    LastPickedColor = gColorObj.LastBackgroundColor;
  }

  // Set method to detect clicking on OK button
  //  so we don't get fooled by changing "default" behavior
  gDialog.Ok.setAttribute("onclick", "SetDefaultToOk()");

  if (!LastPickedColor) {
    // Hide the button, as there is no last color available.
    gDialog.LastPickedButton.hidden = true;
  } else {
    gDialog.LastPickedColor.setAttribute(
      "style",
      "background-color: " + LastPickedColor
    );

    // Make "Last-picked" the default button, until the user selects a color.
    gDialog.Ok.removeAttribute("default");
    gDialog.LastPickedButton.setAttribute("default", "true");
  }

  // Caller can prevent user from submitting an empty, i.e., default color
  NoDefault = gColorObj.NoDefault;
  if (NoDefault) {
    // Hide the "Default button -- user must pick a color
    document.getElementById("DefaultColorButton").collapsed = true;
  }

  // Set focus to colorpicker if not set to table radio buttons above
  if (!haveTableRadio) {
    gDialog.ColorPicker.focus();
  }

  SetWindowLocation();
}

function SelectColor() {
  var color = gDialog.ColorPicker.value;
  if (color) {
    SetCurrentColor(color);
  }
}

function RemoveColor() {
  SetCurrentColor("");
  gDialog.ColorInput.focus();
  SetDefaultToOk();
}

function SelectColorByKeypress(aEvent) {
  if (aEvent.charCode == aEvent.DOM_VK_SPACE) {
    SelectColor();
    SetDefaultToOk();
  }
}

function SelectLastPickedColor() {
  SetCurrentColor(LastPickedColor);
  if (onAccept()) {
    // window.close();
    return true;
  }

  return false;
}

function SetCurrentColor(color) {
  // TODO: Validate color?
  if (!color) {
    color = "";
  }
  gColor = TrimString(color).toLowerCase();
  if (gColor == "mixed") {
    gColor = "";
  }
  gDialog.ColorInput.value = gColor;
  SetColorSwatch();
}

function SetColorSwatch() {
  gDialog.ColorSwatch.setAttribute(
    "style",
    `background-color: ${TrimString(gDialog.ColorInput.value) || "inherit"}`
  );
}

function SetDefaultToOk() {
  gDialog.LastPickedButton.removeAttribute("default");
  gDialog.Ok.setAttribute("default", "true");
  LastPickedIsDefault = false;
}

function ValidateData() {
  if (LastPickedIsDefault) {
    gColor = LastPickedColor;
  } else {
    gColor = gDialog.ColorInput.value;
  }

  gColor = TrimString(gColor).toLowerCase();

  // TODO: Validate the color string!

  if (NoDefault && !gColor) {
    ShowInputErrorMessage(GetString("NoColorError"));
    SetTextboxFocus(gDialog.ColorInput);
    return false;
  }
  return true;
}

function onAccept(event) {
  if (!ValidateData()) {
    event.preventDefault();
    return;
  }

  // Set return values and save in persistent color attributes
  if (TextType) {
    gColorObj.TextColor = gColor;
    if (gColor.length > 0) {
      gDialog.LastPickedColor.setAttribute("LastTextColor", gColor);
      gColorObj.LastTextColor = gColor;
    }
  } else if (HighlightType) {
    gColorObj.HighlightColor = gColor;
    if (gColor.length > 0) {
      gDialog.LastPickedColor.setAttribute("LastHighlightColor", gColor);
      gColorObj.LastHighlightColor = gColor;
    }
  } else {
    gColorObj.BackgroundColor = gColor;
    if (gColor.length > 0) {
      gDialog.LastPickedColor.setAttribute("LastBackgroundColor", gColor);
      gColorObj.LastBackgroundColor = gColor;
    }
    // If table or cell requested, tell caller which element to set on
    if (TableOrCell && gDialog.TableRadio.selected) {
      gColorObj.Type = "Table";
    }
  }
  SaveWindowLocation();
}

function onCancelColor() {
  // Tells caller that user canceled
  gColorObj.Cancel = true;
  SaveWindowLocation();
}