summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/compose/content/dialogs/EdConvertToTable.js
blob: e7f19cff677a9ff81801477b43413e13a5e3748e (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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/* 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 */

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

var gIndex;
var gCommaIndex = "0";
var gSpaceIndex = "1";
var gOtherIndex = "2";

// dialog initialization code
function Startup() {
  if (!GetCurrentEditor()) {
    window.close();
    return;
  }

  gDialog.sepRadioGroup = document.getElementById("SepRadioGroup");
  gDialog.sepCharacterInput = document.getElementById("SepCharacterInput");
  gDialog.deleteSepCharacter = document.getElementById("DeleteSepCharacter");
  gDialog.collapseSpaces = document.getElementById("CollapseSpaces");

  // We persist the user's separator character
  gDialog.sepCharacterInput.value =
    gDialog.sepRadioGroup.getAttribute("character");

  gIndex = gDialog.sepRadioGroup.getAttribute("index");

  switch (gIndex) {
    case gCommaIndex:
    default:
      gDialog.sepRadioGroup.selectedItem = document.getElementById("comma");
      break;
    case gSpaceIndex:
      gDialog.sepRadioGroup.selectedItem = document.getElementById("space");
      break;
    case gOtherIndex:
      gDialog.sepRadioGroup.selectedItem = document.getElementById("other");
      break;
  }

  // Set initial enable state on character input and "collapse" checkbox
  SelectCharacter(gIndex);

  SetWindowLocation();
}

function InputSepCharacter() {
  var str = gDialog.sepCharacterInput.value;

  // Limit input to 1 character
  if (str.length > 1) {
    str = str.slice(0, 1);
  }

  // We can never allow tag or entity delimiters for separator character
  if (str == "<" || str == ">" || str == "&" || str == ";" || str == " ") {
    str = "";
  }

  gDialog.sepCharacterInput.value = str;
}

function SelectCharacter(radioGroupIndex) {
  gIndex = radioGroupIndex;
  SetElementEnabledById("SepCharacterInput", gIndex == gOtherIndex);
  SetElementEnabledById("CollapseSpaces", gIndex == gSpaceIndex);
}

/* eslint-disable complexity */
function onAccept() {
  var sepCharacter = "";
  switch (gIndex) {
    case gCommaIndex:
      sepCharacter = ",";
      break;
    case gSpaceIndex:
      sepCharacter = " ";
      break;
    case gOtherIndex:
      sepCharacter = gDialog.sepCharacterInput.value.slice(0, 1);
      break;
  }

  var editor = GetCurrentEditor();
  var str;
  try {
    str = editor.outputToString(
      "text/html",
      kOutputLFLineBreak | kOutputSelectionOnly
    );
  } catch (e) {}
  if (!str) {
    SaveWindowLocation();
    return;
  }

  // Replace nbsp with spaces:
  str = str.replace(/\u00a0/g, " ");

  // Strip out </p> completely
  str = str.replace(/\s*<\/p>\s*/g, "");

  // Trim whitespace adjacent to <p> and <br> tags
  //  and replace <p> with <br>
  //  (which will be replaced with </tr> below)
  str = str.replace(/\s*<p>\s*|\s*<br>\s*/g, "<br>");

  // Trim leading <br>s
  str = str.replace(/^(<br>)+/, "");

  // Trim trailing <br>s
  str = str.replace(/(<br>)+$/, "");

  // Reduce multiple internal <br> to just 1
  // TODO: Maybe add a checkbox to let user decide
  // str = str.replace(/(<br>)+/g, "<br>");

  // Trim leading and trailing spaces
  str = str.trim();

  // Remove all tag contents so we don't replace
  //   separator character within tags
  // Also converts lists to something useful
  var stack = [];
  var start;
  var end;
  var searchStart = 0;
  var listSeparator = "";
  var listItemSeparator = "";
  var endList = false;

  do {
    start = str.indexOf("<", searchStart);

    if (start >= 0) {
      end = str.indexOf(">", start + 1);
      if (end > start) {
        let tagContent = str.slice(start + 1, end).trim();

        if (/^ol|^ul|^dl/.test(tagContent)) {
          //  Replace list tag with <BR> to start new row
          //   at beginning of second or greater list tag
          str = str.slice(0, start) + listSeparator + str.slice(end + 1);
          if (listSeparator == "") {
            listSeparator = "<br>";
          }

          // Reset for list item separation into cells
          listItemSeparator = "";
        } else if (/^li|^dt|^dd/.test(tagContent)) {
          // Start a new row if this is first item after the ending the last list
          if (endList) {
            listItemSeparator = "<br>";
          }

          // Start new cell at beginning of second or greater list items
          str = str.slice(0, start) + listItemSeparator + str.slice(end + 1);

          if (endList || listItemSeparator == "") {
            listItemSeparator = sepCharacter;
          }

          endList = false;
        } else {
          // Find end tags
          endList = /^\/ol|^\/ul|^\/dl/.test(tagContent);
          if (endList || /^\/li|^\/dt|^\/dd/.test(tagContent)) {
            // Strip out tag
            str = str.slice(0, start) + str.slice(end + 1);
          } else {
            // Not a list-related tag: Store tag contents in an array
            stack.push(tagContent);

            // Keep the "<" and ">" while removing from source string
            start++;
            str = str.slice(0, start) + str.slice(end);
          }
        }
      }
      searchStart = start + 1;
    }
  } while (start >= 0);

  // Replace separator characters with table cells
  var replaceString;
  if (gDialog.deleteSepCharacter.checked) {
    replaceString = "";
  } else {
    // Don't delete separator character,
    //  so include it at start of string to replace
    replaceString = sepCharacter;
  }

  replaceString += "<td>";

  if (sepCharacter.length > 0) {
    var tempStr = sepCharacter;
    var regExpChars = ".!@#$%^&*-+[]{}()|\\/";
    if (regExpChars.includes(sepCharacter)) {
      tempStr = "\\" + sepCharacter;
    }

    if (gIndex == gSpaceIndex) {
      // If checkbox is checked,
      //   one or more adjacent spaces are one separator
      if (gDialog.collapseSpaces.checked) {
        tempStr = "\\s+";
      } else {
        tempStr = "\\s";
      }
    }
    var pattern = new RegExp(tempStr, "g");
    str = str.replace(pattern, replaceString);
  }

  // Put back tag contents that we removed above
  searchStart = 0;
  var stackIndex = 0;
  do {
    start = str.indexOf("<", searchStart);
    end = start + 1;
    if (start >= 0 && str.charAt(end) == ">") {
      // We really need a FIFO stack!
      str = str.slice(0, end) + stack[stackIndex++] + str.slice(end);
    }
    searchStart = end;
  } while (start >= 0);

  // End table row and start another for each br or p
  str = str.replace(/\s*<br>\s*/g, "</tr>\n<tr><td>");

  // Add the table tags and the opening and closing tr/td tags
  // Default table attributes should be same as those used in nsHTMLEditor::CreateElementWithDefaults()
  // (Default width="100%" is used in EdInsertTable.js)
  str =
    '<table border="1" width="100%" cellpadding="2" cellspacing="2">\n<tr><td>' +
    str +
    "</tr>\n</table>\n";

  editor.beginTransaction();

  // Delete the selection -- makes it easier to find where table will insert
  var nodeBeforeTable = null;
  var nodeAfterTable = null;
  try {
    editor.deleteSelection(editor.eNone, editor.eStrip);

    var anchorNodeBeforeInsert = editor.selection.anchorNode;
    var offset = editor.selection.anchorOffset;
    if (anchorNodeBeforeInsert.nodeType == Node.TEXT_NODE) {
      // Text was split. Table should be right after the first or before
      nodeBeforeTable = anchorNodeBeforeInsert.previousSibling;
      nodeAfterTable = anchorNodeBeforeInsert;
    } else {
      // Table should be inserted right after node pointed to by selection
      if (offset > 0) {
        nodeBeforeTable = anchorNodeBeforeInsert.childNodes.item(offset - 1);
      }

      nodeAfterTable = anchorNodeBeforeInsert.childNodes.item(offset);
    }

    editor.insertHTML(str);
  } catch (e) {}

  var table = null;
  if (nodeAfterTable) {
    var previous = nodeAfterTable.previousSibling;
    if (previous && previous.nodeName.toLowerCase() == "table") {
      table = previous;
    }
  }
  if (!table && nodeBeforeTable) {
    var next = nodeBeforeTable.nextSibling;
    if (next && next.nodeName.toLowerCase() == "table") {
      table = next;
    }
  }

  if (table) {
    // Fixup table only if pref is set
    var firstRow;
    try {
      if (Services.prefs.getBoolPref("editor.table.maintain_structure")) {
        editor.normalizeTable(table);
      }

      firstRow = editor.getFirstRow(table);
    } catch (e) {}

    // Put caret in first cell
    if (firstRow) {
      var node2 = firstRow.firstChild;
      do {
        if (
          node2.nodeName.toLowerCase() == "td" ||
          node2.nodeName.toLowerCase() == "th"
        ) {
          try {
            editor.selection.collapse(node2, 0);
          } catch (e) {}
          break;
        }
        node2 = node2.nextSibling;
      } while (node2);
    }
  }

  editor.endTransaction();

  // Save persisted attributes
  gDialog.sepRadioGroup.setAttribute("index", gIndex);
  if (gIndex == gOtherIndex) {
    gDialog.sepRadioGroup.setAttribute("character", sepCharacter);
  }

  SaveWindowLocation();
}
/* eslint-enable complexity */